-- MySQL dump 10.16  Distrib 10.2.25-MariaDB, for Linux (x86_64)
--
-- Host: localhost    Database: goatdo6_wp509
-- ------------------------------------------------------
-- Server version	10.2.12-MariaDB-log

/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES 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 `wp6h_commentmeta`
--

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

--
-- Dumping data for table `wp6h_commentmeta`
--

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

--
-- Table structure for table `wp6h_comments`
--

DROP TABLE IF EXISTS `wp6h_comments`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp6h_comments` (
  `comment_ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `comment_post_ID` bigint(20) unsigned NOT NULL DEFAULT 0,
  `comment_author` tinytext COLLATE utf8mb4_unicode_ci NOT NULL,
  `comment_author_email` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `comment_author_url` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `comment_author_IP` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `comment_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `comment_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `comment_content` text COLLATE utf8mb4_unicode_ci NOT NULL,
  `comment_karma` int(11) NOT NULL DEFAULT 0,
  `comment_approved` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '1',
  `comment_agent` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `comment_type` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `comment_parent` bigint(20) unsigned NOT NULL DEFAULT 0,
  `user_id` bigint(20) unsigned NOT NULL DEFAULT 0,
  PRIMARY KEY (`comment_ID`),
  KEY `comment_post_ID` (`comment_post_ID`),
  KEY `comment_approved_date_gmt` (`comment_approved`,`comment_date_gmt`),
  KEY `comment_date_gmt` (`comment_date_gmt`),
  KEY `comment_parent` (`comment_parent`),
  KEY `comment_author_email` (`comment_author_email`(10))
) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp6h_comments`
--

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

--
-- Table structure for table `wp6h_links`
--

DROP TABLE IF EXISTS `wp6h_links`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp6h_links` (
  `link_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `link_url` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `link_name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `link_image` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `link_target` varchar(25) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `link_description` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `link_visible` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'Y',
  `link_owner` bigint(20) unsigned NOT NULL DEFAULT 1,
  `link_rating` int(11) NOT NULL DEFAULT 0,
  `link_updated` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `link_rel` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `link_notes` mediumtext COLLATE utf8mb4_unicode_ci NOT NULL,
  `link_rss` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  PRIMARY KEY (`link_id`),
  KEY `link_visible` (`link_visible`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp6h_links`
--

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

--
-- Table structure for table `wp6h_options`
--

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

--
-- Dumping data for table `wp6h_options`
--

LOCK TABLES `wp6h_options` WRITE;
/*!40000 ALTER TABLE `wp6h_options` DISABLE KEYS */;
INSERT INTO `wp6h_options` VALUES (1,'siteurl','http://itcamefrombeyondpulp.com','yes'),(2,'home','http://itcamefrombeyondpulp.com','yes'),(3,'blogname','It Came from Beyond Pulp','yes'),(4,'blogdescription','Science Fiction at Large','yes'),(5,'users_can_register','0','yes'),(6,'admin_email','phillips.editorial@gmail.com','yes'),(7,'start_of_week','1','yes'),(8,'use_balanceTags','0','yes'),(9,'use_smilies','1','yes'),(10,'require_name_email','1','yes'),(11,'comments_notify','','yes'),(12,'posts_per_rss','10','yes'),(13,'rss_use_excerpt','0','yes'),(14,'mailserver_url','mail.example.com','yes'),(15,'mailserver_login','login@example.com','yes'),(16,'mailserver_pass','password','yes'),(17,'mailserver_port','110','yes'),(18,'default_category','1','yes'),(19,'default_comment_status','closed','yes'),(20,'default_ping_status','closed','yes'),(21,'default_pingback_flag','','yes'),(22,'posts_per_page','10','yes'),(23,'date_format','F j, Y','yes'),(24,'time_format','g:i a','yes'),(25,'links_updated_date_format','F j, Y g:i a','yes'),(26,'comment_moderation','1','yes'),(27,'moderation_notify','','yes'),(28,'permalink_structure','/%category%/%postname%/','yes'),(29,'rewrite_rules','a:191:{s:10:\"project/?$\";s:27:\"index.php?post_type=project\";s:40:\"project/feed/(feed|rdf|rss|rss2|atom)/?$\";s:44:\"index.php?post_type=project&feed=$matches[1]\";s:35:\"project/(feed|rdf|rss|rss2|atom)/?$\";s:44:\"index.php?post_type=project&feed=$matches[1]\";s:27:\"project/page/([0-9]{1,})/?$\";s:45:\"index.php?post_type=project&paged=$matches[1]\";s:11:\"^wp-json/?$\";s:22:\"index.php?rest_route=/\";s:14:\"^wp-json/(.*)?\";s:33:\"index.php?rest_route=/$matches[1]\";s:21:\"^index.php/wp-json/?$\";s:22:\"index.php?rest_route=/\";s:24:\"^index.php/wp-json/(.*)?\";s:33:\"index.php?rest_route=/$matches[1]\";s:47:\"category/(.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:42:\"category/(.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:23:\"category/(.+?)/embed/?$\";s:46:\"index.php?category_name=$matches[1]&embed=true\";s:35:\"category/(.+?)/page/?([0-9]{1,})/?$\";s:53:\"index.php?category_name=$matches[1]&paged=$matches[2]\";s:17:\"category/(.+?)/?$\";s:35:\"index.php?category_name=$matches[1]\";s:44:\"tag/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:39:\"tag/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:20:\"tag/([^/]+)/embed/?$\";s:36:\"index.php?tag=$matches[1]&embed=true\";s:32:\"tag/([^/]+)/page/?([0-9]{1,})/?$\";s:43:\"index.php?tag=$matches[1]&paged=$matches[2]\";s:14:\"tag/([^/]+)/?$\";s:25:\"index.php?tag=$matches[1]\";s:45:\"type/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";s:40:\"type/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";s:21:\"type/([^/]+)/embed/?$\";s:44:\"index.php?post_format=$matches[1]&embed=true\";s:33:\"type/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?post_format=$matches[1]&paged=$matches[2]\";s:15:\"type/([^/]+)/?$\";s:33:\"index.php?post_format=$matches[1]\";s:56:\"layout_category/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:54:\"index.php?layout_category=$matches[1]&feed=$matches[2]\";s:51:\"layout_category/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:54:\"index.php?layout_category=$matches[1]&feed=$matches[2]\";s:32:\"layout_category/([^/]+)/embed/?$\";s:48:\"index.php?layout_category=$matches[1]&embed=true\";s:44:\"layout_category/([^/]+)/page/?([0-9]{1,})/?$\";s:55:\"index.php?layout_category=$matches[1]&paged=$matches[2]\";s:26:\"layout_category/([^/]+)/?$\";s:37:\"index.php?layout_category=$matches[1]\";s:52:\"layout_pack/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?layout_pack=$matches[1]&feed=$matches[2]\";s:47:\"layout_pack/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?layout_pack=$matches[1]&feed=$matches[2]\";s:28:\"layout_pack/([^/]+)/embed/?$\";s:44:\"index.php?layout_pack=$matches[1]&embed=true\";s:40:\"layout_pack/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?layout_pack=$matches[1]&paged=$matches[2]\";s:22:\"layout_pack/([^/]+)/?$\";s:33:\"index.php?layout_pack=$matches[1]\";s:52:\"layout_type/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?layout_type=$matches[1]&feed=$matches[2]\";s:47:\"layout_type/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?layout_type=$matches[1]&feed=$matches[2]\";s:28:\"layout_type/([^/]+)/embed/?$\";s:44:\"index.php?layout_type=$matches[1]&embed=true\";s:40:\"layout_type/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?layout_type=$matches[1]&paged=$matches[2]\";s:22:\"layout_type/([^/]+)/?$\";s:33:\"index.php?layout_type=$matches[1]\";s:46:\"scope/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:44:\"index.php?scope=$matches[1]&feed=$matches[2]\";s:41:\"scope/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:44:\"index.php?scope=$matches[1]&feed=$matches[2]\";s:22:\"scope/([^/]+)/embed/?$\";s:38:\"index.php?scope=$matches[1]&embed=true\";s:34:\"scope/([^/]+)/page/?([0-9]{1,})/?$\";s:45:\"index.php?scope=$matches[1]&paged=$matches[2]\";s:16:\"scope/([^/]+)/?$\";s:27:\"index.php?scope=$matches[1]\";s:53:\"module_width/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:51:\"index.php?module_width=$matches[1]&feed=$matches[2]\";s:48:\"module_width/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:51:\"index.php?module_width=$matches[1]&feed=$matches[2]\";s:29:\"module_width/([^/]+)/embed/?$\";s:45:\"index.php?module_width=$matches[1]&embed=true\";s:41:\"module_width/([^/]+)/page/?([0-9]{1,})/?$\";s:52:\"index.php?module_width=$matches[1]&paged=$matches[2]\";s:23:\"module_width/([^/]+)/?$\";s:34:\"index.php?module_width=$matches[1]\";s:40:\"et_pb_layout/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:50:\"et_pb_layout/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:70:\"et_pb_layout/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:65:\"et_pb_layout/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:65:\"et_pb_layout/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:46:\"et_pb_layout/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:29:\"et_pb_layout/([^/]+)/embed/?$\";s:60:\"index.php?post_type=et_pb_layout&name=$matches[1]&embed=true\";s:33:\"et_pb_layout/([^/]+)/trackback/?$\";s:54:\"index.php?post_type=et_pb_layout&name=$matches[1]&tb=1\";s:41:\"et_pb_layout/([^/]+)/page/?([0-9]{1,})/?$\";s:67:\"index.php?post_type=et_pb_layout&name=$matches[1]&paged=$matches[2]\";s:48:\"et_pb_layout/([^/]+)/comment-page-([0-9]{1,})/?$\";s:67:\"index.php?post_type=et_pb_layout&name=$matches[1]&cpage=$matches[2]\";s:37:\"et_pb_layout/([^/]+)(?:/([0-9]+))?/?$\";s:66:\"index.php?post_type=et_pb_layout&name=$matches[1]&page=$matches[2]\";s:29:\"et_pb_layout/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:39:\"et_pb_layout/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:59:\"et_pb_layout/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:54:\"et_pb_layout/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:54:\"et_pb_layout/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:35:\"et_pb_layout/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:35:\"project/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:45:\"project/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:65:\"project/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:60:\"project/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:60:\"project/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:41:\"project/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:24:\"project/([^/]+)/embed/?$\";s:40:\"index.php?project=$matches[1]&embed=true\";s:28:\"project/([^/]+)/trackback/?$\";s:34:\"index.php?project=$matches[1]&tb=1\";s:48:\"project/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:46:\"index.php?project=$matches[1]&feed=$matches[2]\";s:43:\"project/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:46:\"index.php?project=$matches[1]&feed=$matches[2]\";s:36:\"project/([^/]+)/page/?([0-9]{1,})/?$\";s:47:\"index.php?project=$matches[1]&paged=$matches[2]\";s:43:\"project/([^/]+)/comment-page-([0-9]{1,})/?$\";s:47:\"index.php?project=$matches[1]&cpage=$matches[2]\";s:32:\"project/([^/]+)(?:/([0-9]+))?/?$\";s:46:\"index.php?project=$matches[1]&page=$matches[2]\";s:24:\"project/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:34:\"project/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:54:\"project/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:49:\"project/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:49:\"project/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:30:\"project/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:57:\"project_category/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:55:\"index.php?project_category=$matches[1]&feed=$matches[2]\";s:52:\"project_category/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:55:\"index.php?project_category=$matches[1]&feed=$matches[2]\";s:33:\"project_category/([^/]+)/embed/?$\";s:49:\"index.php?project_category=$matches[1]&embed=true\";s:45:\"project_category/([^/]+)/page/?([0-9]{1,})/?$\";s:56:\"index.php?project_category=$matches[1]&paged=$matches[2]\";s:27:\"project_category/([^/]+)/?$\";s:38:\"index.php?project_category=$matches[1]\";s:52:\"project_tag/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?project_tag=$matches[1]&feed=$matches[2]\";s:47:\"project_tag/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?project_tag=$matches[1]&feed=$matches[2]\";s:28:\"project_tag/([^/]+)/embed/?$\";s:44:\"index.php?project_tag=$matches[1]&embed=true\";s:40:\"project_tag/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?project_tag=$matches[1]&paged=$matches[2]\";s:22:\"project_tag/([^/]+)/?$\";s:33:\"index.php?project_tag=$matches[1]\";s:57:\"wpforms_log_type/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:55:\"index.php?wpforms_log_type=$matches[1]&feed=$matches[2]\";s:52:\"wpforms_log_type/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:55:\"index.php?wpforms_log_type=$matches[1]&feed=$matches[2]\";s:33:\"wpforms_log_type/([^/]+)/embed/?$\";s:49:\"index.php?wpforms_log_type=$matches[1]&embed=true\";s:45:\"wpforms_log_type/([^/]+)/page/?([0-9]{1,})/?$\";s:56:\"index.php?wpforms_log_type=$matches[1]&paged=$matches[2]\";s:27:\"wpforms_log_type/([^/]+)/?$\";s:38:\"index.php?wpforms_log_type=$matches[1]\";s:44:\"amn_wpforms-lite/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:54:\"amn_wpforms-lite/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:74:\"amn_wpforms-lite/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:69:\"amn_wpforms-lite/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:69:\"amn_wpforms-lite/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:50:\"amn_wpforms-lite/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:33:\"amn_wpforms-lite/([^/]+)/embed/?$\";s:49:\"index.php?amn_wpforms-lite=$matches[1]&embed=true\";s:37:\"amn_wpforms-lite/([^/]+)/trackback/?$\";s:43:\"index.php?amn_wpforms-lite=$matches[1]&tb=1\";s:45:\"amn_wpforms-lite/([^/]+)/page/?([0-9]{1,})/?$\";s:56:\"index.php?amn_wpforms-lite=$matches[1]&paged=$matches[2]\";s:52:\"amn_wpforms-lite/([^/]+)/comment-page-([0-9]{1,})/?$\";s:56:\"index.php?amn_wpforms-lite=$matches[1]&cpage=$matches[2]\";s:41:\"amn_wpforms-lite/([^/]+)(?:/([0-9]+))?/?$\";s:55:\"index.php?amn_wpforms-lite=$matches[1]&page=$matches[2]\";s:33:\"amn_wpforms-lite/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:43:\"amn_wpforms-lite/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:63:\"amn_wpforms-lite/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:58:\"amn_wpforms-lite/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:58:\"amn_wpforms-lite/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:39:\"amn_wpforms-lite/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:12:\"robots\\.txt$\";s:18:\"index.php?robots=1\";s:48:\".*wp-(atom|rdf|rss|rss2|feed|commentsrss2)\\.php$\";s:18:\"index.php?feed=old\";s:20:\".*wp-app\\.php(/.*)?$\";s:19:\"index.php?error=403\";s:18:\".*wp-register.php$\";s:23:\"index.php?register=true\";s:32:\"feed/(feed|rdf|rss|rss2|atom)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:27:\"(feed|rdf|rss|rss2|atom)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:8:\"embed/?$\";s:21:\"index.php?&embed=true\";s:20:\"page/?([0-9]{1,})/?$\";s:28:\"index.php?&paged=$matches[1]\";s:27:\"comment-page-([0-9]{1,})/?$\";s:39:\"index.php?&page_id=17&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:31:\".+?/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:41:\".+?/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:61:\".+?/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:56:\".+?/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:56:\".+?/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:37:\".+?/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:22:\"(.+?)/([^/]+)/embed/?$\";s:63:\"index.php?category_name=$matches[1]&name=$matches[2]&embed=true\";s:26:\"(.+?)/([^/]+)/trackback/?$\";s:57:\"index.php?category_name=$matches[1]&name=$matches[2]&tb=1\";s:46:\"(.+?)/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:69:\"index.php?category_name=$matches[1]&name=$matches[2]&feed=$matches[3]\";s:41:\"(.+?)/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:69:\"index.php?category_name=$matches[1]&name=$matches[2]&feed=$matches[3]\";s:34:\"(.+?)/([^/]+)/page/?([0-9]{1,})/?$\";s:70:\"index.php?category_name=$matches[1]&name=$matches[2]&paged=$matches[3]\";s:41:\"(.+?)/([^/]+)/comment-page-([0-9]{1,})/?$\";s:70:\"index.php?category_name=$matches[1]&name=$matches[2]&cpage=$matches[3]\";s:30:\"(.+?)/([^/]+)(?:/([0-9]+))?/?$\";s:69:\"index.php?category_name=$matches[1]&name=$matches[2]&page=$matches[3]\";s:20:\".+?/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:30:\".+?/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:50:\".+?/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:45:\".+?/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:45:\".+?/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:26:\".+?/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:38:\"(.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:33:\"(.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:14:\"(.+?)/embed/?$\";s:46:\"index.php?category_name=$matches[1]&embed=true\";s:26:\"(.+?)/page/?([0-9]{1,})/?$\";s:53:\"index.php?category_name=$matches[1]&paged=$matches[2]\";s:33:\"(.+?)/comment-page-([0-9]{1,})/?$\";s:53:\"index.php?category_name=$matches[1]&cpage=$matches[2]\";s:8:\"(.+?)/?$\";s:35:\"index.php?category_name=$matches[1]\";}','yes'),(30,'hack_file','0','yes'),(31,'blog_charset','UTF-8','yes'),(32,'moderation_keys','','no'),(33,'active_plugins','a:3:{i:0;s:51:\"boldgrid-backup-premium/boldgrid-backup-premium.php\";i:1;s:53:\"ebay-feeds-for-wordpress/ebay-feeds-for-wordpress.php\";i:2;s:24:\"wpforms-lite/wpforms.php\";}','yes'),(34,'category_base','','yes'),(35,'ping_sites','http://rpc.pingomatic.com/','yes'),(36,'comment_max_links','2','yes'),(37,'gmt_offset','0','yes'),(38,'default_email_category','1','yes'),(39,'recently_edited','a:3:{i:0;s:77:\"/home/goatdo6/itcamefrombeyondpulp.com/wp-content/plugins/akismet/akismet.php\";i:1;s:71:\"/home/goatdo6/itcamefrombeyondpulp.com/wp-content/themes/Divi/style.css\";i:2;s:0:\"\";}','no'),(40,'template','Divi','yes'),(41,'stylesheet','Divi','yes'),(42,'comment_whitelist','1','yes'),(43,'blacklist_keys','','no'),(44,'comment_registration','','yes'),(45,'html_type','text/html','yes'),(46,'use_trackback','0','yes'),(47,'default_role','subscriber','yes'),(48,'db_version','44719','yes'),(49,'uploads_use_yearmonth_folders','1','yes'),(50,'upload_path','','yes'),(51,'blog_public','1','yes'),(52,'default_link_category','2','yes'),(53,'show_on_front','page','yes'),(54,'tag_base','','yes'),(55,'show_avatars','1','yes'),(56,'avatar_rating','R','yes'),(57,'upload_url_path','','yes'),(58,'thumbnail_size_w','150','yes'),(59,'thumbnail_size_h','150','yes'),(60,'thumbnail_crop','1','yes'),(61,'medium_size_w','300','yes'),(62,'medium_size_h','300','yes'),(63,'avatar_default','mystery','yes'),(64,'large_size_w','1024','yes'),(65,'large_size_h','1024','yes'),(66,'image_default_link_type','none','yes'),(67,'image_default_size','','yes'),(68,'image_default_align','','yes'),(69,'close_comments_for_old_posts','','yes'),(70,'close_comments_days_old','14','yes'),(71,'thread_comments','1','yes'),(72,'thread_comments_depth','5','yes'),(73,'page_comments','','yes'),(74,'comments_per_page','50','yes'),(75,'default_comments_page','newest','yes'),(76,'comment_order','asc','yes'),(77,'sticky_posts','a:0:{}','yes'),(78,'widget_categories','a:2:{i:2;a:4:{s:5:\"title\";s:0:\"\";s:5:\"count\";i:0;s:12:\"hierarchical\";i:0;s:8:\"dropdown\";i:0;}s:12:\"_multiwidget\";i:1;}','yes'),(79,'widget_text','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(80,'widget_rss','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(81,'uninstall_plugins','a:0:{}','no'),(82,'timezone_string','','yes'),(83,'page_for_posts','0','yes'),(84,'page_on_front','17','yes'),(85,'default_post_format','0','yes'),(86,'link_manager_enabled','0','yes'),(87,'finished_splitting_shared_terms','1','yes'),(88,'site_icon','0','yes'),(89,'medium_large_size_w','768','yes'),(90,'medium_large_size_h','0','yes'),(91,'wp_page_for_privacy_policy','3','yes'),(92,'show_comments_cookies_opt_in','1','yes'),(93,'initial_db_version','44719','yes'),(94,'wp6h_user_roles','a:5:{s:13:\"administrator\";a:2:{s:4:\"name\";s:13:\"Administrator\";s:12:\"capabilities\";a:61:{s:13:\"switch_themes\";b:1;s:11:\"edit_themes\";b:1;s:16:\"activate_plugins\";b:1;s:12:\"edit_plugins\";b:1;s:10:\"edit_users\";b:1;s:10:\"edit_files\";b:1;s:14:\"manage_options\";b:1;s:17:\"moderate_comments\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:12:\"upload_files\";b:1;s:6:\"import\";b:1;s:15:\"unfiltered_html\";b:1;s:10:\"edit_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:10:\"edit_pages\";b:1;s:4:\"read\";b:1;s:8:\"level_10\";b:1;s:7:\"level_9\";b:1;s:7:\"level_8\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:17:\"edit_others_pages\";b:1;s:20:\"edit_published_pages\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_pages\";b:1;s:19:\"delete_others_pages\";b:1;s:22:\"delete_published_pages\";b:1;s:12:\"delete_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:22:\"delete_published_posts\";b:1;s:20:\"delete_private_posts\";b:1;s:18:\"edit_private_posts\";b:1;s:18:\"read_private_posts\";b:1;s:20:\"delete_private_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"read_private_pages\";b:1;s:12:\"delete_users\";b:1;s:12:\"create_users\";b:1;s:17:\"unfiltered_upload\";b:1;s:14:\"edit_dashboard\";b:1;s:14:\"update_plugins\";b:1;s:14:\"delete_plugins\";b:1;s:15:\"install_plugins\";b:1;s:13:\"update_themes\";b:1;s:14:\"install_themes\";b:1;s:11:\"update_core\";b:1;s:10:\"list_users\";b:1;s:12:\"remove_users\";b:1;s:13:\"promote_users\";b:1;s:18:\"edit_theme_options\";b:1;s:13:\"delete_themes\";b:1;s:6:\"export\";b:1;}}s:6:\"editor\";a:2:{s:4:\"name\";s:6:\"Editor\";s:12:\"capabilities\";a:34:{s:17:\"moderate_comments\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:12:\"upload_files\";b:1;s:15:\"unfiltered_html\";b:1;s:10:\"edit_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:10:\"edit_pages\";b:1;s:4:\"read\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:17:\"edit_others_pages\";b:1;s:20:\"edit_published_pages\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_pages\";b:1;s:19:\"delete_others_pages\";b:1;s:22:\"delete_published_pages\";b:1;s:12:\"delete_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:22:\"delete_published_posts\";b:1;s:20:\"delete_private_posts\";b:1;s:18:\"edit_private_posts\";b:1;s:18:\"read_private_posts\";b:1;s:20:\"delete_private_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"read_private_pages\";b:1;}}s:6:\"author\";a:2:{s:4:\"name\";s:6:\"Author\";s:12:\"capabilities\";a:10:{s:12:\"upload_files\";b:1;s:10:\"edit_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:4:\"read\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:12:\"delete_posts\";b:1;s:22:\"delete_published_posts\";b:1;}}s:11:\"contributor\";a:2:{s:4:\"name\";s:11:\"Contributor\";s:12:\"capabilities\";a:5:{s:10:\"edit_posts\";b:1;s:4:\"read\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:12:\"delete_posts\";b:1;}}s:10:\"subscriber\";a:2:{s:4:\"name\";s:10:\"Subscriber\";s:12:\"capabilities\";a:2:{s:4:\"read\";b:1;s:7:\"level_0\";b:1;}}}','yes'),(95,'fresh_site','0','yes'),(96,'widget_search','a:2:{i:2;a:1:{s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}','yes'),(97,'widget_recent-posts','a:2:{i:2;a:2:{s:5:\"title\";s:0:\"\";s:6:\"number\";i:5;}s:12:\"_multiwidget\";i:1;}','yes'),(98,'widget_recent-comments','a:2:{i:2;a:2:{s:5:\"title\";s:0:\"\";s:6:\"number\";i:5;}s:12:\"_multiwidget\";i:1;}','yes'),(99,'widget_archives','a:2:{i:2;a:3:{s:5:\"title\";s:0:\"\";s:5:\"count\";i:0;s:8:\"dropdown\";i:0;}s:12:\"_multiwidget\";i:1;}','yes'),(100,'widget_meta','a:2:{i:2;a:1:{s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}','yes'),(101,'sidebars_widgets','a:9:{s:19:\"wp_inactive_widgets\";a:0:{}s:9:\"sidebar-1\";a:0:{}s:9:\"sidebar-2\";a:0:{}s:9:\"sidebar-3\";a:0:{}s:9:\"sidebar-4\";a:0:{}s:9:\"sidebar-5\";a:0:{}s:9:\"sidebar-6\";a:0:{}s:9:\"sidebar-7\";a:0:{}s:13:\"array_version\";i:3;}','yes'),(102,'cron','a:7:{i:1566922327;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:1566943927;a:4:{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;}}s:16:\"wp_version_check\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}s:17:\"wp_update_plugins\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}s:16:\"wp_update_themes\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1566943983;a:2:{s:19:\"wp_scheduled_delete\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}s:25:\"delete_expired_transients\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1566943985;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:1566945001;a:1:{s:21:\"et_builder_fonts_cron\";a:1:{s:32:\"552cbb9d6515dadbbc4718ad75114f08\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:1:{s:8:\"interval\";s:5:\"daily\";}s:8:\"interval\";i:86400;}}}i:1568932143;a:1:{s:32:\"et_core_page_resource_auto_clear\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:7:\"monthly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:2592000;}}}s:7:\"version\";i:2;}','yes'),(103,'widget_pages','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(104,'widget_calendar','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(105,'widget_media_audio','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(106,'widget_media_image','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(107,'widget_media_gallery','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(108,'widget_media_video','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(109,'widget_tag_cloud','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(110,'widget_nav_menu','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(111,'widget_custom_html','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(113,'theme_mods_twentynineteen','a:2:{s:18:\"custom_css_post_id\";i:-1;s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1563748142;s:4:\"data\";a:2:{s:19:\"wp_inactive_widgets\";a:0:{}s:9:\"sidebar-1\";a:6:{i:0;s:8:\"search-2\";i:1;s:14:\"recent-posts-2\";i:2;s:17:\"recent-comments-2\";i:3;s:10:\"archives-2\";i:4;s:12:\"categories-2\";i:5;s:6:\"meta-2\";}}}}','yes'),(114,'smm_version','1.3.1','yes'),(115,'disable_smm','0','yes'),(116,'wpforms_shareasale_id','1587694','yes'),(212,'jpsq_sync-1563747226.733974-183210-2','a:6:{i:0;s:14:\"updated_option\";i:1;a:3:{i:0;s:14:\"active_plugins\";i:1;a:3:{i:0;s:24:\"wpforms-lite/wpforms.php\";i:1;s:19:\"jetpack/jetpack.php\";i:3;s:51:\"boldgrid-backup-premium/boldgrid-backup-premium.php\";}i:2;a:2:{i:0;s:24:\"wpforms-lite/wpforms.php\";i:3;s:51:\"boldgrid-backup-premium/boldgrid-backup-premium.php\";}}i:2;i:1;i:3;d:1563747226.7338058948516845703125;i:4;b:0;i:5;a:14:{s:13:\"wpcom_user_id\";N;s:16:\"external_user_id\";i:1;s:12:\"display_name\";s:9:\"mphillips\";s:10:\"user_email\";s:28:\"phillips.editorial@gmail.com\";s:10:\"user_roles\";a:1:{i:0;s:13:\"administrator\";}s:15:\"translated_role\";s:13:\"administrator\";s:7:\"is_cron\";b:0;s:7:\"is_rest\";b:0;s:9:\"is_xmlrpc\";b:0;s:10:\"is_wp_rest\";b:0;s:7:\"is_ajax\";b:0;s:11:\"is_wp_admin\";b:1;s:6:\"is_cli\";b:0;s:8:\"from_url\";s:147:\"http://itcamefrombeyondpulp.com/wp-admin/plugins.php?action=deactivate&plugin=jetpack%2Fjetpack.php&plugin_status=all&paged=1&s&_wpnonce=85cfab5870\";}}','no'),(118,'widget_wpforms-widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(121,'boldgrid_settings','a:2:{s:7:\"library\";a:0:{}s:15:\"plugins_checked\";a:2:{s:35:\"boldgrid-backup/boldgrid-backup.php\";a:1:{s:5:\"1.8.0\";i:1563747200;}s:51:\"boldgrid-backup-premium/boldgrid-backup-premium.php\";a:1:{s:5:\"1.1.0\";i:1563747200;}}}','yes'),(122,'_site_transient_boldgrid_plugins_filtered','a:2:{s:35:\"boldgrid-backup/boldgrid-backup.php\";a:11:{s:4:\"Name\";s:15:\"BoldGrid Backup\";s:9:\"PluginURI\";s:41:\"https://www.boldgrid.com/boldgrid-backup/\";s:7:\"Version\";s:5:\"1.8.0\";s:11:\"Description\";s:81:\"BoldGrid Backup provides WordPress backup and restoration with update protection.\";s:6:\"Author\";s:8:\"BoldGrid\";s:9:\"AuthorURI\";s:25:\"https://www.boldgrid.com/\";s:10:\"TextDomain\";s:15:\"boldgrid-backup\";s:10:\"DomainPath\";s:10:\"/languages\";s:7:\"Network\";b:0;s:5:\"Title\";s:15:\"BoldGrid Backup\";s:10:\"AuthorName\";s:8:\"BoldGrid\";}s:51:\"boldgrid-backup-premium/boldgrid-backup-premium.php\";a:11:{s:4:\"Name\";s:23:\"BoldGrid Backup Premium\";s:9:\"PluginURI\";s:41:\"https://www.boldgrid.com/boldgrid-backup/\";s:7:\"Version\";s:5:\"1.1.0\";s:11:\"Description\";s:49:\"Premium extension for the BoldGrid Backup plugin.\";s:6:\"Author\";s:8:\"BoldGrid\";s:9:\"AuthorURI\";s:25:\"https://www.boldgrid.com/\";s:10:\"TextDomain\";s:15:\"boldgrid-backup\";s:10:\"DomainPath\";s:10:\"/languages\";s:7:\"Network\";b:0;s:5:\"Title\";s:23:\"BoldGrid Backup Premium\";s:10:\"AuthorName\";s:8:\"BoldGrid\";}}','no'),(1676,'_site_transient_timeout_theme_roots','1566903592','no'),(1677,'_site_transient_theme_roots','a:4:{s:4:\"Divi\";s:7:\"/themes\";s:14:\"twentynineteen\";s:7:\"/themes\";s:15:\"twentyseventeen\";s:7:\"/themes\";s:13:\"twentysixteen\";s:7:\"/themes\";}','no'),(127,'boldgrid_backup_id','d5bb4792','no'),(128,'boldgrid_backup_settings','a:11:{s:8:\"schedule\";a:10:{s:10:\"dow_sunday\";i:0;s:10:\"dow_monday\";i:0;s:11:\"dow_tuesday\";i:0;s:13:\"dow_wednesday\";i:0;s:12:\"dow_thursday\";i:0;s:10:\"dow_friday\";i:0;s:12:\"dow_saturday\";i:0;s:5:\"tod_h\";i:4;s:5:\"tod_m\";s:2:\"08\";s:5:\"tod_a\";s:2:\"AM\";}s:15:\"retention_count\";i:5;s:18:\"notification_email\";s:28:\"phillips.editorial@gmail.com\";s:13:\"notifications\";a:2:{s:6:\"backup\";i:1;s:7:\"restore\";i:1;}s:11:\"auto_backup\";i:1;s:13:\"auto_rollback\";i:1;s:6:\"remote\";a:0:{}s:14:\"exclude_tables\";a:0:{}s:24:\"folder_exclusion_include\";s:18:\"WPCORE,/wp-content\";s:24:\"folder_exclusion_exclude\";s:17:\".git,node_modules\";s:16:\"backup_directory\";s:29:\"/home/goatdo6/boldgrid_backup\";}','no'),(129,'_site_transient_update_core','O:8:\"stdClass\":4:{s:7:\"updates\";a:1:{i:0;O:8:\"stdClass\":10:{s:8:\"response\";s:6:\"latest\";s:8:\"download\";s:59:\"https://downloads.wordpress.org/release/wordpress-5.2.2.zip\";s:6:\"locale\";s:5:\"en_US\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:59:\"https://downloads.wordpress.org/release/wordpress-5.2.2.zip\";s:10:\"no_content\";s:70:\"https://downloads.wordpress.org/release/wordpress-5.2.2-no-content.zip\";s:11:\"new_bundled\";s:71:\"https://downloads.wordpress.org/release/wordpress-5.2.2-new-bundled.zip\";s:7:\"partial\";b:0;s:8:\"rollback\";b:0;}s:7:\"current\";s:5:\"5.2.2\";s:7:\"version\";s:5:\"5.2.2\";s:11:\"php_version\";s:6:\"5.6.20\";s:13:\"mysql_version\";s:3:\"5.0\";s:11:\"new_bundled\";s:3:\"5.0\";s:15:\"partial_version\";s:0:\"\";}}s:12:\"last_checked\";i:1566901792;s:15:\"version_checked\";s:5:\"5.2.2\";s:12:\"translations\";a:0:{}}','no'),(130,'do_activate','0','yes'),(131,'jetpack_activated','2','yes'),(134,'jetpack_available_modules','a:1:{s:5:\"7.1.1\";a:45:{s:18:\"after-the-deadline\";s:3:\"1.1\";s:8:\"carousel\";s:3:\"1.5\";s:13:\"comment-likes\";s:3:\"5.1\";s:8:\"comments\";s:3:\"1.4\";s:12:\"contact-form\";s:3:\"1.3\";s:9:\"copy-post\";s:3:\"7.0\";s:20:\"custom-content-types\";s:3:\"3.1\";s:10:\"custom-css\";s:3:\"1.7\";s:21:\"enhanced-distribution\";s:3:\"1.2\";s:16:\"google-analytics\";s:3:\"4.5\";s:19:\"gravatar-hovercards\";s:3:\"1.1\";s:15:\"infinite-scroll\";s:3:\"2.0\";s:8:\"json-api\";s:3:\"1.9\";s:5:\"latex\";s:3:\"1.1\";s:11:\"lazy-images\";s:5:\"5.6.0\";s:5:\"likes\";s:3:\"2.2\";s:6:\"manage\";s:3:\"3.4\";s:8:\"markdown\";s:3:\"2.8\";s:9:\"masterbar\";s:3:\"4.8\";s:9:\"minileven\";s:3:\"1.8\";s:7:\"monitor\";s:3:\"2.6\";s:5:\"notes\";s:3:\"1.9\";s:10:\"photon-cdn\";s:3:\"6.6\";s:6:\"photon\";s:3:\"2.0\";s:13:\"post-by-email\";s:3:\"2.0\";s:7:\"protect\";s:3:\"3.4\";s:9:\"publicize\";s:3:\"2.0\";s:3:\"pwa\";s:5:\"5.6.0\";s:13:\"related-posts\";s:3:\"2.9\";s:6:\"search\";s:3:\"5.0\";s:9:\"seo-tools\";s:3:\"4.4\";s:10:\"sharedaddy\";s:3:\"1.1\";s:10:\"shortcodes\";s:3:\"1.1\";s:10:\"shortlinks\";s:3:\"1.1\";s:8:\"sitemaps\";s:3:\"3.9\";s:3:\"sso\";s:3:\"2.6\";s:5:\"stats\";s:3:\"1.1\";s:13:\"subscriptions\";s:3:\"1.2\";s:13:\"tiled-gallery\";s:3:\"2.1\";s:10:\"vaultpress\";s:5:\"0:1.2\";s:18:\"verification-tools\";s:3:\"3.0\";s:10:\"videopress\";s:3:\"2.5\";s:17:\"widget-visibility\";s:3:\"2.4\";s:7:\"widgets\";s:3:\"1.2\";s:7:\"wordads\";s:5:\"4.5.0\";}}','yes'),(135,'jetpack_options','a:2:{s:7:\"version\";s:16:\"7.1.1:1563747183\";s:11:\"old_version\";s:16:\"7.1.1:1563747183\";}','yes'),(140,'_amn_wpforms-lite_last_checked','1566345600','yes'),(147,'wpforms_review','a:2:{s:4:\"time\";i:1563747185;s:9:\"dismissed\";b:0;}','yes'),(382,'wpforms_activated','a:1:{s:4:\"lite\";i:1563843554;}','yes'),(653,'_site_transient_et_update_all_plugins','O:8:\"stdClass\":1:{s:12:\"last_checked\";i:1564453312;}','no'),(675,'_transient_timeout_et_core_version','1566957423','no'),(1664,'_transient_timeout_et_core_path','1566957423','no'),(1665,'_transient_et_core_path','/home/goatdo6/itcamefrombeyondpulp.com/wp-content/themes/Divi/core','no'),(661,'et_account_status','active','no'),(662,'_site_transient_et_update_themes','O:8:\"stdClass\":3:{s:7:\"checked\";a:4:{s:4:\"Divi\";s:6:\"3.26.3\";s:14:\"twentynineteen\";s:3:\"1.4\";s:15:\"twentyseventeen\";s:3:\"2.2\";s:13:\"twentysixteen\";s:3:\"2.0\";}s:8:\"response\";a:1:{s:4:\"Divi\";a:3:{s:11:\"new_version\";s:6:\"3.26.5\";s:5:\"theme\";s:4:\"Divi\";s:3:\"url\";s:52:\"https://www.elegantthemes.com/api/changelog/divi.txt\";}}s:12:\"last_checked\";i:1564453312;}','no'),(668,'ebay-feeds-for-wordpress-default','http://rest.ebay.com/epn/v1/find/item.rss?keyword=book&sortOrder=BestMatch&programid=1&campaignid=5338571822&toolid=10039&listingType1=All&descriptionSearch=true&sellerId1=evil_spoon&feedType=rss&lgeo=1','yes'),(669,'ebay-feeds-for-wordpress-default-number','10','yes'),(670,'ebay-feeds-for-wordpress-link','1','yes'),(671,'ebay-feeds-for-wordpress-link-open-blank','1','yes'),(672,'ebay-feed-for-wordpress-flush-cache','1','yes'),(676,'_transient_et_core_version','3.26.3','no'),(677,'widget_ebay_feeds_for_wordpress_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(701,'ebay-feeds-for-wordpress-nofollow-links','','yes'),(702,'ebay_feeds_for_wordpress_fallback','There are no current sales.','yes'),(703,'ebay-feeds-for-wordpress-debug','1','yes'),(704,'ebay-feeds-for-wordpress-item-div-wrapper','','yes'),(705,'ebay-feed-for-wordpress-force-feed','1','yes'),(706,'ebay-feed-for-wordpress-ssl','1','yes'),(707,'ebay-feeds-for-wordpress-imax-max-width','150','yes'),(166,'recovery_keys','a:0:{}','yes'),(1678,'_site_transient_update_plugins','O:8:\"stdClass\":5:{s:12:\"last_checked\";i:1566901793;s:7:\"checked\";a:6:{s:19:\"akismet/akismet.php\";s:5:\"4.1.2\";s:35:\"boldgrid-backup/boldgrid-backup.php\";s:5:\"1.8.0\";s:51:\"boldgrid-backup-premium/boldgrid-backup-premium.php\";s:5:\"1.1.0\";s:53:\"ebay-feeds-for-wordpress/ebay-feeds-for-wordpress.php\";s:5:\"2.4.1\";s:19:\"jetpack/jetpack.php\";s:5:\"7.1.1\";s:24:\"wpforms-lite/wpforms.php\";s:7:\"1.5.1.3\";}s:8:\"response\";a:3:{s:35:\"boldgrid-backup/boldgrid-backup.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:29:\"w.org/plugins/boldgrid-backup\";s:4:\"slug\";s:15:\"boldgrid-backup\";s:6:\"plugin\";s:35:\"boldgrid-backup/boldgrid-backup.php\";s:11:\"new_version\";s:6:\"1.10.6\";s:3:\"url\";s:46:\"https://wordpress.org/plugins/boldgrid-backup/\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/plugin/boldgrid-backup.1.10.6.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:68:\"https://ps.w.org/boldgrid-backup/assets/icon-256x256.png?rev=1880952\";s:2:\"1x\";s:68:\"https://ps.w.org/boldgrid-backup/assets/icon-128x128.png?rev=1880952\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:71:\"https://ps.w.org/boldgrid-backup/assets/banner-1544x500.png?rev=1880952\";s:2:\"1x\";s:70:\"https://ps.w.org/boldgrid-backup/assets/banner-772x250.png?rev=1880952\";}s:11:\"banners_rtl\";a:0:{}s:6:\"tested\";s:5:\"5.2.2\";s:12:\"requires_php\";s:3:\"5.4\";s:13:\"compatibility\";O:8:\"stdClass\":0:{}}s:19:\"jetpack/jetpack.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:21:\"w.org/plugins/jetpack\";s:4:\"slug\";s:7:\"jetpack\";s:6:\"plugin\";s:19:\"jetpack/jetpack.php\";s:11:\"new_version\";s:3:\"7.6\";s:3:\"url\";s:38:\"https://wordpress.org/plugins/jetpack/\";s:7:\"package\";s:54:\"https://downloads.wordpress.org/plugin/jetpack.7.6.zip\";s:5:\"icons\";a:3:{s:2:\"2x\";s:60:\"https://ps.w.org/jetpack/assets/icon-256x256.png?rev=1791404\";s:2:\"1x\";s:52:\"https://ps.w.org/jetpack/assets/icon.svg?rev=1791404\";s:3:\"svg\";s:52:\"https://ps.w.org/jetpack/assets/icon.svg?rev=1791404\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:63:\"https://ps.w.org/jetpack/assets/banner-1544x500.png?rev=1791404\";s:2:\"1x\";s:62:\"https://ps.w.org/jetpack/assets/banner-772x250.png?rev=1791404\";}s:11:\"banners_rtl\";a:0:{}s:6:\"tested\";s:5:\"5.2.2\";s:12:\"requires_php\";s:3:\"5.6\";s:13:\"compatibility\";O:8:\"stdClass\":0:{}}s:24:\"wpforms-lite/wpforms.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:26:\"w.org/plugins/wpforms-lite\";s:4:\"slug\";s:12:\"wpforms-lite\";s:6:\"plugin\";s:24:\"wpforms-lite/wpforms.php\";s:11:\"new_version\";s:7:\"1.5.4.2\";s:3:\"url\";s:43:\"https://wordpress.org/plugins/wpforms-lite/\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/plugin/wpforms-lite.1.5.4.2.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:65:\"https://ps.w.org/wpforms-lite/assets/icon-256x256.png?rev=1371112\";s:2:\"1x\";s:65:\"https://ps.w.org/wpforms-lite/assets/icon-128x128.png?rev=1371112\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:68:\"https://ps.w.org/wpforms-lite/assets/banner-1544x500.png?rev=1371112\";s:2:\"1x\";s:67:\"https://ps.w.org/wpforms-lite/assets/banner-772x250.png?rev=1371112\";}s:11:\"banners_rtl\";a:0:{}s:6:\"tested\";s:5:\"5.2.2\";s:12:\"requires_php\";s:5:\"5.3.3\";s:13:\"compatibility\";O:8:\"stdClass\":0:{}}}s:12:\"translations\";a:0:{}s:9:\"no_update\";a:2:{s:19:\"akismet/akismet.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:21:\"w.org/plugins/akismet\";s:4:\"slug\";s:7:\"akismet\";s:6:\"plugin\";s:19:\"akismet/akismet.php\";s:11:\"new_version\";s:5:\"4.1.2\";s:3:\"url\";s:38:\"https://wordpress.org/plugins/akismet/\";s:7:\"package\";s:56:\"https://downloads.wordpress.org/plugin/akismet.4.1.2.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:59:\"https://ps.w.org/akismet/assets/icon-256x256.png?rev=969272\";s:2:\"1x\";s:59:\"https://ps.w.org/akismet/assets/icon-128x128.png?rev=969272\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:61:\"https://ps.w.org/akismet/assets/banner-772x250.jpg?rev=479904\";}s:11:\"banners_rtl\";a:0:{}}s:53:\"ebay-feeds-for-wordpress/ebay-feeds-for-wordpress.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:38:\"w.org/plugins/ebay-feeds-for-wordpress\";s:4:\"slug\";s:24:\"ebay-feeds-for-wordpress\";s:6:\"plugin\";s:53:\"ebay-feeds-for-wordpress/ebay-feeds-for-wordpress.php\";s:11:\"new_version\";s:5:\"2.4.1\";s:3:\"url\";s:55:\"https://wordpress.org/plugins/ebay-feeds-for-wordpress/\";s:7:\"package\";s:67:\"https://downloads.wordpress.org/plugin/ebay-feeds-for-wordpress.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:76:\"https://ps.w.org/ebay-feeds-for-wordpress/assets/icon-256x256.png?rev=972410\";s:2:\"1x\";s:76:\"https://ps.w.org/ebay-feeds-for-wordpress/assets/icon-128x128.png?rev=972410\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:78:\"https://ps.w.org/ebay-feeds-for-wordpress/assets/banner-772x250.jpg?rev=487759\";}s:11:\"banners_rtl\";a:0:{}}}}','no'),(181,'can_compress_scripts','1','no'),(680,'_site_transient_update_themes','O:8:\"stdClass\":4:{s:12:\"last_checked\";i:1566901793;s:7:\"checked\";a:4:{s:4:\"Divi\";s:6:\"3.26.3\";s:14:\"twentynineteen\";s:3:\"1.4\";s:15:\"twentyseventeen\";s:3:\"2.2\";s:13:\"twentysixteen\";s:3:\"2.0\";}s:8:\"response\";a:0:{}s:12:\"translations\";a:0:{}}','no'),(186,'recently_activated','a:2:{s:19:\"jetpack/jetpack.php\";i:1563747226;s:35:\"boldgrid-backup/boldgrid-backup.php\";i:1563747218;}','yes'),(211,'jpsq_sync-1563747226.731879-183210-1','a:6:{i:0;s:18:\"deactivated_plugin\";i:1;a:2:{i:0;s:19:\"jetpack/jetpack.php\";i:1;b:0;}i:2;i:1;i:3;d:1563747226.731686115264892578125;i:4;b:0;i:5;a:14:{s:13:\"wpcom_user_id\";N;s:16:\"external_user_id\";i:1;s:12:\"display_name\";s:9:\"mphillips\";s:10:\"user_email\";s:28:\"phillips.editorial@gmail.com\";s:10:\"user_roles\";a:1:{i:0;s:13:\"administrator\";}s:15:\"translated_role\";s:13:\"administrator\";s:7:\"is_cron\";b:0;s:7:\"is_rest\";b:0;s:9:\"is_xmlrpc\";b:0;s:10:\"is_wp_rest\";b:0;s:7:\"is_ajax\";b:0;s:11:\"is_wp_admin\";b:1;s:6:\"is_cli\";b:0;s:8:\"from_url\";s:147:\"http://itcamefrombeyondpulp.com/wp-admin/plugins.php?action=deactivate&plugin=jetpack%2Fjetpack.php&plugin_status=all&paged=1&s&_wpnonce=85cfab5870\";}}','no'),(208,'jetpack_sync_settings_disable','0','yes'),(215,'jpsq_sync-1563747226.737954-183210-3','a:6:{i:0;s:21:\"jetpack_sync_constant\";i:1;a:2:{i:0;s:16:\"EMPTY_TRASH_DAYS\";i:1;i:30;}i:2;i:1;i:3;d:1563747226.7377870082855224609375;i:4;b:0;i:5;a:14:{s:13:\"wpcom_user_id\";N;s:16:\"external_user_id\";i:1;s:12:\"display_name\";s:9:\"mphillips\";s:10:\"user_email\";s:28:\"phillips.editorial@gmail.com\";s:10:\"user_roles\";a:1:{i:0;s:13:\"administrator\";}s:15:\"translated_role\";s:13:\"administrator\";s:7:\"is_cron\";b:0;s:7:\"is_rest\";b:0;s:9:\"is_xmlrpc\";b:0;s:10:\"is_wp_rest\";b:0;s:7:\"is_ajax\";b:0;s:11:\"is_wp_admin\";b:1;s:6:\"is_cli\";b:0;s:8:\"from_url\";s:147:\"http://itcamefrombeyondpulp.com/wp-admin/plugins.php?action=deactivate&plugin=jetpack%2Fjetpack.php&plugin_status=all&paged=1&s&_wpnonce=85cfab5870\";}}','no'),(216,'jpsq_sync-1563747226.738617-183210-4','a:6:{i:0;s:21:\"jetpack_sync_constant\";i:1;a:2:{i:0;s:17:\"WP_POST_REVISIONS\";i:1;b:1;}i:2;i:1;i:3;d:1563747226.738481044769287109375;i:4;b:0;i:5;a:14:{s:13:\"wpcom_user_id\";N;s:16:\"external_user_id\";i:1;s:12:\"display_name\";s:9:\"mphillips\";s:10:\"user_email\";s:28:\"phillips.editorial@gmail.com\";s:10:\"user_roles\";a:1:{i:0;s:13:\"administrator\";}s:15:\"translated_role\";s:13:\"administrator\";s:7:\"is_cron\";b:0;s:7:\"is_rest\";b:0;s:9:\"is_xmlrpc\";b:0;s:10:\"is_wp_rest\";b:0;s:7:\"is_ajax\";b:0;s:11:\"is_wp_admin\";b:1;s:6:\"is_cli\";b:0;s:8:\"from_url\";s:147:\"http://itcamefrombeyondpulp.com/wp-admin/plugins.php?action=deactivate&plugin=jetpack%2Fjetpack.php&plugin_status=all&paged=1&s&_wpnonce=85cfab5870\";}}','no'),(217,'jpsq_sync-1563747226.739249-183210-5','a:6:{i:0;s:21:\"jetpack_sync_constant\";i:1;a:2:{i:0;s:7:\"ABSPATH\";i:1;s:39:\"/home/goatdo6/itcamefrombeyondpulp.com/\";}i:2;i:1;i:3;d:1563747226.739118099212646484375;i:4;b:0;i:5;a:14:{s:13:\"wpcom_user_id\";N;s:16:\"external_user_id\";i:1;s:12:\"display_name\";s:9:\"mphillips\";s:10:\"user_email\";s:28:\"phillips.editorial@gmail.com\";s:10:\"user_roles\";a:1:{i:0;s:13:\"administrator\";}s:15:\"translated_role\";s:13:\"administrator\";s:7:\"is_cron\";b:0;s:7:\"is_rest\";b:0;s:9:\"is_xmlrpc\";b:0;s:10:\"is_wp_rest\";b:0;s:7:\"is_ajax\";b:0;s:11:\"is_wp_admin\";b:1;s:6:\"is_cli\";b:0;s:8:\"from_url\";s:147:\"http://itcamefrombeyondpulp.com/wp-admin/plugins.php?action=deactivate&plugin=jetpack%2Fjetpack.php&plugin_status=all&paged=1&s&_wpnonce=85cfab5870\";}}','no'),(218,'jpsq_sync-1563747226.739865-183210-6','a:6:{i:0;s:21:\"jetpack_sync_constant\";i:1;a:2:{i:0;s:14:\"WP_CONTENT_DIR\";i:1;s:49:\"/home/goatdo6/itcamefrombeyondpulp.com/wp-content\";}i:2;i:1;i:3;d:1563747226.7397339344024658203125;i:4;b:0;i:5;a:14:{s:13:\"wpcom_user_id\";N;s:16:\"external_user_id\";i:1;s:12:\"display_name\";s:9:\"mphillips\";s:10:\"user_email\";s:28:\"phillips.editorial@gmail.com\";s:10:\"user_roles\";a:1:{i:0;s:13:\"administrator\";}s:15:\"translated_role\";s:13:\"administrator\";s:7:\"is_cron\";b:0;s:7:\"is_rest\";b:0;s:9:\"is_xmlrpc\";b:0;s:10:\"is_wp_rest\";b:0;s:7:\"is_ajax\";b:0;s:11:\"is_wp_admin\";b:1;s:6:\"is_cli\";b:0;s:8:\"from_url\";s:147:\"http://itcamefrombeyondpulp.com/wp-admin/plugins.php?action=deactivate&plugin=jetpack%2Fjetpack.php&plugin_status=all&paged=1&s&_wpnonce=85cfab5870\";}}','no'),(219,'jpsq_sync-1563747226.740563-183210-7','a:6:{i:0;s:21:\"jetpack_sync_constant\";i:1;a:2:{i:0;s:16:\"JETPACK__VERSION\";i:1;s:5:\"7.1.1\";}i:2;i:1;i:3;d:1563747226.7404301166534423828125;i:4;b:0;i:5;a:14:{s:13:\"wpcom_user_id\";N;s:16:\"external_user_id\";i:1;s:12:\"display_name\";s:9:\"mphillips\";s:10:\"user_email\";s:28:\"phillips.editorial@gmail.com\";s:10:\"user_roles\";a:1:{i:0;s:13:\"administrator\";}s:15:\"translated_role\";s:13:\"administrator\";s:7:\"is_cron\";b:0;s:7:\"is_rest\";b:0;s:9:\"is_xmlrpc\";b:0;s:10:\"is_wp_rest\";b:0;s:7:\"is_ajax\";b:0;s:11:\"is_wp_admin\";b:1;s:6:\"is_cli\";b:0;s:8:\"from_url\";s:147:\"http://itcamefrombeyondpulp.com/wp-admin/plugins.php?action=deactivate&plugin=jetpack%2Fjetpack.php&plugin_status=all&paged=1&s&_wpnonce=85cfab5870\";}}','no'),(220,'jpsq_sync-1563747226.741212-183210-8','a:6:{i:0;s:21:\"jetpack_sync_constant\";i:1;a:2:{i:0;s:20:\"WP_CRON_LOCK_TIMEOUT\";i:1;i:60;}i:2;i:1;i:3;d:1563747226.7410800457000732421875;i:4;b:0;i:5;a:14:{s:13:\"wpcom_user_id\";N;s:16:\"external_user_id\";i:1;s:12:\"display_name\";s:9:\"mphillips\";s:10:\"user_email\";s:28:\"phillips.editorial@gmail.com\";s:10:\"user_roles\";a:1:{i:0;s:13:\"administrator\";}s:15:\"translated_role\";s:13:\"administrator\";s:7:\"is_cron\";b:0;s:7:\"is_rest\";b:0;s:9:\"is_xmlrpc\";b:0;s:10:\"is_wp_rest\";b:0;s:7:\"is_ajax\";b:0;s:11:\"is_wp_admin\";b:1;s:6:\"is_cli\";b:0;s:8:\"from_url\";s:147:\"http://itcamefrombeyondpulp.com/wp-admin/plugins.php?action=deactivate&plugin=jetpack%2Fjetpack.php&plugin_status=all&paged=1&s&_wpnonce=85cfab5870\";}}','no'),(221,'jpsq_sync-1563747226.741825-183210-9','a:6:{i:0;s:21:\"jetpack_sync_constant\";i:1;a:2:{i:0;s:11:\"PHP_VERSION\";i:1;s:6:\"5.6.39\";}i:2;i:1;i:3;d:1563747226.7416970729827880859375;i:4;b:0;i:5;a:14:{s:13:\"wpcom_user_id\";N;s:16:\"external_user_id\";i:1;s:12:\"display_name\";s:9:\"mphillips\";s:10:\"user_email\";s:28:\"phillips.editorial@gmail.com\";s:10:\"user_roles\";a:1:{i:0;s:13:\"administrator\";}s:15:\"translated_role\";s:13:\"administrator\";s:7:\"is_cron\";b:0;s:7:\"is_rest\";b:0;s:9:\"is_xmlrpc\";b:0;s:10:\"is_wp_rest\";b:0;s:7:\"is_ajax\";b:0;s:11:\"is_wp_admin\";b:1;s:6:\"is_cli\";b:0;s:8:\"from_url\";s:147:\"http://itcamefrombeyondpulp.com/wp-admin/plugins.php?action=deactivate&plugin=jetpack%2Fjetpack.php&plugin_status=all&paged=1&s&_wpnonce=85cfab5870\";}}','no'),(222,'jpsq_sync-1563747226.742444-183210-10','a:6:{i:0;s:21:\"jetpack_sync_constant\";i:1;a:2:{i:0;s:15:\"WP_MEMORY_LIMIT\";i:1;s:3:\"40M\";}i:2;i:1;i:3;d:1563747226.742312908172607421875;i:4;b:0;i:5;a:14:{s:13:\"wpcom_user_id\";N;s:16:\"external_user_id\";i:1;s:12:\"display_name\";s:9:\"mphillips\";s:10:\"user_email\";s:28:\"phillips.editorial@gmail.com\";s:10:\"user_roles\";a:1:{i:0;s:13:\"administrator\";}s:15:\"translated_role\";s:13:\"administrator\";s:7:\"is_cron\";b:0;s:7:\"is_rest\";b:0;s:9:\"is_xmlrpc\";b:0;s:10:\"is_wp_rest\";b:0;s:7:\"is_ajax\";b:0;s:11:\"is_wp_admin\";b:1;s:6:\"is_cli\";b:0;s:8:\"from_url\";s:147:\"http://itcamefrombeyondpulp.com/wp-admin/plugins.php?action=deactivate&plugin=jetpack%2Fjetpack.php&plugin_status=all&paged=1&s&_wpnonce=85cfab5870\";}}','no'),(223,'jpsq_sync-1563747226.743052-183210-11','a:6:{i:0;s:21:\"jetpack_sync_constant\";i:1;a:2:{i:0;s:19:\"WP_MAX_MEMORY_LIMIT\";i:1;s:4:\"512M\";}i:2;i:1;i:3;d:1563747226.7429130077362060546875;i:4;b:0;i:5;a:14:{s:13:\"wpcom_user_id\";N;s:16:\"external_user_id\";i:1;s:12:\"display_name\";s:9:\"mphillips\";s:10:\"user_email\";s:28:\"phillips.editorial@gmail.com\";s:10:\"user_roles\";a:1:{i:0;s:13:\"administrator\";}s:15:\"translated_role\";s:13:\"administrator\";s:7:\"is_cron\";b:0;s:7:\"is_rest\";b:0;s:9:\"is_xmlrpc\";b:0;s:10:\"is_wp_rest\";b:0;s:7:\"is_ajax\";b:0;s:11:\"is_wp_admin\";b:1;s:6:\"is_cli\";b:0;s:8:\"from_url\";s:147:\"http://itcamefrombeyondpulp.com/wp-admin/plugins.php?action=deactivate&plugin=jetpack%2Fjetpack.php&plugin_status=all&paged=1&s&_wpnonce=85cfab5870\";}}','no'),(224,'jetpack_constants_sync_checksum','a:19:{s:16:\"EMPTY_TRASH_DAYS\";i:2473281379;s:17:\"WP_POST_REVISIONS\";i:4261170317;s:26:\"AUTOMATIC_UPDATER_DISABLED\";i:634125391;s:7:\"ABSPATH\";i:1347672978;s:14:\"WP_CONTENT_DIR\";i:156290210;s:9:\"FS_METHOD\";i:634125391;s:18:\"DISALLOW_FILE_EDIT\";i:634125391;s:18:\"DISALLOW_FILE_MODS\";i:634125391;s:19:\"WP_AUTO_UPDATE_CORE\";i:634125391;s:22:\"WP_HTTP_BLOCK_EXTERNAL\";i:634125391;s:19:\"WP_ACCESSIBLE_HOSTS\";i:634125391;s:16:\"JETPACK__VERSION\";i:3417957315;s:12:\"IS_PRESSABLE\";i:634125391;s:15:\"DISABLE_WP_CRON\";i:634125391;s:17:\"ALTERNATE_WP_CRON\";i:634125391;s:20:\"WP_CRON_LOCK_TIMEOUT\";i:3994858278;s:11:\"PHP_VERSION\";i:2328450637;s:15:\"WP_MEMORY_LIMIT\";i:3065409971;s:19:\"WP_MAX_MEMORY_LIMIT\";i:1839787262;}','yes'),(227,'jetpack_sync_https_history_main_network_site_url','a:1:{i:0;s:4:\"http\";}','yes'),(228,'jetpack_sync_https_history_site_url','a:2:{i:0;s:4:\"http\";i:1;s:4:\"http\";}','yes'),(229,'jetpack_sync_https_history_home_url','a:2:{i:0;s:4:\"http\";i:1;s:4:\"http\";}','yes'),(232,'jpsq_sync-1563747226.765235-183210-12','a:6:{i:0;s:21:\"jetpack_sync_callable\";i:1;a:2:{i:0;s:18:\"wp_max_upload_size\";i:1;i:134217728;}i:2;i:1;i:3;d:1563747226.7650640010833740234375;i:4;b:0;i:5;a:14:{s:13:\"wpcom_user_id\";N;s:16:\"external_user_id\";i:1;s:12:\"display_name\";s:9:\"mphillips\";s:10:\"user_email\";s:28:\"phillips.editorial@gmail.com\";s:10:\"user_roles\";a:1:{i:0;s:13:\"administrator\";}s:15:\"translated_role\";s:13:\"administrator\";s:7:\"is_cron\";b:0;s:7:\"is_rest\";b:0;s:9:\"is_xmlrpc\";b:0;s:10:\"is_wp_rest\";b:0;s:7:\"is_ajax\";b:0;s:11:\"is_wp_admin\";b:1;s:6:\"is_cli\";b:0;s:8:\"from_url\";s:147:\"http://itcamefrombeyondpulp.com/wp-admin/plugins.php?action=deactivate&plugin=jetpack%2Fjetpack.php&plugin_status=all&paged=1&s&_wpnonce=85cfab5870\";}}','no'),(233,'jpsq_sync-1563747226.765968-183210-13','a:6:{i:0;s:21:\"jetpack_sync_callable\";i:1;a:2:{i:0;s:15:\"is_main_network\";i:1;b:0;}i:2;i:1;i:3;d:1563747226.765819072723388671875;i:4;b:0;i:5;a:14:{s:13:\"wpcom_user_id\";N;s:16:\"external_user_id\";i:1;s:12:\"display_name\";s:9:\"mphillips\";s:10:\"user_email\";s:28:\"phillips.editorial@gmail.com\";s:10:\"user_roles\";a:1:{i:0;s:13:\"administrator\";}s:15:\"translated_role\";s:13:\"administrator\";s:7:\"is_cron\";b:0;s:7:\"is_rest\";b:0;s:9:\"is_xmlrpc\";b:0;s:10:\"is_wp_rest\";b:0;s:7:\"is_ajax\";b:0;s:11:\"is_wp_admin\";b:1;s:6:\"is_cli\";b:0;s:8:\"from_url\";s:147:\"http://itcamefrombeyondpulp.com/wp-admin/plugins.php?action=deactivate&plugin=jetpack%2Fjetpack.php&plugin_status=all&paged=1&s&_wpnonce=85cfab5870\";}}','no'),(234,'jpsq_sync-1563747226.766629-183210-14','a:6:{i:0;s:21:\"jetpack_sync_callable\";i:1;a:2:{i:0;s:13:\"is_multi_site\";i:1;b:0;}i:2;i:1;i:3;d:1563747226.7664940357208251953125;i:4;b:0;i:5;a:14:{s:13:\"wpcom_user_id\";N;s:16:\"external_user_id\";i:1;s:12:\"display_name\";s:9:\"mphillips\";s:10:\"user_email\";s:28:\"phillips.editorial@gmail.com\";s:10:\"user_roles\";a:1:{i:0;s:13:\"administrator\";}s:15:\"translated_role\";s:13:\"administrator\";s:7:\"is_cron\";b:0;s:7:\"is_rest\";b:0;s:9:\"is_xmlrpc\";b:0;s:10:\"is_wp_rest\";b:0;s:7:\"is_ajax\";b:0;s:11:\"is_wp_admin\";b:1;s:6:\"is_cli\";b:0;s:8:\"from_url\";s:147:\"http://itcamefrombeyondpulp.com/wp-admin/plugins.php?action=deactivate&plugin=jetpack%2Fjetpack.php&plugin_status=all&paged=1&s&_wpnonce=85cfab5870\";}}','no'),(235,'jpsq_sync-1563747226.767613-183210-15','a:6:{i:0;s:21:\"jetpack_sync_callable\";i:1;a:2:{i:0;s:17:\"main_network_site\";i:1;s:31:\"http://itcamefrombeyondpulp.com\";}i:2;i:1;i:3;d:1563747226.76747798919677734375;i:4;b:0;i:5;a:14:{s:13:\"wpcom_user_id\";N;s:16:\"external_user_id\";i:1;s:12:\"display_name\";s:9:\"mphillips\";s:10:\"user_email\";s:28:\"phillips.editorial@gmail.com\";s:10:\"user_roles\";a:1:{i:0;s:13:\"administrator\";}s:15:\"translated_role\";s:13:\"administrator\";s:7:\"is_cron\";b:0;s:7:\"is_rest\";b:0;s:9:\"is_xmlrpc\";b:0;s:10:\"is_wp_rest\";b:0;s:7:\"is_ajax\";b:0;s:11:\"is_wp_admin\";b:1;s:6:\"is_cli\";b:0;s:8:\"from_url\";s:147:\"http://itcamefrombeyondpulp.com/wp-admin/plugins.php?action=deactivate&plugin=jetpack%2Fjetpack.php&plugin_status=all&paged=1&s&_wpnonce=85cfab5870\";}}','no'),(236,'jpsq_sync-1563747226.768283-183210-16','a:6:{i:0;s:21:\"jetpack_sync_callable\";i:1;a:2:{i:0;s:8:\"site_url\";i:1;s:31:\"http://itcamefrombeyondpulp.com\";}i:2;i:1;i:3;d:1563747226.7681529521942138671875;i:4;b:0;i:5;a:14:{s:13:\"wpcom_user_id\";N;s:16:\"external_user_id\";i:1;s:12:\"display_name\";s:9:\"mphillips\";s:10:\"user_email\";s:28:\"phillips.editorial@gmail.com\";s:10:\"user_roles\";a:1:{i:0;s:13:\"administrator\";}s:15:\"translated_role\";s:13:\"administrator\";s:7:\"is_cron\";b:0;s:7:\"is_rest\";b:0;s:9:\"is_xmlrpc\";b:0;s:10:\"is_wp_rest\";b:0;s:7:\"is_ajax\";b:0;s:11:\"is_wp_admin\";b:1;s:6:\"is_cli\";b:0;s:8:\"from_url\";s:147:\"http://itcamefrombeyondpulp.com/wp-admin/plugins.php?action=deactivate&plugin=jetpack%2Fjetpack.php&plugin_status=all&paged=1&s&_wpnonce=85cfab5870\";}}','no'),(237,'jpsq_sync-1563747226.768941-183210-17','a:6:{i:0;s:21:\"jetpack_sync_callable\";i:1;a:2:{i:0;s:8:\"home_url\";i:1;s:31:\"http://itcamefrombeyondpulp.com\";}i:2;i:1;i:3;d:1563747226.7688128948211669921875;i:4;b:0;i:5;a:14:{s:13:\"wpcom_user_id\";N;s:16:\"external_user_id\";i:1;s:12:\"display_name\";s:9:\"mphillips\";s:10:\"user_email\";s:28:\"phillips.editorial@gmail.com\";s:10:\"user_roles\";a:1:{i:0;s:13:\"administrator\";}s:15:\"translated_role\";s:13:\"administrator\";s:7:\"is_cron\";b:0;s:7:\"is_rest\";b:0;s:9:\"is_xmlrpc\";b:0;s:10:\"is_wp_rest\";b:0;s:7:\"is_ajax\";b:0;s:11:\"is_wp_admin\";b:1;s:6:\"is_cli\";b:0;s:8:\"from_url\";s:147:\"http://itcamefrombeyondpulp.com/wp-admin/plugins.php?action=deactivate&plugin=jetpack%2Fjetpack.php&plugin_status=all&paged=1&s&_wpnonce=85cfab5870\";}}','no'),(238,'jpsq_sync-1563747226.769587-183210-18','a:6:{i:0;s:21:\"jetpack_sync_callable\";i:1;a:2:{i:0;s:16:\"single_user_site\";i:1;b:1;}i:2;i:1;i:3;d:1563747226.76945590972900390625;i:4;b:0;i:5;a:14:{s:13:\"wpcom_user_id\";N;s:16:\"external_user_id\";i:1;s:12:\"display_name\";s:9:\"mphillips\";s:10:\"user_email\";s:28:\"phillips.editorial@gmail.com\";s:10:\"user_roles\";a:1:{i:0;s:13:\"administrator\";}s:15:\"translated_role\";s:13:\"administrator\";s:7:\"is_cron\";b:0;s:7:\"is_rest\";b:0;s:9:\"is_xmlrpc\";b:0;s:10:\"is_wp_rest\";b:0;s:7:\"is_ajax\";b:0;s:11:\"is_wp_admin\";b:1;s:6:\"is_cli\";b:0;s:8:\"from_url\";s:147:\"http://itcamefrombeyondpulp.com/wp-admin/plugins.php?action=deactivate&plugin=jetpack%2Fjetpack.php&plugin_status=all&paged=1&s&_wpnonce=85cfab5870\";}}','no'),(239,'jpsq_sync-1563747226.770229-183210-19','a:6:{i:0;s:21:\"jetpack_sync_callable\";i:1;a:2:{i:0;s:7:\"updates\";i:1;a:5:{s:7:\"plugins\";i:0;s:6:\"themes\";i:0;s:9:\"wordpress\";i:0;s:12:\"translations\";i:0;s:5:\"total\";i:0;}}i:2;i:1;i:3;d:1563747226.7700989246368408203125;i:4;b:0;i:5;a:14:{s:13:\"wpcom_user_id\";N;s:16:\"external_user_id\";i:1;s:12:\"display_name\";s:9:\"mphillips\";s:10:\"user_email\";s:28:\"phillips.editorial@gmail.com\";s:10:\"user_roles\";a:1:{i:0;s:13:\"administrator\";}s:15:\"translated_role\";s:13:\"administrator\";s:7:\"is_cron\";b:0;s:7:\"is_rest\";b:0;s:9:\"is_xmlrpc\";b:0;s:10:\"is_wp_rest\";b:0;s:7:\"is_ajax\";b:0;s:11:\"is_wp_admin\";b:1;s:6:\"is_cli\";b:0;s:8:\"from_url\";s:147:\"http://itcamefrombeyondpulp.com/wp-admin/plugins.php?action=deactivate&plugin=jetpack%2Fjetpack.php&plugin_status=all&paged=1&s&_wpnonce=85cfab5870\";}}','no'),(240,'jpsq_sync-1563747226.770863-183210-20','a:6:{i:0;s:21:\"jetpack_sync_callable\";i:1;a:2:{i:0;s:28:\"has_file_system_write_access\";i:1;b:1;}i:2;i:1;i:3;d:1563747226.7707331180572509765625;i:4;b:0;i:5;a:14:{s:13:\"wpcom_user_id\";N;s:16:\"external_user_id\";i:1;s:12:\"display_name\";s:9:\"mphillips\";s:10:\"user_email\";s:28:\"phillips.editorial@gmail.com\";s:10:\"user_roles\";a:1:{i:0;s:13:\"administrator\";}s:15:\"translated_role\";s:13:\"administrator\";s:7:\"is_cron\";b:0;s:7:\"is_rest\";b:0;s:9:\"is_xmlrpc\";b:0;s:10:\"is_wp_rest\";b:0;s:7:\"is_ajax\";b:0;s:11:\"is_wp_admin\";b:1;s:6:\"is_cli\";b:0;s:8:\"from_url\";s:147:\"http://itcamefrombeyondpulp.com/wp-admin/plugins.php?action=deactivate&plugin=jetpack%2Fjetpack.php&plugin_status=all&paged=1&s&_wpnonce=85cfab5870\";}}','no'),(241,'jpsq_sync-1563747226.771497-183210-21','a:6:{i:0;s:21:\"jetpack_sync_callable\";i:1;a:2:{i:0;s:21:\"is_version_controlled\";i:1;b:0;}i:2;i:1;i:3;d:1563747226.77136898040771484375;i:4;b:0;i:5;a:14:{s:13:\"wpcom_user_id\";N;s:16:\"external_user_id\";i:1;s:12:\"display_name\";s:9:\"mphillips\";s:10:\"user_email\";s:28:\"phillips.editorial@gmail.com\";s:10:\"user_roles\";a:1:{i:0;s:13:\"administrator\";}s:15:\"translated_role\";s:13:\"administrator\";s:7:\"is_cron\";b:0;s:7:\"is_rest\";b:0;s:9:\"is_xmlrpc\";b:0;s:10:\"is_wp_rest\";b:0;s:7:\"is_ajax\";b:0;s:11:\"is_wp_admin\";b:1;s:6:\"is_cli\";b:0;s:8:\"from_url\";s:147:\"http://itcamefrombeyondpulp.com/wp-admin/plugins.php?action=deactivate&plugin=jetpack%2Fjetpack.php&plugin_status=all&paged=1&s&_wpnonce=85cfab5870\";}}','no'),(242,'jpsq_sync-1563747226.773245-183210-22','a:6:{i:0;s:21:\"jetpack_sync_callable\";i:1;a:2:{i:0;s:10:\"taxonomies\";i:1;a:6:{s:8:\"category\";O:8:\"stdClass\":24:{s:4:\"name\";s:8:\"category\";s:5:\"label\";s:10:\"Categories\";s:6:\"labels\";O:8:\"stdClass\":23:{s:4:\"name\";s:10:\"Categories\";s:13:\"singular_name\";s:8:\"Category\";s:12:\"search_items\";s:17:\"Search Categories\";s:13:\"popular_items\";N;s:9:\"all_items\";s:14:\"All Categories\";s:11:\"parent_item\";s:15:\"Parent Category\";s:17:\"parent_item_colon\";s:16:\"Parent Category:\";s:9:\"edit_item\";s:13:\"Edit Category\";s:9:\"view_item\";s:13:\"View Category\";s:11:\"update_item\";s:15:\"Update Category\";s:12:\"add_new_item\";s:16:\"Add New Category\";s:13:\"new_item_name\";s:17:\"New Category Name\";s:26:\"separate_items_with_commas\";N;s:19:\"add_or_remove_items\";N;s:21:\"choose_from_most_used\";N;s:9:\"not_found\";s:20:\"No categories found.\";s:8:\"no_terms\";s:13:\"No categories\";s:21:\"items_list_navigation\";s:26:\"Categories list navigation\";s:10:\"items_list\";s:15:\"Categories list\";s:9:\"most_used\";s:9:\"Most Used\";s:13:\"back_to_items\";s:25:\"&larr; Back to Categories\";s:9:\"menu_name\";s:10:\"Categories\";s:14:\"name_admin_bar\";s:8:\"category\";}s:11:\"description\";s:0:\"\";s:6:\"public\";b:1;s:18:\"publicly_queryable\";b:1;s:12:\"hierarchical\";b:1;s:7:\"show_ui\";b:1;s:12:\"show_in_menu\";b:1;s:17:\"show_in_nav_menus\";b:1;s:13:\"show_tagcloud\";b:1;s:18:\"show_in_quick_edit\";b:1;s:17:\"show_admin_column\";b:1;s:11:\"meta_box_cb\";s:24:\"post_categories_meta_box\";s:20:\"meta_box_sanitize_cb\";s:40:\"taxonomy_meta_box_sanitize_cb_checkboxes\";s:11:\"object_type\";a:1:{i:0;s:4:\"post\";}s:3:\"cap\";O:8:\"stdClass\":4:{s:12:\"manage_terms\";s:17:\"manage_categories\";s:10:\"edit_terms\";s:15:\"edit_categories\";s:12:\"delete_terms\";s:17:\"delete_categories\";s:12:\"assign_terms\";s:17:\"assign_categories\";}s:7:\"rewrite\";O:8:\"stdClass\":4:{s:10:\"with_front\";b:1;s:12:\"hierarchical\";b:1;s:7:\"ep_mask\";i:512;s:4:\"slug\";s:8:\"category\";}s:9:\"query_var\";s:13:\"category_name\";s:21:\"update_count_callback\";N;s:12:\"show_in_rest\";b:1;s:9:\"rest_base\";s:10:\"categories\";s:21:\"rest_controller_class\";s:24:\"WP_REST_Terms_Controller\";s:8:\"_builtin\";b:1;}s:8:\"post_tag\";O:8:\"stdClass\":24:{s:4:\"name\";s:8:\"post_tag\";s:5:\"label\";s:4:\"Tags\";s:6:\"labels\";O:8:\"stdClass\":23:{s:4:\"name\";s:4:\"Tags\";s:13:\"singular_name\";s:3:\"Tag\";s:12:\"search_items\";s:11:\"Search Tags\";s:13:\"popular_items\";s:12:\"Popular Tags\";s:9:\"all_items\";s:8:\"All Tags\";s:11:\"parent_item\";N;s:17:\"parent_item_colon\";N;s:9:\"edit_item\";s:8:\"Edit Tag\";s:9:\"view_item\";s:8:\"View Tag\";s:11:\"update_item\";s:10:\"Update Tag\";s:12:\"add_new_item\";s:11:\"Add New Tag\";s:13:\"new_item_name\";s:12:\"New Tag Name\";s:26:\"separate_items_with_commas\";s:25:\"Separate tags with commas\";s:19:\"add_or_remove_items\";s:18:\"Add or remove tags\";s:21:\"choose_from_most_used\";s:30:\"Choose from the most used tags\";s:9:\"not_found\";s:14:\"No tags found.\";s:8:\"no_terms\";s:7:\"No tags\";s:21:\"items_list_navigation\";s:20:\"Tags list navigation\";s:10:\"items_list\";s:9:\"Tags list\";s:9:\"most_used\";s:9:\"Most Used\";s:13:\"back_to_items\";s:19:\"&larr; Back to Tags\";s:9:\"menu_name\";s:4:\"Tags\";s:14:\"name_admin_bar\";s:8:\"post_tag\";}s:11:\"description\";s:0:\"\";s:6:\"public\";b:1;s:18:\"publicly_queryable\";b:1;s:12:\"hierarchical\";b:0;s:7:\"show_ui\";b:1;s:12:\"show_in_menu\";b:1;s:17:\"show_in_nav_menus\";b:1;s:13:\"show_tagcloud\";b:1;s:18:\"show_in_quick_edit\";b:1;s:17:\"show_admin_column\";b:1;s:11:\"meta_box_cb\";s:18:\"post_tags_meta_box\";s:20:\"meta_box_sanitize_cb\";s:35:\"taxonomy_meta_box_sanitize_cb_input\";s:11:\"object_type\";a:1:{i:0;s:4:\"post\";}s:3:\"cap\";O:8:\"stdClass\":4:{s:12:\"manage_terms\";s:16:\"manage_post_tags\";s:10:\"edit_terms\";s:14:\"edit_post_tags\";s:12:\"delete_terms\";s:16:\"delete_post_tags\";s:12:\"assign_terms\";s:16:\"assign_post_tags\";}s:7:\"rewrite\";O:8:\"stdClass\":4:{s:10:\"with_front\";b:1;s:12:\"hierarchical\";b:0;s:7:\"ep_mask\";i:1024;s:4:\"slug\";s:3:\"tag\";}s:9:\"query_var\";s:3:\"tag\";s:21:\"update_count_callback\";N;s:12:\"show_in_rest\";b:1;s:9:\"rest_base\";s:4:\"tags\";s:21:\"rest_controller_class\";s:24:\"WP_REST_Terms_Controller\";s:8:\"_builtin\";b:1;}s:8:\"nav_menu\";O:8:\"stdClass\":24:{s:4:\"name\";s:8:\"nav_menu\";s:5:\"label\";s:16:\"Navigation Menus\";s:6:\"labels\";O:8:\"stdClass\":24:{s:4:\"name\";s:16:\"Navigation Menus\";s:13:\"singular_name\";s:15:\"Navigation Menu\";s:12:\"search_items\";s:11:\"Search Tags\";s:13:\"popular_items\";s:12:\"Popular Tags\";s:9:\"all_items\";s:16:\"Navigation Menus\";s:11:\"parent_item\";N;s:17:\"parent_item_colon\";N;s:9:\"edit_item\";s:8:\"Edit Tag\";s:9:\"view_item\";s:8:\"View Tag\";s:11:\"update_item\";s:10:\"Update Tag\";s:12:\"add_new_item\";s:11:\"Add New Tag\";s:13:\"new_item_name\";s:12:\"New Tag Name\";s:26:\"separate_items_with_commas\";s:25:\"Separate tags with commas\";s:19:\"add_or_remove_items\";s:18:\"Add or remove tags\";s:21:\"choose_from_most_used\";s:30:\"Choose from the most used tags\";s:9:\"not_found\";s:14:\"No tags found.\";s:8:\"no_terms\";s:7:\"No tags\";s:21:\"items_list_navigation\";s:20:\"Tags list navigation\";s:10:\"items_list\";s:9:\"Tags list\";s:9:\"most_used\";s:9:\"Most Used\";s:13:\"back_to_items\";s:19:\"&larr; Back to Tags\";s:9:\"menu_name\";s:16:\"Navigation Menus\";s:14:\"name_admin_bar\";s:15:\"Navigation Menu\";s:8:\"archives\";s:16:\"Navigation Menus\";}s:11:\"description\";s:0:\"\";s:6:\"public\";b:0;s:18:\"publicly_queryable\";b:0;s:12:\"hierarchical\";b:0;s:7:\"show_ui\";b:0;s:12:\"show_in_menu\";b:0;s:17:\"show_in_nav_menus\";b:0;s:13:\"show_tagcloud\";b:0;s:18:\"show_in_quick_edit\";b:0;s:17:\"show_admin_column\";b:0;s:11:\"meta_box_cb\";s:18:\"post_tags_meta_box\";s:20:\"meta_box_sanitize_cb\";s:35:\"taxonomy_meta_box_sanitize_cb_input\";s:11:\"object_type\";a:1:{i:0;s:13:\"nav_menu_item\";}s:3:\"cap\";O:8:\"stdClass\":4:{s:12:\"manage_terms\";s:17:\"manage_categories\";s:10:\"edit_terms\";s:17:\"manage_categories\";s:12:\"delete_terms\";s:17:\"manage_categories\";s:12:\"assign_terms\";s:10:\"edit_posts\";}s:7:\"rewrite\";b:0;s:9:\"query_var\";b:0;s:21:\"update_count_callback\";N;s:12:\"show_in_rest\";b:0;s:9:\"rest_base\";b:0;s:21:\"rest_controller_class\";N;s:8:\"_builtin\";b:1;}s:13:\"link_category\";O:8:\"stdClass\":24:{s:4:\"name\";s:13:\"link_category\";s:5:\"label\";s:15:\"Link Categories\";s:6:\"labels\";O:8:\"stdClass\":24:{s:4:\"name\";s:15:\"Link Categories\";s:13:\"singular_name\";s:13:\"Link Category\";s:12:\"search_items\";s:22:\"Search Link Categories\";s:13:\"popular_items\";N;s:9:\"all_items\";s:19:\"All Link Categories\";s:11:\"parent_item\";N;s:17:\"parent_item_colon\";N;s:9:\"edit_item\";s:18:\"Edit Link Category\";s:9:\"view_item\";s:8:\"View Tag\";s:11:\"update_item\";s:20:\"Update Link Category\";s:12:\"add_new_item\";s:21:\"Add New Link Category\";s:13:\"new_item_name\";s:22:\"New Link Category Name\";s:26:\"separate_items_with_commas\";N;s:19:\"add_or_remove_items\";N;s:21:\"choose_from_most_used\";N;s:9:\"not_found\";s:14:\"No tags found.\";s:8:\"no_terms\";s:7:\"No tags\";s:21:\"items_list_navigation\";s:20:\"Tags list navigation\";s:10:\"items_list\";s:9:\"Tags list\";s:9:\"most_used\";s:9:\"Most Used\";s:13:\"back_to_items\";s:30:\"&larr; Back to Link Categories\";s:9:\"menu_name\";s:15:\"Link Categories\";s:14:\"name_admin_bar\";s:13:\"Link Category\";s:8:\"archives\";s:19:\"All Link Categories\";}s:11:\"description\";s:0:\"\";s:6:\"public\";b:0;s:18:\"publicly_queryable\";b:0;s:12:\"hierarchical\";b:0;s:7:\"show_ui\";b:1;s:12:\"show_in_menu\";b:1;s:17:\"show_in_nav_menus\";b:0;s:13:\"show_tagcloud\";b:1;s:18:\"show_in_quick_edit\";b:1;s:17:\"show_admin_column\";b:0;s:11:\"meta_box_cb\";s:18:\"post_tags_meta_box\";s:20:\"meta_box_sanitize_cb\";s:35:\"taxonomy_meta_box_sanitize_cb_input\";s:11:\"object_type\";a:1:{i:0;s:4:\"link\";}s:3:\"cap\";O:8:\"stdClass\":4:{s:12:\"manage_terms\";s:12:\"manage_links\";s:10:\"edit_terms\";s:12:\"manage_links\";s:12:\"delete_terms\";s:12:\"manage_links\";s:12:\"assign_terms\";s:12:\"manage_links\";}s:7:\"rewrite\";b:0;s:9:\"query_var\";b:0;s:21:\"update_count_callback\";N;s:12:\"show_in_rest\";b:0;s:9:\"rest_base\";b:0;s:21:\"rest_controller_class\";N;s:8:\"_builtin\";b:1;}s:11:\"post_format\";O:8:\"stdClass\":24:{s:4:\"name\";s:11:\"post_format\";s:5:\"label\";s:7:\"Formats\";s:6:\"labels\";O:8:\"stdClass\":24:{s:4:\"name\";s:7:\"Formats\";s:13:\"singular_name\";s:6:\"Format\";s:12:\"search_items\";s:11:\"Search Tags\";s:13:\"popular_items\";s:12:\"Popular Tags\";s:9:\"all_items\";s:7:\"Formats\";s:11:\"parent_item\";N;s:17:\"parent_item_colon\";N;s:9:\"edit_item\";s:8:\"Edit Tag\";s:9:\"view_item\";s:8:\"View Tag\";s:11:\"update_item\";s:10:\"Update Tag\";s:12:\"add_new_item\";s:11:\"Add New Tag\";s:13:\"new_item_name\";s:12:\"New Tag Name\";s:26:\"separate_items_with_commas\";s:25:\"Separate tags with commas\";s:19:\"add_or_remove_items\";s:18:\"Add or remove tags\";s:21:\"choose_from_most_used\";s:30:\"Choose from the most used tags\";s:9:\"not_found\";s:14:\"No tags found.\";s:8:\"no_terms\";s:7:\"No tags\";s:21:\"items_list_navigation\";s:20:\"Tags list navigation\";s:10:\"items_list\";s:9:\"Tags list\";s:9:\"most_used\";s:9:\"Most Used\";s:13:\"back_to_items\";s:19:\"&larr; Back to Tags\";s:9:\"menu_name\";s:7:\"Formats\";s:14:\"name_admin_bar\";s:6:\"Format\";s:8:\"archives\";s:7:\"Formats\";}s:11:\"description\";s:0:\"\";s:6:\"public\";b:1;s:18:\"publicly_queryable\";b:1;s:12:\"hierarchical\";b:0;s:7:\"show_ui\";b:0;s:12:\"show_in_menu\";b:0;s:17:\"show_in_nav_menus\";b:0;s:13:\"show_tagcloud\";b:0;s:18:\"show_in_quick_edit\";b:0;s:17:\"show_admin_column\";b:0;s:11:\"meta_box_cb\";s:18:\"post_tags_meta_box\";s:20:\"meta_box_sanitize_cb\";s:35:\"taxonomy_meta_box_sanitize_cb_input\";s:11:\"object_type\";a:1:{i:0;s:4:\"post\";}s:3:\"cap\";O:8:\"stdClass\":4:{s:12:\"manage_terms\";s:17:\"manage_categories\";s:10:\"edit_terms\";s:17:\"manage_categories\";s:12:\"delete_terms\";s:17:\"manage_categories\";s:12:\"assign_terms\";s:10:\"edit_posts\";}s:7:\"rewrite\";O:8:\"stdClass\":4:{s:10:\"with_front\";b:1;s:12:\"hierarchical\";b:0;s:7:\"ep_mask\";i:0;s:4:\"slug\";s:4:\"type\";}s:9:\"query_var\";s:11:\"post_format\";s:21:\"update_count_callback\";N;s:12:\"show_in_rest\";b:0;s:9:\"rest_base\";b:0;s:21:\"rest_controller_class\";N;s:8:\"_builtin\";b:1;}s:16:\"wpforms_log_type\";O:8:\"stdClass\":24:{s:4:\"name\";s:16:\"wpforms_log_type\";s:5:\"label\";s:4:\"Tags\";s:6:\"labels\";O:8:\"stdClass\":23:{s:4:\"name\";s:4:\"Tags\";s:13:\"singular_name\";s:3:\"Tag\";s:12:\"search_items\";s:11:\"Search Tags\";s:13:\"popular_items\";s:12:\"Popular Tags\";s:9:\"all_items\";s:8:\"All Tags\";s:11:\"parent_item\";N;s:17:\"parent_item_colon\";N;s:9:\"edit_item\";s:8:\"Edit Tag\";s:9:\"view_item\";s:8:\"View Tag\";s:11:\"update_item\";s:10:\"Update Tag\";s:12:\"add_new_item\";s:11:\"Add New Tag\";s:13:\"new_item_name\";s:12:\"New Tag Name\";s:26:\"separate_items_with_commas\";s:25:\"Separate tags with commas\";s:19:\"add_or_remove_items\";s:18:\"Add or remove tags\";s:21:\"choose_from_most_used\";s:30:\"Choose from the most used tags\";s:9:\"not_found\";s:14:\"No tags found.\";s:8:\"no_terms\";s:7:\"No tags\";s:21:\"items_list_navigation\";s:20:\"Tags list navigation\";s:10:\"items_list\";s:9:\"Tags list\";s:9:\"most_used\";s:9:\"Most Used\";s:13:\"back_to_items\";s:19:\"&larr; Back to Tags\";s:9:\"menu_name\";s:4:\"Tags\";s:14:\"name_admin_bar\";s:16:\"wpforms_log_type\";}s:11:\"description\";s:0:\"\";s:6:\"public\";b:0;s:18:\"publicly_queryable\";b:0;s:12:\"hierarchical\";b:0;s:7:\"show_ui\";b:0;s:12:\"show_in_menu\";b:0;s:17:\"show_in_nav_menus\";b:0;s:13:\"show_tagcloud\";b:0;s:18:\"show_in_quick_edit\";b:0;s:17:\"show_admin_column\";b:0;s:11:\"meta_box_cb\";s:18:\"post_tags_meta_box\";s:20:\"meta_box_sanitize_cb\";s:35:\"taxonomy_meta_box_sanitize_cb_input\";s:11:\"object_type\";a:1:{i:0;s:11:\"wpforms_log\";}s:3:\"cap\";O:8:\"stdClass\":4:{s:12:\"manage_terms\";s:17:\"manage_categories\";s:10:\"edit_terms\";s:17:\"manage_categories\";s:12:\"delete_terms\";s:17:\"manage_categories\";s:12:\"assign_terms\";s:10:\"edit_posts\";}s:7:\"rewrite\";O:8:\"stdClass\":5:{s:10:\"with_front\";b:1;s:12:\"hierarchical\";b:0;s:7:\"ep_mask\";i:0;s:1:\"0\";s:0:\"\";s:4:\"slug\";s:16:\"wpforms_log_type\";}s:9:\"query_var\";s:16:\"wpforms_log_type\";s:21:\"update_count_callback\";N;s:12:\"show_in_rest\";b:0;s:9:\"rest_base\";b:0;s:21:\"rest_controller_class\";N;s:8:\"_builtin\";b:0;}}}i:2;i:1;i:3;d:1563747226.773108959197998046875;i:4;b:0;i:5;a:14:{s:13:\"wpcom_user_id\";N;s:16:\"external_user_id\";i:1;s:12:\"display_name\";s:9:\"mphillips\";s:10:\"user_email\";s:28:\"phillips.editorial@gmail.com\";s:10:\"user_roles\";a:1:{i:0;s:13:\"administrator\";}s:15:\"translated_role\";s:13:\"administrator\";s:7:\"is_cron\";b:0;s:7:\"is_rest\";b:0;s:9:\"is_xmlrpc\";b:0;s:10:\"is_wp_rest\";b:0;s:7:\"is_ajax\";b:0;s:11:\"is_wp_admin\";b:1;s:6:\"is_cli\";b:0;s:8:\"from_url\";s:147:\"http://itcamefrombeyondpulp.com/wp-admin/plugins.php?action=deactivate&plugin=jetpack%2Fjetpack.php&plugin_status=all&paged=1&s&_wpnonce=85cfab5870\";}}','no'),(243,'jpsq_sync-1563747226.777641-183210-23','a:6:{i:0;s:21:\"jetpack_sync_callable\";i:1;a:2:{i:0;s:10:\"post_types\";i:1;a:13:{s:4:\"post\";O:8:\"stdClass\":26:{s:4:\"name\";s:4:\"post\";s:5:\"label\";s:5:\"Posts\";s:6:\"labels\";O:8:\"stdClass\":31:{s:4:\"name\";s:5:\"Posts\";s:13:\"singular_name\";s:4:\"Post\";s:7:\"add_new\";s:7:\"Add New\";s:12:\"add_new_item\";s:12:\"Add New Post\";s:9:\"edit_item\";s:9:\"Edit Post\";s:8:\"new_item\";s:8:\"New Post\";s:9:\"view_item\";s:9:\"View Post\";s:10:\"view_items\";s:10:\"View Posts\";s:12:\"search_items\";s:12:\"Search Posts\";s:9:\"not_found\";s:15:\"No posts found.\";s:18:\"not_found_in_trash\";s:24:\"No posts found in Trash.\";s:17:\"parent_item_colon\";N;s:9:\"all_items\";s:9:\"All Posts\";s:8:\"archives\";s:13:\"Post Archives\";s:10:\"attributes\";s:15:\"Post Attributes\";s:16:\"insert_into_item\";s:16:\"Insert into post\";s:21:\"uploaded_to_this_item\";s:21:\"Uploaded to this post\";s:14:\"featured_image\";s:14:\"Featured Image\";s:18:\"set_featured_image\";s:18:\"Set featured image\";s:21:\"remove_featured_image\";s:21:\"Remove featured image\";s:18:\"use_featured_image\";s:21:\"Use as featured image\";s:17:\"filter_items_list\";s:17:\"Filter posts list\";s:21:\"items_list_navigation\";s:21:\"Posts list navigation\";s:10:\"items_list\";s:10:\"Posts list\";s:14:\"item_published\";s:15:\"Post published.\";s:24:\"item_published_privately\";s:25:\"Post published privately.\";s:22:\"item_reverted_to_draft\";s:23:\"Post reverted to draft.\";s:14:\"item_scheduled\";s:15:\"Post scheduled.\";s:12:\"item_updated\";s:13:\"Post updated.\";s:9:\"menu_name\";s:5:\"Posts\";s:14:\"name_admin_bar\";s:4:\"Post\";}s:11:\"description\";s:0:\"\";s:6:\"public\";b:1;s:12:\"hierarchical\";b:0;s:19:\"exclude_from_search\";b:0;s:18:\"publicly_queryable\";b:1;s:7:\"show_ui\";b:1;s:12:\"show_in_menu\";b:1;s:17:\"show_in_nav_menus\";b:1;s:17:\"show_in_admin_bar\";b:1;s:13:\"menu_position\";i:5;s:15:\"capability_type\";s:4:\"post\";s:3:\"cap\";O:8:\"stdClass\":15:{s:9:\"edit_post\";s:9:\"edit_post\";s:9:\"read_post\";s:9:\"read_post\";s:11:\"delete_post\";s:11:\"delete_post\";s:10:\"edit_posts\";s:10:\"edit_posts\";s:17:\"edit_others_posts\";s:17:\"edit_others_posts\";s:13:\"publish_posts\";s:13:\"publish_posts\";s:18:\"read_private_posts\";s:18:\"read_private_posts\";s:4:\"read\";s:4:\"read\";s:12:\"delete_posts\";s:12:\"delete_posts\";s:20:\"delete_private_posts\";s:20:\"delete_private_posts\";s:22:\"delete_published_posts\";s:22:\"delete_published_posts\";s:19:\"delete_others_posts\";s:19:\"delete_others_posts\";s:18:\"edit_private_posts\";s:18:\"edit_private_posts\";s:20:\"edit_published_posts\";s:20:\"edit_published_posts\";s:12:\"create_posts\";s:10:\"edit_posts\";}s:12:\"map_meta_cap\";b:1;s:10:\"taxonomies\";a:0:{}s:11:\"has_archive\";b:0;s:7:\"rewrite\";b:0;s:9:\"query_var\";b:0;s:10:\"can_export\";b:1;s:16:\"delete_with_user\";b:1;s:12:\"show_in_rest\";b:1;s:9:\"rest_base\";s:5:\"posts\";s:8:\"_builtin\";b:1;s:10:\"_edit_link\";s:16:\"post.php?post=%d\";}s:4:\"page\";O:8:\"stdClass\":26:{s:4:\"name\";s:4:\"page\";s:5:\"label\";s:5:\"Pages\";s:6:\"labels\";O:8:\"stdClass\":31:{s:4:\"name\";s:5:\"Pages\";s:13:\"singular_name\";s:4:\"Page\";s:7:\"add_new\";s:7:\"Add New\";s:12:\"add_new_item\";s:12:\"Add New Page\";s:9:\"edit_item\";s:9:\"Edit Page\";s:8:\"new_item\";s:8:\"New Page\";s:9:\"view_item\";s:9:\"View Page\";s:10:\"view_items\";s:10:\"View Pages\";s:12:\"search_items\";s:12:\"Search Pages\";s:9:\"not_found\";s:15:\"No pages found.\";s:18:\"not_found_in_trash\";s:24:\"No pages found in Trash.\";s:17:\"parent_item_colon\";s:12:\"Parent Page:\";s:9:\"all_items\";s:9:\"All Pages\";s:8:\"archives\";s:13:\"Page Archives\";s:10:\"attributes\";s:15:\"Page Attributes\";s:16:\"insert_into_item\";s:16:\"Insert into page\";s:21:\"uploaded_to_this_item\";s:21:\"Uploaded to this page\";s:14:\"featured_image\";s:14:\"Featured Image\";s:18:\"set_featured_image\";s:18:\"Set featured image\";s:21:\"remove_featured_image\";s:21:\"Remove featured image\";s:18:\"use_featured_image\";s:21:\"Use as featured image\";s:17:\"filter_items_list\";s:17:\"Filter pages list\";s:21:\"items_list_navigation\";s:21:\"Pages list navigation\";s:10:\"items_list\";s:10:\"Pages list\";s:14:\"item_published\";s:15:\"Page published.\";s:24:\"item_published_privately\";s:25:\"Page published privately.\";s:22:\"item_reverted_to_draft\";s:23:\"Page reverted to draft.\";s:14:\"item_scheduled\";s:15:\"Page scheduled.\";s:12:\"item_updated\";s:13:\"Page updated.\";s:9:\"menu_name\";s:5:\"Pages\";s:14:\"name_admin_bar\";s:4:\"Page\";}s:11:\"description\";s:0:\"\";s:6:\"public\";b:1;s:12:\"hierarchical\";b:1;s:19:\"exclude_from_search\";b:0;s:18:\"publicly_queryable\";b:0;s:7:\"show_ui\";b:1;s:12:\"show_in_menu\";b:1;s:17:\"show_in_nav_menus\";b:1;s:17:\"show_in_admin_bar\";b:1;s:13:\"menu_position\";i:20;s:15:\"capability_type\";s:4:\"page\";s:3:\"cap\";O:8:\"stdClass\":15:{s:9:\"edit_post\";s:9:\"edit_page\";s:9:\"read_post\";s:9:\"read_page\";s:11:\"delete_post\";s:11:\"delete_page\";s:10:\"edit_posts\";s:10:\"edit_pages\";s:17:\"edit_others_posts\";s:17:\"edit_others_pages\";s:13:\"publish_posts\";s:13:\"publish_pages\";s:18:\"read_private_posts\";s:18:\"read_private_pages\";s:4:\"read\";s:4:\"read\";s:12:\"delete_posts\";s:12:\"delete_pages\";s:20:\"delete_private_posts\";s:20:\"delete_private_pages\";s:22:\"delete_published_posts\";s:22:\"delete_published_pages\";s:19:\"delete_others_posts\";s:19:\"delete_others_pages\";s:18:\"edit_private_posts\";s:18:\"edit_private_pages\";s:20:\"edit_published_posts\";s:20:\"edit_published_pages\";s:12:\"create_posts\";s:10:\"edit_pages\";}s:12:\"map_meta_cap\";b:1;s:10:\"taxonomies\";a:0:{}s:11:\"has_archive\";b:0;s:7:\"rewrite\";b:0;s:9:\"query_var\";b:0;s:10:\"can_export\";b:1;s:16:\"delete_with_user\";b:1;s:12:\"show_in_rest\";b:1;s:9:\"rest_base\";s:5:\"pages\";s:8:\"_builtin\";b:1;s:10:\"_edit_link\";s:16:\"post.php?post=%d\";}s:10:\"attachment\";O:8:\"stdClass\":25:{s:4:\"name\";s:10:\"attachment\";s:5:\"label\";s:5:\"Media\";s:6:\"labels\";O:8:\"stdClass\":31:{s:4:\"name\";s:5:\"Media\";s:13:\"singular_name\";s:5:\"Media\";s:7:\"add_new\";s:7:\"Add New\";s:12:\"add_new_item\";s:12:\"Add New Post\";s:9:\"edit_item\";s:10:\"Edit Media\";s:8:\"new_item\";s:8:\"New Post\";s:9:\"view_item\";s:20:\"View Attachment Page\";s:10:\"view_items\";s:10:\"View Posts\";s:12:\"search_items\";s:12:\"Search Posts\";s:9:\"not_found\";s:15:\"No posts found.\";s:18:\"not_found_in_trash\";s:24:\"No posts found in Trash.\";s:17:\"parent_item_colon\";N;s:9:\"all_items\";s:5:\"Media\";s:8:\"archives\";s:5:\"Media\";s:10:\"attributes\";s:21:\"Attachment Attributes\";s:16:\"insert_into_item\";s:16:\"Insert into post\";s:21:\"uploaded_to_this_item\";s:21:\"Uploaded to this post\";s:14:\"featured_image\";s:14:\"Featured Image\";s:18:\"set_featured_image\";s:18:\"Set featured image\";s:21:\"remove_featured_image\";s:21:\"Remove featured image\";s:18:\"use_featured_image\";s:21:\"Use as featured image\";s:17:\"filter_items_list\";s:17:\"Filter posts list\";s:21:\"items_list_navigation\";s:21:\"Posts list navigation\";s:10:\"items_list\";s:10:\"Posts list\";s:14:\"item_published\";s:15:\"Post published.\";s:24:\"item_published_privately\";s:25:\"Post published privately.\";s:22:\"item_reverted_to_draft\";s:23:\"Post reverted to draft.\";s:14:\"item_scheduled\";s:15:\"Post scheduled.\";s:12:\"item_updated\";s:13:\"Post updated.\";s:9:\"menu_name\";s:5:\"Media\";s:14:\"name_admin_bar\";s:5:\"Media\";}s:11:\"description\";s:0:\"\";s:6:\"public\";b:1;s:12:\"hierarchical\";b:0;s:19:\"exclude_from_search\";b:0;s:18:\"publicly_queryable\";b:1;s:7:\"show_ui\";b:1;s:12:\"show_in_menu\";b:1;s:17:\"show_in_nav_menus\";b:0;s:17:\"show_in_admin_bar\";b:1;s:15:\"capability_type\";s:4:\"post\";s:3:\"cap\";O:8:\"stdClass\":15:{s:9:\"edit_post\";s:9:\"edit_post\";s:9:\"read_post\";s:9:\"read_post\";s:11:\"delete_post\";s:11:\"delete_post\";s:10:\"edit_posts\";s:10:\"edit_posts\";s:17:\"edit_others_posts\";s:17:\"edit_others_posts\";s:13:\"publish_posts\";s:13:\"publish_posts\";s:18:\"read_private_posts\";s:18:\"read_private_posts\";s:4:\"read\";s:4:\"read\";s:12:\"delete_posts\";s:12:\"delete_posts\";s:20:\"delete_private_posts\";s:20:\"delete_private_posts\";s:22:\"delete_published_posts\";s:22:\"delete_published_posts\";s:19:\"delete_others_posts\";s:19:\"delete_others_posts\";s:18:\"edit_private_posts\";s:18:\"edit_private_posts\";s:20:\"edit_published_posts\";s:20:\"edit_published_posts\";s:12:\"create_posts\";s:12:\"upload_files\";}s:12:\"map_meta_cap\";b:1;s:10:\"taxonomies\";a:0:{}s:11:\"has_archive\";b:0;s:7:\"rewrite\";b:0;s:9:\"query_var\";b:0;s:10:\"can_export\";b:1;s:16:\"delete_with_user\";b:1;s:12:\"show_in_rest\";b:1;s:9:\"rest_base\";s:5:\"media\";s:8:\"_builtin\";b:1;s:10:\"_edit_link\";s:16:\"post.php?post=%d\";}s:8:\"revision\";O:8:\"stdClass\":25:{s:4:\"name\";s:8:\"revision\";s:5:\"label\";s:9:\"Revisions\";s:6:\"labels\";O:8:\"stdClass\":31:{s:4:\"name\";s:9:\"Revisions\";s:13:\"singular_name\";s:8:\"Revision\";s:7:\"add_new\";s:7:\"Add New\";s:12:\"add_new_item\";s:12:\"Add New Post\";s:9:\"edit_item\";s:9:\"Edit Post\";s:8:\"new_item\";s:8:\"New Post\";s:9:\"view_item\";s:9:\"View Post\";s:10:\"view_items\";s:10:\"View Posts\";s:12:\"search_items\";s:12:\"Search Posts\";s:9:\"not_found\";s:15:\"No posts found.\";s:18:\"not_found_in_trash\";s:24:\"No posts found in Trash.\";s:17:\"parent_item_colon\";N;s:9:\"all_items\";s:9:\"Revisions\";s:8:\"archives\";s:9:\"Revisions\";s:10:\"attributes\";s:15:\"Post Attributes\";s:16:\"insert_into_item\";s:16:\"Insert into post\";s:21:\"uploaded_to_this_item\";s:21:\"Uploaded to this post\";s:14:\"featured_image\";s:14:\"Featured Image\";s:18:\"set_featured_image\";s:18:\"Set featured image\";s:21:\"remove_featured_image\";s:21:\"Remove featured image\";s:18:\"use_featured_image\";s:21:\"Use as featured image\";s:17:\"filter_items_list\";s:17:\"Filter posts list\";s:21:\"items_list_navigation\";s:21:\"Posts list navigation\";s:10:\"items_list\";s:10:\"Posts list\";s:14:\"item_published\";s:15:\"Post published.\";s:24:\"item_published_privately\";s:25:\"Post published privately.\";s:22:\"item_reverted_to_draft\";s:23:\"Post reverted to draft.\";s:14:\"item_scheduled\";s:15:\"Post scheduled.\";s:12:\"item_updated\";s:13:\"Post updated.\";s:9:\"menu_name\";s:9:\"Revisions\";s:14:\"name_admin_bar\";s:8:\"Revision\";}s:11:\"description\";s:0:\"\";s:6:\"public\";b:0;s:12:\"hierarchical\";b:0;s:19:\"exclude_from_search\";b:1;s:18:\"publicly_queryable\";b:0;s:7:\"show_ui\";b:0;s:12:\"show_in_menu\";b:0;s:17:\"show_in_nav_menus\";b:0;s:17:\"show_in_admin_bar\";b:0;s:15:\"capability_type\";s:4:\"post\";s:3:\"cap\";O:8:\"stdClass\":15:{s:9:\"edit_post\";s:9:\"edit_post\";s:9:\"read_post\";s:9:\"read_post\";s:11:\"delete_post\";s:11:\"delete_post\";s:10:\"edit_posts\";s:10:\"edit_posts\";s:17:\"edit_others_posts\";s:17:\"edit_others_posts\";s:13:\"publish_posts\";s:13:\"publish_posts\";s:18:\"read_private_posts\";s:18:\"read_private_posts\";s:4:\"read\";s:4:\"read\";s:12:\"delete_posts\";s:12:\"delete_posts\";s:20:\"delete_private_posts\";s:20:\"delete_private_posts\";s:22:\"delete_published_posts\";s:22:\"delete_published_posts\";s:19:\"delete_others_posts\";s:19:\"delete_others_posts\";s:18:\"edit_private_posts\";s:18:\"edit_private_posts\";s:20:\"edit_published_posts\";s:20:\"edit_published_posts\";s:12:\"create_posts\";s:10:\"edit_posts\";}s:12:\"map_meta_cap\";b:1;s:10:\"taxonomies\";a:0:{}s:11:\"has_archive\";b:0;s:7:\"rewrite\";b:0;s:9:\"query_var\";b:0;s:10:\"can_export\";b:0;s:16:\"delete_with_user\";b:1;s:12:\"show_in_rest\";b:0;s:9:\"rest_base\";b:0;s:8:\"_builtin\";b:1;s:10:\"_edit_link\";s:24:\"revision.php?revision=%d\";}s:13:\"nav_menu_item\";O:8:\"stdClass\":26:{s:4:\"name\";s:13:\"nav_menu_item\";s:5:\"label\";s:21:\"Navigation Menu Items\";s:6:\"labels\";O:8:\"stdClass\":31:{s:4:\"name\";s:21:\"Navigation Menu Items\";s:13:\"singular_name\";s:20:\"Navigation Menu Item\";s:7:\"add_new\";s:7:\"Add New\";s:12:\"add_new_item\";s:12:\"Add New Post\";s:9:\"edit_item\";s:9:\"Edit Post\";s:8:\"new_item\";s:8:\"New Post\";s:9:\"view_item\";s:9:\"View Post\";s:10:\"view_items\";s:10:\"View Posts\";s:12:\"search_items\";s:12:\"Search Posts\";s:9:\"not_found\";s:15:\"No posts found.\";s:18:\"not_found_in_trash\";s:24:\"No posts found in Trash.\";s:17:\"parent_item_colon\";N;s:9:\"all_items\";s:21:\"Navigation Menu Items\";s:8:\"archives\";s:21:\"Navigation Menu Items\";s:10:\"attributes\";s:15:\"Post Attributes\";s:16:\"insert_into_item\";s:16:\"Insert into post\";s:21:\"uploaded_to_this_item\";s:21:\"Uploaded to this post\";s:14:\"featured_image\";s:14:\"Featured Image\";s:18:\"set_featured_image\";s:18:\"Set featured image\";s:21:\"remove_featured_image\";s:21:\"Remove featured image\";s:18:\"use_featured_image\";s:21:\"Use as featured image\";s:17:\"filter_items_list\";s:17:\"Filter posts list\";s:21:\"items_list_navigation\";s:21:\"Posts list navigation\";s:10:\"items_list\";s:10:\"Posts list\";s:14:\"item_published\";s:15:\"Post published.\";s:24:\"item_published_privately\";s:25:\"Post published privately.\";s:22:\"item_reverted_to_draft\";s:23:\"Post reverted to draft.\";s:14:\"item_scheduled\";s:15:\"Post scheduled.\";s:12:\"item_updated\";s:13:\"Post updated.\";s:9:\"menu_name\";s:21:\"Navigation Menu Items\";s:14:\"name_admin_bar\";s:20:\"Navigation Menu Item\";}s:11:\"description\";s:0:\"\";s:6:\"public\";b:0;s:12:\"hierarchical\";b:0;s:19:\"exclude_from_search\";b:1;s:18:\"publicly_queryable\";b:0;s:7:\"show_ui\";b:0;s:12:\"show_in_menu\";b:0;s:17:\"show_in_nav_menus\";b:0;s:17:\"show_in_admin_bar\";b:0;s:8:\"supports\";a:0:{}s:15:\"capability_type\";s:4:\"post\";s:3:\"cap\";O:8:\"stdClass\":15:{s:9:\"edit_post\";s:9:\"edit_post\";s:9:\"read_post\";s:9:\"read_post\";s:11:\"delete_post\";s:11:\"delete_post\";s:10:\"edit_posts\";s:10:\"edit_posts\";s:17:\"edit_others_posts\";s:17:\"edit_others_posts\";s:13:\"publish_posts\";s:13:\"publish_posts\";s:18:\"read_private_posts\";s:18:\"read_private_posts\";s:4:\"read\";s:4:\"read\";s:12:\"delete_posts\";s:12:\"delete_posts\";s:20:\"delete_private_posts\";s:20:\"delete_private_posts\";s:22:\"delete_published_posts\";s:22:\"delete_published_posts\";s:19:\"delete_others_posts\";s:19:\"delete_others_posts\";s:18:\"edit_private_posts\";s:18:\"edit_private_posts\";s:20:\"edit_published_posts\";s:20:\"edit_published_posts\";s:12:\"create_posts\";s:10:\"edit_posts\";}s:12:\"map_meta_cap\";b:1;s:10:\"taxonomies\";a:0:{}s:11:\"has_archive\";b:0;s:7:\"rewrite\";b:0;s:9:\"query_var\";b:0;s:10:\"can_export\";b:1;s:16:\"delete_with_user\";b:0;s:12:\"show_in_rest\";b:0;s:9:\"rest_base\";b:0;s:8:\"_builtin\";b:1;s:10:\"_edit_link\";s:0:\"\";}s:10:\"custom_css\";O:8:\"stdClass\":25:{s:4:\"name\";s:10:\"custom_css\";s:5:\"label\";s:10:\"Custom CSS\";s:6:\"labels\";O:8:\"stdClass\":31:{s:4:\"name\";s:10:\"Custom CSS\";s:13:\"singular_name\";s:10:\"Custom CSS\";s:7:\"add_new\";s:7:\"Add New\";s:12:\"add_new_item\";s:12:\"Add New Post\";s:9:\"edit_item\";s:9:\"Edit Post\";s:8:\"new_item\";s:8:\"New Post\";s:9:\"view_item\";s:9:\"View Post\";s:10:\"view_items\";s:10:\"View Posts\";s:12:\"search_items\";s:12:\"Search Posts\";s:9:\"not_found\";s:15:\"No posts found.\";s:18:\"not_found_in_trash\";s:24:\"No posts found in Trash.\";s:17:\"parent_item_colon\";N;s:9:\"all_items\";s:10:\"Custom CSS\";s:8:\"archives\";s:10:\"Custom CSS\";s:10:\"attributes\";s:15:\"Post Attributes\";s:16:\"insert_into_item\";s:16:\"Insert into post\";s:21:\"uploaded_to_this_item\";s:21:\"Uploaded to this post\";s:14:\"featured_image\";s:14:\"Featured Image\";s:18:\"set_featured_image\";s:18:\"Set featured image\";s:21:\"remove_featured_image\";s:21:\"Remove featured image\";s:18:\"use_featured_image\";s:21:\"Use as featured image\";s:17:\"filter_items_list\";s:17:\"Filter posts list\";s:21:\"items_list_navigation\";s:21:\"Posts list navigation\";s:10:\"items_list\";s:10:\"Posts list\";s:14:\"item_published\";s:15:\"Post published.\";s:24:\"item_published_privately\";s:25:\"Post published privately.\";s:22:\"item_reverted_to_draft\";s:23:\"Post reverted to draft.\";s:14:\"item_scheduled\";s:15:\"Post scheduled.\";s:12:\"item_updated\";s:13:\"Post updated.\";s:9:\"menu_name\";s:10:\"Custom CSS\";s:14:\"name_admin_bar\";s:10:\"Custom CSS\";}s:11:\"description\";s:0:\"\";s:6:\"public\";b:0;s:12:\"hierarchical\";b:0;s:19:\"exclude_from_search\";b:1;s:18:\"publicly_queryable\";b:0;s:7:\"show_ui\";b:0;s:12:\"show_in_menu\";b:0;s:17:\"show_in_nav_menus\";b:0;s:17:\"show_in_admin_bar\";b:0;s:15:\"capability_type\";s:4:\"post\";s:3:\"cap\";O:8:\"stdClass\":13:{s:9:\"edit_post\";s:8:\"edit_css\";s:9:\"read_post\";s:4:\"read\";s:11:\"delete_post\";s:18:\"edit_theme_options\";s:10:\"edit_posts\";s:8:\"edit_css\";s:17:\"edit_others_posts\";s:8:\"edit_css\";s:13:\"publish_posts\";s:18:\"edit_theme_options\";s:18:\"read_private_posts\";s:4:\"read\";s:12:\"delete_posts\";s:18:\"edit_theme_options\";s:22:\"delete_published_posts\";s:18:\"edit_theme_options\";s:20:\"delete_private_posts\";s:18:\"edit_theme_options\";s:19:\"delete_others_posts\";s:18:\"edit_theme_options\";s:20:\"edit_published_posts\";s:8:\"edit_css\";s:12:\"create_posts\";s:8:\"edit_css\";}s:12:\"map_meta_cap\";b:0;s:10:\"taxonomies\";a:0:{}s:11:\"has_archive\";b:0;s:7:\"rewrite\";b:0;s:9:\"query_var\";b:0;s:10:\"can_export\";b:1;s:16:\"delete_with_user\";b:0;s:12:\"show_in_rest\";b:0;s:9:\"rest_base\";b:0;s:8:\"_builtin\";b:1;s:10:\"_edit_link\";s:0:\"\";}s:19:\"customize_changeset\";O:8:\"stdClass\":25:{s:4:\"name\";s:19:\"customize_changeset\";s:5:\"label\";s:10:\"Changesets\";s:6:\"labels\";O:8:\"stdClass\":31:{s:4:\"name\";s:10:\"Changesets\";s:13:\"singular_name\";s:9:\"Changeset\";s:7:\"add_new\";s:7:\"Add New\";s:12:\"add_new_item\";s:17:\"Add New Changeset\";s:9:\"edit_item\";s:14:\"Edit Changeset\";s:8:\"new_item\";s:13:\"New Changeset\";s:9:\"view_item\";s:14:\"View Changeset\";s:10:\"view_items\";s:10:\"View Posts\";s:12:\"search_items\";s:17:\"Search Changesets\";s:9:\"not_found\";s:20:\"No changesets found.\";s:18:\"not_found_in_trash\";s:29:\"No changesets found in Trash.\";s:17:\"parent_item_colon\";N;s:9:\"all_items\";s:14:\"All Changesets\";s:8:\"archives\";s:14:\"All Changesets\";s:10:\"attributes\";s:15:\"Post Attributes\";s:16:\"insert_into_item\";s:16:\"Insert into post\";s:21:\"uploaded_to_this_item\";s:21:\"Uploaded to this post\";s:14:\"featured_image\";s:14:\"Featured Image\";s:18:\"set_featured_image\";s:18:\"Set featured image\";s:21:\"remove_featured_image\";s:21:\"Remove featured image\";s:18:\"use_featured_image\";s:21:\"Use as featured image\";s:17:\"filter_items_list\";s:17:\"Filter posts list\";s:21:\"items_list_navigation\";s:21:\"Posts list navigation\";s:10:\"items_list\";s:10:\"Posts list\";s:14:\"item_published\";s:15:\"Post published.\";s:24:\"item_published_privately\";s:25:\"Post published privately.\";s:22:\"item_reverted_to_draft\";s:23:\"Post reverted to draft.\";s:14:\"item_scheduled\";s:15:\"Post scheduled.\";s:12:\"item_updated\";s:13:\"Post updated.\";s:9:\"menu_name\";s:10:\"Changesets\";s:14:\"name_admin_bar\";s:9:\"Changeset\";}s:11:\"description\";s:0:\"\";s:6:\"public\";b:0;s:12:\"hierarchical\";b:0;s:19:\"exclude_from_search\";b:1;s:18:\"publicly_queryable\";b:0;s:7:\"show_ui\";b:0;s:12:\"show_in_menu\";b:0;s:17:\"show_in_nav_menus\";b:0;s:17:\"show_in_admin_bar\";b:0;s:15:\"capability_type\";s:19:\"customize_changeset\";s:3:\"cap\";O:8:\"stdClass\":15:{s:9:\"edit_post\";s:9:\"customize\";s:9:\"read_post\";s:9:\"customize\";s:11:\"delete_post\";s:9:\"customize\";s:10:\"edit_posts\";s:9:\"customize\";s:17:\"edit_others_posts\";s:9:\"customize\";s:13:\"publish_posts\";s:9:\"customize\";s:18:\"read_private_posts\";s:9:\"customize\";s:4:\"read\";s:4:\"read\";s:12:\"delete_posts\";s:9:\"customize\";s:20:\"delete_private_posts\";s:9:\"customize\";s:22:\"delete_published_posts\";s:9:\"customize\";s:19:\"delete_others_posts\";s:9:\"customize\";s:18:\"edit_private_posts\";s:9:\"customize\";s:20:\"edit_published_posts\";s:12:\"do_not_allow\";s:12:\"create_posts\";s:9:\"customize\";}s:12:\"map_meta_cap\";b:1;s:10:\"taxonomies\";a:0:{}s:11:\"has_archive\";b:0;s:7:\"rewrite\";b:0;s:9:\"query_var\";b:0;s:10:\"can_export\";b:0;s:16:\"delete_with_user\";b:0;s:12:\"show_in_rest\";b:0;s:9:\"rest_base\";b:0;s:8:\"_builtin\";b:1;s:10:\"_edit_link\";s:0:\"\";}s:12:\"oembed_cache\";O:8:\"stdClass\":26:{s:4:\"name\";s:12:\"oembed_cache\";s:5:\"label\";s:16:\"oEmbed Responses\";s:6:\"labels\";O:8:\"stdClass\":31:{s:4:\"name\";s:16:\"oEmbed Responses\";s:13:\"singular_name\";s:15:\"oEmbed Response\";s:7:\"add_new\";s:7:\"Add New\";s:12:\"add_new_item\";s:12:\"Add New Post\";s:9:\"edit_item\";s:9:\"Edit Post\";s:8:\"new_item\";s:8:\"New Post\";s:9:\"view_item\";s:9:\"View Post\";s:10:\"view_items\";s:10:\"View Posts\";s:12:\"search_items\";s:12:\"Search Posts\";s:9:\"not_found\";s:15:\"No posts found.\";s:18:\"not_found_in_trash\";s:24:\"No posts found in Trash.\";s:17:\"parent_item_colon\";N;s:9:\"all_items\";s:16:\"oEmbed Responses\";s:8:\"archives\";s:16:\"oEmbed Responses\";s:10:\"attributes\";s:15:\"Post Attributes\";s:16:\"insert_into_item\";s:16:\"Insert into post\";s:21:\"uploaded_to_this_item\";s:21:\"Uploaded to this post\";s:14:\"featured_image\";s:14:\"Featured Image\";s:18:\"set_featured_image\";s:18:\"Set featured image\";s:21:\"remove_featured_image\";s:21:\"Remove featured image\";s:18:\"use_featured_image\";s:21:\"Use as featured image\";s:17:\"filter_items_list\";s:17:\"Filter posts list\";s:21:\"items_list_navigation\";s:21:\"Posts list navigation\";s:10:\"items_list\";s:10:\"Posts list\";s:14:\"item_published\";s:15:\"Post published.\";s:24:\"item_published_privately\";s:25:\"Post published privately.\";s:22:\"item_reverted_to_draft\";s:23:\"Post reverted to draft.\";s:14:\"item_scheduled\";s:15:\"Post scheduled.\";s:12:\"item_updated\";s:13:\"Post updated.\";s:9:\"menu_name\";s:16:\"oEmbed Responses\";s:14:\"name_admin_bar\";s:15:\"oEmbed Response\";}s:11:\"description\";s:0:\"\";s:6:\"public\";b:0;s:12:\"hierarchical\";b:0;s:19:\"exclude_from_search\";b:1;s:18:\"publicly_queryable\";b:0;s:7:\"show_ui\";b:0;s:12:\"show_in_menu\";b:0;s:17:\"show_in_nav_menus\";b:0;s:17:\"show_in_admin_bar\";b:0;s:8:\"supports\";a:0:{}s:15:\"capability_type\";s:4:\"post\";s:3:\"cap\";O:8:\"stdClass\":15:{s:9:\"edit_post\";s:9:\"edit_post\";s:9:\"read_post\";s:9:\"read_post\";s:11:\"delete_post\";s:11:\"delete_post\";s:10:\"edit_posts\";s:10:\"edit_posts\";s:17:\"edit_others_posts\";s:17:\"edit_others_posts\";s:13:\"publish_posts\";s:13:\"publish_posts\";s:18:\"read_private_posts\";s:18:\"read_private_posts\";s:4:\"read\";s:4:\"read\";s:12:\"delete_posts\";s:12:\"delete_posts\";s:20:\"delete_private_posts\";s:20:\"delete_private_posts\";s:22:\"delete_published_posts\";s:22:\"delete_published_posts\";s:19:\"delete_others_posts\";s:19:\"delete_others_posts\";s:18:\"edit_private_posts\";s:18:\"edit_private_posts\";s:20:\"edit_published_posts\";s:20:\"edit_published_posts\";s:12:\"create_posts\";s:10:\"edit_posts\";}s:12:\"map_meta_cap\";b:1;s:10:\"taxonomies\";a:0:{}s:11:\"has_archive\";b:0;s:7:\"rewrite\";b:0;s:9:\"query_var\";b:0;s:10:\"can_export\";b:0;s:16:\"delete_with_user\";b:0;s:12:\"show_in_rest\";b:0;s:9:\"rest_base\";b:0;s:8:\"_builtin\";b:1;s:10:\"_edit_link\";s:0:\"\";}s:12:\"user_request\";O:8:\"stdClass\":26:{s:4:\"name\";s:12:\"user_request\";s:5:\"label\";s:13:\"User Requests\";s:6:\"labels\";O:8:\"stdClass\":31:{s:4:\"name\";s:13:\"User Requests\";s:13:\"singular_name\";s:12:\"User Request\";s:7:\"add_new\";s:7:\"Add New\";s:12:\"add_new_item\";s:12:\"Add New Post\";s:9:\"edit_item\";s:9:\"Edit Post\";s:8:\"new_item\";s:8:\"New Post\";s:9:\"view_item\";s:9:\"View Post\";s:10:\"view_items\";s:10:\"View Posts\";s:12:\"search_items\";s:12:\"Search Posts\";s:9:\"not_found\";s:15:\"No posts found.\";s:18:\"not_found_in_trash\";s:24:\"No posts found in Trash.\";s:17:\"parent_item_colon\";N;s:9:\"all_items\";s:13:\"User Requests\";s:8:\"archives\";s:13:\"User Requests\";s:10:\"attributes\";s:15:\"Post Attributes\";s:16:\"insert_into_item\";s:16:\"Insert into post\";s:21:\"uploaded_to_this_item\";s:21:\"Uploaded to this post\";s:14:\"featured_image\";s:14:\"Featured Image\";s:18:\"set_featured_image\";s:18:\"Set featured image\";s:21:\"remove_featured_image\";s:21:\"Remove featured image\";s:18:\"use_featured_image\";s:21:\"Use as featured image\";s:17:\"filter_items_list\";s:17:\"Filter posts list\";s:21:\"items_list_navigation\";s:21:\"Posts list navigation\";s:10:\"items_list\";s:10:\"Posts list\";s:14:\"item_published\";s:15:\"Post published.\";s:24:\"item_published_privately\";s:25:\"Post published privately.\";s:22:\"item_reverted_to_draft\";s:23:\"Post reverted to draft.\";s:14:\"item_scheduled\";s:15:\"Post scheduled.\";s:12:\"item_updated\";s:13:\"Post updated.\";s:9:\"menu_name\";s:13:\"User Requests\";s:14:\"name_admin_bar\";s:12:\"User Request\";}s:11:\"description\";s:0:\"\";s:6:\"public\";b:0;s:12:\"hierarchical\";b:0;s:19:\"exclude_from_search\";b:1;s:18:\"publicly_queryable\";b:0;s:7:\"show_ui\";b:0;s:12:\"show_in_menu\";b:0;s:17:\"show_in_nav_menus\";b:0;s:17:\"show_in_admin_bar\";b:0;s:8:\"supports\";a:0:{}s:15:\"capability_type\";s:4:\"post\";s:3:\"cap\";O:8:\"stdClass\":15:{s:9:\"edit_post\";s:9:\"edit_post\";s:9:\"read_post\";s:9:\"read_post\";s:11:\"delete_post\";s:11:\"delete_post\";s:10:\"edit_posts\";s:10:\"edit_posts\";s:17:\"edit_others_posts\";s:17:\"edit_others_posts\";s:13:\"publish_posts\";s:13:\"publish_posts\";s:18:\"read_private_posts\";s:18:\"read_private_posts\";s:4:\"read\";s:4:\"read\";s:12:\"delete_posts\";s:12:\"delete_posts\";s:20:\"delete_private_posts\";s:20:\"delete_private_posts\";s:22:\"delete_published_posts\";s:22:\"delete_published_posts\";s:19:\"delete_others_posts\";s:19:\"delete_others_posts\";s:18:\"edit_private_posts\";s:18:\"edit_private_posts\";s:20:\"edit_published_posts\";s:20:\"edit_published_posts\";s:12:\"create_posts\";s:10:\"edit_posts\";}s:12:\"map_meta_cap\";b:1;s:10:\"taxonomies\";a:0:{}s:11:\"has_archive\";b:0;s:7:\"rewrite\";b:0;s:9:\"query_var\";b:0;s:10:\"can_export\";b:0;s:16:\"delete_with_user\";b:0;s:12:\"show_in_rest\";b:0;s:9:\"rest_base\";b:0;s:8:\"_builtin\";b:1;s:10:\"_edit_link\";s:0:\"\";}s:8:\"wp_block\";O:8:\"stdClass\":24:{s:4:\"name\";s:8:\"wp_block\";s:5:\"label\";s:6:\"Blocks\";s:6:\"labels\";O:8:\"stdClass\":31:{s:4:\"name\";s:6:\"Blocks\";s:13:\"singular_name\";s:5:\"Block\";s:7:\"add_new\";s:7:\"Add New\";s:12:\"add_new_item\";s:13:\"Add New Block\";s:9:\"edit_item\";s:10:\"Edit Block\";s:8:\"new_item\";s:9:\"New Block\";s:9:\"view_item\";s:10:\"View Block\";s:10:\"view_items\";s:10:\"View Posts\";s:12:\"search_items\";s:13:\"Search Blocks\";s:9:\"not_found\";s:16:\"No blocks found.\";s:18:\"not_found_in_trash\";s:25:\"No blocks found in Trash.\";s:17:\"parent_item_colon\";N;s:9:\"all_items\";s:10:\"All Blocks\";s:8:\"archives\";s:10:\"All Blocks\";s:10:\"attributes\";s:15:\"Post Attributes\";s:16:\"insert_into_item\";s:16:\"Insert into post\";s:21:\"uploaded_to_this_item\";s:21:\"Uploaded to this post\";s:14:\"featured_image\";s:14:\"Featured Image\";s:18:\"set_featured_image\";s:18:\"Set featured image\";s:21:\"remove_featured_image\";s:21:\"Remove featured image\";s:18:\"use_featured_image\";s:21:\"Use as featured image\";s:17:\"filter_items_list\";s:18:\"Filter blocks list\";s:21:\"items_list_navigation\";s:22:\"Blocks list navigation\";s:10:\"items_list\";s:11:\"Blocks list\";s:14:\"item_published\";s:16:\"Block published.\";s:24:\"item_published_privately\";s:26:\"Block published privately.\";s:22:\"item_reverted_to_draft\";s:24:\"Block reverted to draft.\";s:14:\"item_scheduled\";s:16:\"Block scheduled.\";s:12:\"item_updated\";s:14:\"Block updated.\";s:9:\"menu_name\";s:6:\"Blocks\";s:14:\"name_admin_bar\";s:5:\"Block\";}s:11:\"description\";s:0:\"\";s:6:\"public\";b:0;s:12:\"hierarchical\";b:0;s:19:\"exclude_from_search\";b:1;s:18:\"publicly_queryable\";b:0;s:7:\"show_ui\";b:1;s:12:\"show_in_menu\";b:0;s:17:\"show_in_nav_menus\";b:0;s:17:\"show_in_admin_bar\";b:0;s:15:\"capability_type\";s:5:\"block\";s:3:\"cap\";O:8:\"stdClass\":15:{s:9:\"edit_post\";s:10:\"edit_block\";s:9:\"read_post\";s:10:\"read_block\";s:11:\"delete_post\";s:12:\"delete_block\";s:10:\"edit_posts\";s:10:\"edit_posts\";s:17:\"edit_others_posts\";s:17:\"edit_others_posts\";s:13:\"publish_posts\";s:14:\"publish_blocks\";s:18:\"read_private_posts\";s:19:\"read_private_blocks\";s:4:\"read\";s:10:\"edit_posts\";s:12:\"delete_posts\";s:13:\"delete_blocks\";s:20:\"delete_private_posts\";s:21:\"delete_private_blocks\";s:22:\"delete_published_posts\";s:22:\"delete_published_posts\";s:19:\"delete_others_posts\";s:19:\"delete_others_posts\";s:18:\"edit_private_posts\";s:19:\"edit_private_blocks\";s:20:\"edit_published_posts\";s:20:\"edit_published_posts\";s:12:\"create_posts\";s:13:\"publish_posts\";}s:12:\"map_meta_cap\";b:1;s:10:\"taxonomies\";a:0:{}s:11:\"has_archive\";b:0;s:7:\"rewrite\";b:0;s:9:\"query_var\";s:8:\"wp_block\";s:10:\"can_export\";b:1;s:12:\"show_in_rest\";b:1;s:9:\"rest_base\";s:6:\"blocks\";s:8:\"_builtin\";b:1;s:10:\"_edit_link\";s:16:\"post.php?post=%d\";}s:7:\"wpforms\";O:8:\"stdClass\":24:{s:4:\"name\";s:7:\"wpforms\";s:5:\"label\";s:7:\"WPForms\";s:6:\"labels\";O:8:\"stdClass\":31:{s:4:\"name\";s:7:\"WPForms\";s:13:\"singular_name\";s:7:\"WPForms\";s:7:\"add_new\";s:7:\"Add New\";s:12:\"add_new_item\";s:12:\"Add New Post\";s:9:\"edit_item\";s:9:\"Edit Post\";s:8:\"new_item\";s:8:\"New Post\";s:9:\"view_item\";s:9:\"View Post\";s:10:\"view_items\";s:10:\"View Posts\";s:12:\"search_items\";s:12:\"Search Posts\";s:9:\"not_found\";s:15:\"No posts found.\";s:18:\"not_found_in_trash\";s:24:\"No posts found in Trash.\";s:17:\"parent_item_colon\";N;s:9:\"all_items\";s:7:\"WPForms\";s:8:\"archives\";s:7:\"WPForms\";s:10:\"attributes\";s:15:\"Post Attributes\";s:16:\"insert_into_item\";s:16:\"Insert into post\";s:21:\"uploaded_to_this_item\";s:21:\"Uploaded to this post\";s:14:\"featured_image\";s:14:\"Featured Image\";s:18:\"set_featured_image\";s:18:\"Set featured image\";s:21:\"remove_featured_image\";s:21:\"Remove featured image\";s:18:\"use_featured_image\";s:21:\"Use as featured image\";s:17:\"filter_items_list\";s:17:\"Filter posts list\";s:21:\"items_list_navigation\";s:21:\"Posts list navigation\";s:10:\"items_list\";s:10:\"Posts list\";s:14:\"item_published\";s:15:\"Post published.\";s:24:\"item_published_privately\";s:25:\"Post published privately.\";s:22:\"item_reverted_to_draft\";s:23:\"Post reverted to draft.\";s:14:\"item_scheduled\";s:15:\"Post scheduled.\";s:12:\"item_updated\";s:13:\"Post updated.\";s:9:\"menu_name\";s:7:\"WPForms\";s:14:\"name_admin_bar\";s:7:\"WPForms\";}s:11:\"description\";s:0:\"\";s:6:\"public\";b:0;s:12:\"hierarchical\";b:0;s:19:\"exclude_from_search\";b:1;s:18:\"publicly_queryable\";b:0;s:7:\"show_ui\";b:0;s:12:\"show_in_menu\";b:0;s:17:\"show_in_nav_menus\";b:0;s:17:\"show_in_admin_bar\";b:0;s:15:\"capability_type\";s:14:\"manage_options\";s:3:\"cap\";O:8:\"stdClass\":8:{s:9:\"edit_post\";s:19:\"edit_manage_options\";s:9:\"read_post\";s:19:\"read_manage_options\";s:11:\"delete_post\";s:21:\"delete_manage_options\";s:10:\"edit_posts\";s:20:\"edit_manage_optionss\";s:17:\"edit_others_posts\";s:27:\"edit_others_manage_optionss\";s:13:\"publish_posts\";s:23:\"publish_manage_optionss\";s:18:\"read_private_posts\";s:28:\"read_private_manage_optionss\";s:12:\"create_posts\";s:20:\"edit_manage_optionss\";}s:12:\"map_meta_cap\";b:0;s:10:\"taxonomies\";a:0:{}s:11:\"has_archive\";b:0;s:7:\"rewrite\";b:0;s:9:\"query_var\";b:0;s:10:\"can_export\";b:0;s:12:\"show_in_rest\";b:0;s:9:\"rest_base\";b:0;s:8:\"_builtin\";b:0;s:10:\"_edit_link\";s:0:\"\";}s:11:\"wpforms_log\";O:8:\"stdClass\":24:{s:4:\"name\";s:11:\"wpforms_log\";s:5:\"label\";s:12:\"WPForms Logs\";s:6:\"labels\";O:8:\"stdClass\":31:{s:4:\"name\";s:12:\"WPForms Logs\";s:13:\"singular_name\";s:12:\"WPForms Logs\";s:7:\"add_new\";s:7:\"Add New\";s:12:\"add_new_item\";s:12:\"Add New Post\";s:9:\"edit_item\";s:9:\"Edit Post\";s:8:\"new_item\";s:8:\"New Post\";s:9:\"view_item\";s:9:\"View Post\";s:10:\"view_items\";s:10:\"View Posts\";s:12:\"search_items\";s:12:\"Search Posts\";s:9:\"not_found\";s:15:\"No posts found.\";s:18:\"not_found_in_trash\";s:24:\"No posts found in Trash.\";s:17:\"parent_item_colon\";N;s:9:\"all_items\";s:4:\"Logs\";s:8:\"archives\";s:4:\"Logs\";s:10:\"attributes\";s:15:\"Post Attributes\";s:16:\"insert_into_item\";s:16:\"Insert into post\";s:21:\"uploaded_to_this_item\";s:21:\"Uploaded to this post\";s:14:\"featured_image\";s:14:\"Featured Image\";s:18:\"set_featured_image\";s:18:\"Set featured image\";s:21:\"remove_featured_image\";s:21:\"Remove featured image\";s:18:\"use_featured_image\";s:21:\"Use as featured image\";s:17:\"filter_items_list\";s:17:\"Filter posts list\";s:21:\"items_list_navigation\";s:21:\"Posts list navigation\";s:10:\"items_list\";s:10:\"Posts list\";s:14:\"item_published\";s:15:\"Post published.\";s:24:\"item_published_privately\";s:25:\"Post published privately.\";s:22:\"item_reverted_to_draft\";s:23:\"Post reverted to draft.\";s:14:\"item_scheduled\";s:15:\"Post scheduled.\";s:12:\"item_updated\";s:13:\"Post updated.\";s:9:\"menu_name\";s:4:\"Logs\";s:14:\"name_admin_bar\";s:12:\"WPForms Logs\";}s:11:\"description\";s:0:\"\";s:6:\"public\";b:0;s:12:\"hierarchical\";b:0;s:19:\"exclude_from_search\";b:1;s:18:\"publicly_queryable\";b:0;s:7:\"show_ui\";b:0;s:12:\"show_in_menu\";b:0;s:17:\"show_in_nav_menus\";b:0;s:17:\"show_in_admin_bar\";b:0;s:15:\"capability_type\";s:14:\"manage_options\";s:3:\"cap\";O:8:\"stdClass\":8:{s:9:\"edit_post\";s:19:\"edit_manage_options\";s:9:\"read_post\";s:19:\"read_manage_options\";s:11:\"delete_post\";s:21:\"delete_manage_options\";s:10:\"edit_posts\";s:20:\"edit_manage_optionss\";s:17:\"edit_others_posts\";s:27:\"edit_others_manage_optionss\";s:13:\"publish_posts\";s:23:\"publish_manage_optionss\";s:18:\"read_private_posts\";s:28:\"read_private_manage_optionss\";s:12:\"create_posts\";s:20:\"edit_manage_optionss\";}s:12:\"map_meta_cap\";b:0;s:10:\"taxonomies\";a:0:{}s:11:\"has_archive\";b:0;s:7:\"rewrite\";b:0;s:9:\"query_var\";b:0;s:10:\"can_export\";b:0;s:12:\"show_in_rest\";b:0;s:9:\"rest_base\";b:0;s:8:\"_builtin\";b:0;s:10:\"_edit_link\";s:0:\"\";}s:16:\"amn_wpforms-lite\";O:8:\"stdClass\":25:{s:4:\"name\";s:16:\"amn_wpforms-lite\";s:5:\"label\";s:26:\"wpforms-lite Announcements\";s:6:\"labels\";O:8:\"stdClass\":31:{s:4:\"name\";s:26:\"wpforms-lite Announcements\";s:13:\"singular_name\";s:26:\"wpforms-lite Announcements\";s:7:\"add_new\";s:7:\"Add New\";s:12:\"add_new_item\";s:12:\"Add New Post\";s:9:\"edit_item\";s:9:\"Edit Post\";s:8:\"new_item\";s:8:\"New Post\";s:9:\"view_item\";s:9:\"View Post\";s:10:\"view_items\";s:10:\"View Posts\";s:12:\"search_items\";s:12:\"Search Posts\";s:9:\"not_found\";s:15:\"No posts found.\";s:18:\"not_found_in_trash\";s:24:\"No posts found in Trash.\";s:17:\"parent_item_colon\";N;s:9:\"all_items\";s:26:\"wpforms-lite Announcements\";s:8:\"archives\";s:26:\"wpforms-lite Announcements\";s:10:\"attributes\";s:15:\"Post Attributes\";s:16:\"insert_into_item\";s:16:\"Insert into post\";s:21:\"uploaded_to_this_item\";s:21:\"Uploaded to this post\";s:14:\"featured_image\";s:14:\"Featured Image\";s:18:\"set_featured_image\";s:18:\"Set featured image\";s:21:\"remove_featured_image\";s:21:\"Remove featured image\";s:18:\"use_featured_image\";s:21:\"Use as featured image\";s:17:\"filter_items_list\";s:17:\"Filter posts list\";s:21:\"items_list_navigation\";s:21:\"Posts list navigation\";s:10:\"items_list\";s:10:\"Posts list\";s:14:\"item_published\";s:15:\"Post published.\";s:24:\"item_published_privately\";s:25:\"Post published privately.\";s:22:\"item_reverted_to_draft\";s:23:\"Post reverted to draft.\";s:14:\"item_scheduled\";s:15:\"Post scheduled.\";s:12:\"item_updated\";s:13:\"Post updated.\";s:9:\"menu_name\";s:26:\"wpforms-lite Announcements\";s:14:\"name_admin_bar\";s:26:\"wpforms-lite Announcements\";}s:11:\"description\";s:0:\"\";s:6:\"public\";b:0;s:12:\"hierarchical\";b:0;s:19:\"exclude_from_search\";b:1;s:18:\"publicly_queryable\";b:0;s:7:\"show_ui\";b:0;s:12:\"show_in_menu\";b:0;s:17:\"show_in_nav_menus\";b:0;s:17:\"show_in_admin_bar\";b:0;s:8:\"supports\";b:0;s:15:\"capability_type\";s:14:\"manage_options\";s:3:\"cap\";O:8:\"stdClass\":8:{s:9:\"edit_post\";s:19:\"edit_manage_options\";s:9:\"read_post\";s:19:\"read_manage_options\";s:11:\"delete_post\";s:21:\"delete_manage_options\";s:10:\"edit_posts\";s:20:\"edit_manage_optionss\";s:17:\"edit_others_posts\";s:27:\"edit_others_manage_optionss\";s:13:\"publish_posts\";s:23:\"publish_manage_optionss\";s:18:\"read_private_posts\";s:28:\"read_private_manage_optionss\";s:12:\"create_posts\";s:20:\"edit_manage_optionss\";}s:12:\"map_meta_cap\";b:0;s:10:\"taxonomies\";a:0:{}s:11:\"has_archive\";b:0;s:7:\"rewrite\";a:5:{s:4:\"slug\";s:16:\"amn_wpforms-lite\";s:10:\"with_front\";b:1;s:5:\"pages\";b:1;s:5:\"feeds\";b:0;s:7:\"ep_mask\";i:1;}s:9:\"query_var\";s:16:\"amn_wpforms-lite\";s:10:\"can_export\";b:0;s:12:\"show_in_rest\";b:0;s:9:\"rest_base\";b:0;s:8:\"_builtin\";b:0;s:10:\"_edit_link\";s:0:\"\";}}}i:2;i:1;i:3;d:1563747226.777494907379150390625;i:4;b:0;i:5;a:14:{s:13:\"wpcom_user_id\";N;s:16:\"external_user_id\";i:1;s:12:\"display_name\";s:9:\"mphillips\";s:10:\"user_email\";s:28:\"phillips.editorial@gmail.com\";s:10:\"user_roles\";a:1:{i:0;s:13:\"administrator\";}s:15:\"translated_role\";s:13:\"administrator\";s:7:\"is_cron\";b:0;s:7:\"is_rest\";b:0;s:9:\"is_xmlrpc\";b:0;s:10:\"is_wp_rest\";b:0;s:7:\"is_ajax\";b:0;s:11:\"is_wp_admin\";b:1;s:6:\"is_cli\";b:0;s:8:\"from_url\";s:147:\"http://itcamefrombeyondpulp.com/wp-admin/plugins.php?action=deactivate&plugin=jetpack%2Fjetpack.php&plugin_status=all&paged=1&s&_wpnonce=85cfab5870\";}}','no'),(244,'jpsq_sync-1563747226.780865-183210-24','a:6:{i:0;s:21:\"jetpack_sync_callable\";i:1;a:2:{i:0;s:18:\"post_type_features\";i:1;a:14:{s:4:\"post\";a:10:{s:5:\"title\";b:1;s:6:\"editor\";b:1;s:6:\"author\";b:1;s:9:\"thumbnail\";b:1;s:7:\"excerpt\";b:1;s:10:\"trackbacks\";b:1;s:13:\"custom-fields\";b:1;s:8:\"comments\";b:1;s:9:\"revisions\";b:1;s:12:\"post-formats\";b:1;}s:4:\"page\";a:8:{s:5:\"title\";b:1;s:6:\"editor\";b:1;s:6:\"author\";b:1;s:9:\"thumbnail\";b:1;s:15:\"page-attributes\";b:1;s:13:\"custom-fields\";b:1;s:8:\"comments\";b:1;s:9:\"revisions\";b:1;}s:10:\"attachment\";a:3:{s:5:\"title\";b:1;s:6:\"author\";b:1;s:8:\"comments\";b:1;}s:16:\"attachment:audio\";a:1:{s:9:\"thumbnail\";b:1;}s:16:\"attachment:video\";a:1:{s:9:\"thumbnail\";b:1;}s:8:\"revision\";a:1:{s:6:\"author\";b:1;}s:13:\"nav_menu_item\";a:2:{s:5:\"title\";b:1;s:6:\"editor\";b:1;}s:10:\"custom_css\";a:2:{s:5:\"title\";b:1;s:9:\"revisions\";b:1;}s:19:\"customize_changeset\";a:2:{s:5:\"title\";b:1;s:6:\"author\";b:1;}s:12:\"oembed_cache\";a:2:{s:5:\"title\";b:1;s:6:\"editor\";b:1;}s:12:\"user_request\";a:2:{s:5:\"title\";b:1;s:6:\"editor\";b:1;}s:8:\"wp_block\";a:2:{s:5:\"title\";b:1;s:6:\"editor\";b:1;}s:7:\"wpforms\";a:1:{s:5:\"title\";b:1;}s:11:\"wpforms_log\";a:2:{s:5:\"title\";b:1;s:6:\"editor\";b:1;}}}i:2;i:1;i:3;d:1563747226.7807199954986572265625;i:4;b:0;i:5;a:14:{s:13:\"wpcom_user_id\";N;s:16:\"external_user_id\";i:1;s:12:\"display_name\";s:9:\"mphillips\";s:10:\"user_email\";s:28:\"phillips.editorial@gmail.com\";s:10:\"user_roles\";a:1:{i:0;s:13:\"administrator\";}s:15:\"translated_role\";s:13:\"administrator\";s:7:\"is_cron\";b:0;s:7:\"is_rest\";b:0;s:9:\"is_xmlrpc\";b:0;s:10:\"is_wp_rest\";b:0;s:7:\"is_ajax\";b:0;s:11:\"is_wp_admin\";b:1;s:6:\"is_cli\";b:0;s:8:\"from_url\";s:147:\"http://itcamefrombeyondpulp.com/wp-admin/plugins.php?action=deactivate&plugin=jetpack%2Fjetpack.php&plugin_status=all&paged=1&s&_wpnonce=85cfab5870\";}}','no'),(245,'jpsq_sync-1563747226.781825-183210-25','a:6:{i:0;s:21:\"jetpack_sync_callable\";i:1;a:2:{i:0;s:10:\"shortcodes\";i:1;a:8:{i:0;s:10:\"wp_caption\";i:1;s:7:\"caption\";i:2;s:7:\"gallery\";i:3;s:8:\"playlist\";i:4;s:5:\"audio\";i:5;s:5:\"video\";i:6;s:5:\"embed\";i:7;s:7:\"wpforms\";}}i:2;i:1;i:3;d:1563747226.78168201446533203125;i:4;b:0;i:5;a:14:{s:13:\"wpcom_user_id\";N;s:16:\"external_user_id\";i:1;s:12:\"display_name\";s:9:\"mphillips\";s:10:\"user_email\";s:28:\"phillips.editorial@gmail.com\";s:10:\"user_roles\";a:1:{i:0;s:13:\"administrator\";}s:15:\"translated_role\";s:13:\"administrator\";s:7:\"is_cron\";b:0;s:7:\"is_rest\";b:0;s:9:\"is_xmlrpc\";b:0;s:10:\"is_wp_rest\";b:0;s:7:\"is_ajax\";b:0;s:11:\"is_wp_admin\";b:1;s:6:\"is_cli\";b:0;s:8:\"from_url\";s:147:\"http://itcamefrombeyondpulp.com/wp-admin/plugins.php?action=deactivate&plugin=jetpack%2Fjetpack.php&plugin_status=all&paged=1&s&_wpnonce=85cfab5870\";}}','no'),(246,'jpsq_sync-1563747226.782553-183210-26','a:6:{i:0;s:21:\"jetpack_sync_callable\";i:1;a:2:{i:0;s:27:\"rest_api_allowed_post_types\";i:1;a:3:{i:0;s:4:\"post\";i:1;s:4:\"page\";i:2;s:8:\"revision\";}}i:2;i:1;i:3;d:1563747226.78242206573486328125;i:4;b:0;i:5;a:14:{s:13:\"wpcom_user_id\";N;s:16:\"external_user_id\";i:1;s:12:\"display_name\";s:9:\"mphillips\";s:10:\"user_email\";s:28:\"phillips.editorial@gmail.com\";s:10:\"user_roles\";a:1:{i:0;s:13:\"administrator\";}s:15:\"translated_role\";s:13:\"administrator\";s:7:\"is_cron\";b:0;s:7:\"is_rest\";b:0;s:9:\"is_xmlrpc\";b:0;s:10:\"is_wp_rest\";b:0;s:7:\"is_ajax\";b:0;s:11:\"is_wp_admin\";b:1;s:6:\"is_cli\";b:0;s:8:\"from_url\";s:147:\"http://itcamefrombeyondpulp.com/wp-admin/plugins.php?action=deactivate&plugin=jetpack%2Fjetpack.php&plugin_status=all&paged=1&s&_wpnonce=85cfab5870\";}}','no'),(247,'jpsq_sync-1563747226.783210-183210-27','a:6:{i:0;s:21:\"jetpack_sync_callable\";i:1;a:2:{i:0;s:32:\"rest_api_allowed_public_metadata\";i:1;a:0:{}}i:2;i:1;i:3;d:1563747226.78308010101318359375;i:4;b:0;i:5;a:14:{s:13:\"wpcom_user_id\";N;s:16:\"external_user_id\";i:1;s:12:\"display_name\";s:9:\"mphillips\";s:10:\"user_email\";s:28:\"phillips.editorial@gmail.com\";s:10:\"user_roles\";a:1:{i:0;s:13:\"administrator\";}s:15:\"translated_role\";s:13:\"administrator\";s:7:\"is_cron\";b:0;s:7:\"is_rest\";b:0;s:9:\"is_xmlrpc\";b:0;s:10:\"is_wp_rest\";b:0;s:7:\"is_ajax\";b:0;s:11:\"is_wp_admin\";b:1;s:6:\"is_cli\";b:0;s:8:\"from_url\";s:147:\"http://itcamefrombeyondpulp.com/wp-admin/plugins.php?action=deactivate&plugin=jetpack%2Fjetpack.php&plugin_status=all&paged=1&s&_wpnonce=85cfab5870\";}}','no'),(248,'jpsq_sync-1563747226.783836-183210-28','a:6:{i:0;s:21:\"jetpack_sync_callable\";i:1;a:2:{i:0;s:24:\"sso_is_two_step_required\";i:1;b:0;}i:2;i:1;i:3;d:1563747226.7837040424346923828125;i:4;b:0;i:5;a:14:{s:13:\"wpcom_user_id\";N;s:16:\"external_user_id\";i:1;s:12:\"display_name\";s:9:\"mphillips\";s:10:\"user_email\";s:28:\"phillips.editorial@gmail.com\";s:10:\"user_roles\";a:1:{i:0;s:13:\"administrator\";}s:15:\"translated_role\";s:13:\"administrator\";s:7:\"is_cron\";b:0;s:7:\"is_rest\";b:0;s:9:\"is_xmlrpc\";b:0;s:10:\"is_wp_rest\";b:0;s:7:\"is_ajax\";b:0;s:11:\"is_wp_admin\";b:1;s:6:\"is_cli\";b:0;s:8:\"from_url\";s:147:\"http://itcamefrombeyondpulp.com/wp-admin/plugins.php?action=deactivate&plugin=jetpack%2Fjetpack.php&plugin_status=all&paged=1&s&_wpnonce=85cfab5870\";}}','no'),(249,'jpsq_sync-1563747226.784467-183210-29','a:6:{i:0;s:21:\"jetpack_sync_callable\";i:1;a:2:{i:0;s:26:\"sso_should_hide_login_form\";i:1;b:0;}i:2;i:1;i:3;d:1563747226.784336090087890625;i:4;b:0;i:5;a:14:{s:13:\"wpcom_user_id\";N;s:16:\"external_user_id\";i:1;s:12:\"display_name\";s:9:\"mphillips\";s:10:\"user_email\";s:28:\"phillips.editorial@gmail.com\";s:10:\"user_roles\";a:1:{i:0;s:13:\"administrator\";}s:15:\"translated_role\";s:13:\"administrator\";s:7:\"is_cron\";b:0;s:7:\"is_rest\";b:0;s:9:\"is_xmlrpc\";b:0;s:10:\"is_wp_rest\";b:0;s:7:\"is_ajax\";b:0;s:11:\"is_wp_admin\";b:1;s:6:\"is_cli\";b:0;s:8:\"from_url\";s:147:\"http://itcamefrombeyondpulp.com/wp-admin/plugins.php?action=deactivate&plugin=jetpack%2Fjetpack.php&plugin_status=all&paged=1&s&_wpnonce=85cfab5870\";}}','no'),(250,'jpsq_sync-1563747226.785088-183210-30','a:6:{i:0;s:21:\"jetpack_sync_callable\";i:1;a:2:{i:0;s:18:\"sso_match_by_email\";i:1;b:1;}i:2;i:1;i:3;d:1563747226.7849578857421875;i:4;b:0;i:5;a:14:{s:13:\"wpcom_user_id\";N;s:16:\"external_user_id\";i:1;s:12:\"display_name\";s:9:\"mphillips\";s:10:\"user_email\";s:28:\"phillips.editorial@gmail.com\";s:10:\"user_roles\";a:1:{i:0;s:13:\"administrator\";}s:15:\"translated_role\";s:13:\"administrator\";s:7:\"is_cron\";b:0;s:7:\"is_rest\";b:0;s:9:\"is_xmlrpc\";b:0;s:10:\"is_wp_rest\";b:0;s:7:\"is_ajax\";b:0;s:11:\"is_wp_admin\";b:1;s:6:\"is_cli\";b:0;s:8:\"from_url\";s:147:\"http://itcamefrombeyondpulp.com/wp-admin/plugins.php?action=deactivate&plugin=jetpack%2Fjetpack.php&plugin_status=all&paged=1&s&_wpnonce=85cfab5870\";}}','no'),(251,'jpsq_sync-1563747226.785705-183210-31','a:6:{i:0;s:21:\"jetpack_sync_callable\";i:1;a:2:{i:0;s:21:\"sso_new_user_override\";i:1;b:0;}i:2;i:1;i:3;d:1563747226.7855770587921142578125;i:4;b:0;i:5;a:14:{s:13:\"wpcom_user_id\";N;s:16:\"external_user_id\";i:1;s:12:\"display_name\";s:9:\"mphillips\";s:10:\"user_email\";s:28:\"phillips.editorial@gmail.com\";s:10:\"user_roles\";a:1:{i:0;s:13:\"administrator\";}s:15:\"translated_role\";s:13:\"administrator\";s:7:\"is_cron\";b:0;s:7:\"is_rest\";b:0;s:9:\"is_xmlrpc\";b:0;s:10:\"is_wp_rest\";b:0;s:7:\"is_ajax\";b:0;s:11:\"is_wp_admin\";b:1;s:6:\"is_cli\";b:0;s:8:\"from_url\";s:147:\"http://itcamefrombeyondpulp.com/wp-admin/plugins.php?action=deactivate&plugin=jetpack%2Fjetpack.php&plugin_status=all&paged=1&s&_wpnonce=85cfab5870\";}}','no'),(252,'jpsq_sync-1563747226.786341-183210-32','a:6:{i:0;s:21:\"jetpack_sync_callable\";i:1;a:2:{i:0;s:29:\"sso_bypass_default_login_form\";i:1;b:0;}i:2;i:1;i:3;d:1563747226.786212921142578125;i:4;b:0;i:5;a:14:{s:13:\"wpcom_user_id\";N;s:16:\"external_user_id\";i:1;s:12:\"display_name\";s:9:\"mphillips\";s:10:\"user_email\";s:28:\"phillips.editorial@gmail.com\";s:10:\"user_roles\";a:1:{i:0;s:13:\"administrator\";}s:15:\"translated_role\";s:13:\"administrator\";s:7:\"is_cron\";b:0;s:7:\"is_rest\";b:0;s:9:\"is_xmlrpc\";b:0;s:10:\"is_wp_rest\";b:0;s:7:\"is_ajax\";b:0;s:11:\"is_wp_admin\";b:1;s:6:\"is_cli\";b:0;s:8:\"from_url\";s:147:\"http://itcamefrombeyondpulp.com/wp-admin/plugins.php?action=deactivate&plugin=jetpack%2Fjetpack.php&plugin_status=all&paged=1&s&_wpnonce=85cfab5870\";}}','no'),(253,'jpsq_sync-1563747226.786969-183210-33','a:6:{i:0;s:21:\"jetpack_sync_callable\";i:1;a:2:{i:0;s:10:\"wp_version\";i:1;s:5:\"5.2.2\";}i:2;i:1;i:3;d:1563747226.7868289947509765625;i:4;b:0;i:5;a:14:{s:13:\"wpcom_user_id\";N;s:16:\"external_user_id\";i:1;s:12:\"display_name\";s:9:\"mphillips\";s:10:\"user_email\";s:28:\"phillips.editorial@gmail.com\";s:10:\"user_roles\";a:1:{i:0;s:13:\"administrator\";}s:15:\"translated_role\";s:13:\"administrator\";s:7:\"is_cron\";b:0;s:7:\"is_rest\";b:0;s:9:\"is_xmlrpc\";b:0;s:10:\"is_wp_rest\";b:0;s:7:\"is_ajax\";b:0;s:11:\"is_wp_admin\";b:1;s:6:\"is_cli\";b:0;s:8:\"from_url\";s:147:\"http://itcamefrombeyondpulp.com/wp-admin/plugins.php?action=deactivate&plugin=jetpack%2Fjetpack.php&plugin_status=all&paged=1&s&_wpnonce=85cfab5870\";}}','no'),(254,'jpsq_sync-1563747226.787862-183210-34','a:6:{i:0;s:21:\"jetpack_sync_callable\";i:1;a:2:{i:0;s:11:\"get_plugins\";i:1;a:6:{s:19:\"akismet/akismet.php\";a:11:{s:4:\"Name\";s:17:\"Akismet Anti-Spam\";s:9:\"PluginURI\";s:20:\"https://akismet.com/\";s:7:\"Version\";s:5:\"4.1.2\";s:11:\"Description\";s:279:\"Used by millions, Akismet is quite possibly the best way in the world to <strong>protect your blog from spam</strong>. It keeps your site protected even while you sleep. To get started: activate the Akismet plugin and then go to your Akismet Settings page to set up your API key.\";s:6:\"Author\";s:10:\"Automattic\";s:9:\"AuthorURI\";s:41:\"https://automattic.com/wordpress-plugins/\";s:10:\"TextDomain\";s:7:\"akismet\";s:10:\"DomainPath\";s:0:\"\";s:7:\"Network\";b:0;s:5:\"Title\";s:17:\"Akismet Anti-Spam\";s:10:\"AuthorName\";s:10:\"Automattic\";}s:35:\"boldgrid-backup/boldgrid-backup.php\";a:11:{s:4:\"Name\";s:15:\"BoldGrid Backup\";s:9:\"PluginURI\";s:41:\"https://www.boldgrid.com/boldgrid-backup/\";s:7:\"Version\";s:5:\"1.8.0\";s:11:\"Description\";s:81:\"BoldGrid Backup provides WordPress backup and restoration with update protection.\";s:6:\"Author\";s:8:\"BoldGrid\";s:9:\"AuthorURI\";s:25:\"https://www.boldgrid.com/\";s:10:\"TextDomain\";s:15:\"boldgrid-backup\";s:10:\"DomainPath\";s:10:\"/languages\";s:7:\"Network\";b:0;s:5:\"Title\";s:15:\"BoldGrid Backup\";s:10:\"AuthorName\";s:8:\"BoldGrid\";}s:51:\"boldgrid-backup-premium/boldgrid-backup-premium.php\";a:11:{s:4:\"Name\";s:23:\"BoldGrid Backup Premium\";s:9:\"PluginURI\";s:41:\"https://www.boldgrid.com/boldgrid-backup/\";s:7:\"Version\";s:5:\"1.1.0\";s:11:\"Description\";s:49:\"Premium extension for the BoldGrid Backup plugin.\";s:6:\"Author\";s:8:\"BoldGrid\";s:9:\"AuthorURI\";s:25:\"https://www.boldgrid.com/\";s:10:\"TextDomain\";s:15:\"boldgrid-backup\";s:10:\"DomainPath\";s:10:\"/languages\";s:7:\"Network\";b:0;s:5:\"Title\";s:23:\"BoldGrid Backup Premium\";s:10:\"AuthorName\";s:8:\"BoldGrid\";}s:9:\"hello.php\";a:11:{s:4:\"Name\";s:11:\"Hello Dolly\";s:9:\"PluginURI\";s:41:\"http://wordpress.org/plugins/hello-dolly/\";s:7:\"Version\";s:5:\"1.7.2\";s:11:\"Description\";s:295:\"This is not just a plugin, it symbolizes the hope and enthusiasm of an entire generation summed up in two words sung most famously by Louis Armstrong: Hello, Dolly. When activated you will randomly see a lyric from <cite>Hello, Dolly</cite> in the upper right of your admin screen on every page.\";s:6:\"Author\";s:14:\"Matt Mullenweg\";s:9:\"AuthorURI\";s:13:\"http://ma.tt/\";s:10:\"TextDomain\";s:0:\"\";s:10:\"DomainPath\";s:0:\"\";s:7:\"Network\";b:0;s:5:\"Title\";s:11:\"Hello Dolly\";s:10:\"AuthorName\";s:14:\"Matt Mullenweg\";}s:19:\"jetpack/jetpack.php\";a:11:{s:4:\"Name\";s:24:\"Jetpack by WordPress.com\";s:9:\"PluginURI\";s:19:\"https://jetpack.com\";s:7:\"Version\";s:5:\"7.1.1\";s:11:\"Description\";s:218:\"Bring the power of the WordPress.com cloud to your self-hosted WordPress. Jetpack enables you to connect your blog to a WordPress.com account to use the powerful features normally only available to WordPress.com users.\";s:6:\"Author\";s:10:\"Automattic\";s:9:\"AuthorURI\";s:19:\"https://jetpack.com\";s:10:\"TextDomain\";s:7:\"jetpack\";s:10:\"DomainPath\";s:11:\"/languages/\";s:7:\"Network\";b:0;s:5:\"Title\";s:24:\"Jetpack by WordPress.com\";s:10:\"AuthorName\";s:10:\"Automattic\";}s:24:\"wpforms-lite/wpforms.php\";a:11:{s:4:\"Name\";s:12:\"WPForms Lite\";s:9:\"PluginURI\";s:19:\"https://wpforms.com\";s:7:\"Version\";s:7:\"1.5.1.3\";s:11:\"Description\";s:113:\"Beginner friendly WordPress contact form plugin. Use our Drag & Drop form builder to create your WordPress forms.\";s:6:\"Author\";s:7:\"WPForms\";s:9:\"AuthorURI\";s:19:\"https://wpforms.com\";s:10:\"TextDomain\";s:12:\"wpforms-lite\";s:10:\"DomainPath\";s:9:\"languages\";s:7:\"Network\";b:0;s:5:\"Title\";s:12:\"WPForms Lite\";s:10:\"AuthorName\";s:7:\"WPForms\";}}}i:2;i:1;i:3;d:1563747226.7877299785614013671875;i:4;b:0;i:5;a:14:{s:13:\"wpcom_user_id\";N;s:16:\"external_user_id\";i:1;s:12:\"display_name\";s:9:\"mphillips\";s:10:\"user_email\";s:28:\"phillips.editorial@gmail.com\";s:10:\"user_roles\";a:1:{i:0;s:13:\"administrator\";}s:15:\"translated_role\";s:13:\"administrator\";s:7:\"is_cron\";b:0;s:7:\"is_rest\";b:0;s:9:\"is_xmlrpc\";b:0;s:10:\"is_wp_rest\";b:0;s:7:\"is_ajax\";b:0;s:11:\"is_wp_admin\";b:1;s:6:\"is_cli\";b:0;s:8:\"from_url\";s:147:\"http://itcamefrombeyondpulp.com/wp-admin/plugins.php?action=deactivate&plugin=jetpack%2Fjetpack.php&plugin_status=all&paged=1&s&_wpnonce=85cfab5870\";}}','no'),(255,'jpsq_sync-1563747226.788729-183210-35','a:6:{i:0;s:21:\"jetpack_sync_callable\";i:1;a:2:{i:0;s:24:\"get_plugins_action_links\";i:1;a:0:{}}i:2;i:1;i:3;d:1563747226.7885940074920654296875;i:4;b:0;i:5;a:14:{s:13:\"wpcom_user_id\";N;s:16:\"external_user_id\";i:1;s:12:\"display_name\";s:9:\"mphillips\";s:10:\"user_email\";s:28:\"phillips.editorial@gmail.com\";s:10:\"user_roles\";a:1:{i:0;s:13:\"administrator\";}s:15:\"translated_role\";s:13:\"administrator\";s:7:\"is_cron\";b:0;s:7:\"is_rest\";b:0;s:9:\"is_xmlrpc\";b:0;s:10:\"is_wp_rest\";b:0;s:7:\"is_ajax\";b:0;s:11:\"is_wp_admin\";b:1;s:6:\"is_cli\";b:0;s:8:\"from_url\";s:147:\"http://itcamefrombeyondpulp.com/wp-admin/plugins.php?action=deactivate&plugin=jetpack%2Fjetpack.php&plugin_status=all&paged=1&s&_wpnonce=85cfab5870\";}}','no'),(256,'jpsq_sync-1563747226.789370-183210-36','a:6:{i:0;s:21:\"jetpack_sync_callable\";i:1;a:2:{i:0;s:14:\"active_modules\";i:1;a:0:{}}i:2;i:1;i:3;d:1563747226.7892410755157470703125;i:4;b:0;i:5;a:14:{s:13:\"wpcom_user_id\";N;s:16:\"external_user_id\";i:1;s:12:\"display_name\";s:9:\"mphillips\";s:10:\"user_email\";s:28:\"phillips.editorial@gmail.com\";s:10:\"user_roles\";a:1:{i:0;s:13:\"administrator\";}s:15:\"translated_role\";s:13:\"administrator\";s:7:\"is_cron\";b:0;s:7:\"is_rest\";b:0;s:9:\"is_xmlrpc\";b:0;s:10:\"is_wp_rest\";b:0;s:7:\"is_ajax\";b:0;s:11:\"is_wp_admin\";b:1;s:6:\"is_cli\";b:0;s:8:\"from_url\";s:147:\"http://itcamefrombeyondpulp.com/wp-admin/plugins.php?action=deactivate&plugin=jetpack%2Fjetpack.php&plugin_status=all&paged=1&s&_wpnonce=85cfab5870\";}}','no'),(257,'jpsq_sync-1563747226.790002-183210-37','a:6:{i:0;s:21:\"jetpack_sync_callable\";i:1;a:2:{i:0;s:16:\"hosting_provider\";i:1;s:7:\"unknown\";}i:2;i:1;i:3;d:1563747226.789865016937255859375;i:4;b:0;i:5;a:14:{s:13:\"wpcom_user_id\";N;s:16:\"external_user_id\";i:1;s:12:\"display_name\";s:9:\"mphillips\";s:10:\"user_email\";s:28:\"phillips.editorial@gmail.com\";s:10:\"user_roles\";a:1:{i:0;s:13:\"administrator\";}s:15:\"translated_role\";s:13:\"administrator\";s:7:\"is_cron\";b:0;s:7:\"is_rest\";b:0;s:9:\"is_xmlrpc\";b:0;s:10:\"is_wp_rest\";b:0;s:7:\"is_ajax\";b:0;s:11:\"is_wp_admin\";b:1;s:6:\"is_cli\";b:0;s:8:\"from_url\";s:147:\"http://itcamefrombeyondpulp.com/wp-admin/plugins.php?action=deactivate&plugin=jetpack%2Fjetpack.php&plugin_status=all&paged=1&s&_wpnonce=85cfab5870\";}}','no'),(258,'jpsq_sync-1563747226.790634-183210-38','a:6:{i:0;s:21:\"jetpack_sync_callable\";i:1;a:2:{i:0;s:6:\"locale\";i:1;s:5:\"en_US\";}i:2;i:1;i:3;d:1563747226.790503025054931640625;i:4;b:0;i:5;a:14:{s:13:\"wpcom_user_id\";N;s:16:\"external_user_id\";i:1;s:12:\"display_name\";s:9:\"mphillips\";s:10:\"user_email\";s:28:\"phillips.editorial@gmail.com\";s:10:\"user_roles\";a:1:{i:0;s:13:\"administrator\";}s:15:\"translated_role\";s:13:\"administrator\";s:7:\"is_cron\";b:0;s:7:\"is_rest\";b:0;s:9:\"is_xmlrpc\";b:0;s:10:\"is_wp_rest\";b:0;s:7:\"is_ajax\";b:0;s:11:\"is_wp_admin\";b:1;s:6:\"is_cli\";b:0;s:8:\"from_url\";s:147:\"http://itcamefrombeyondpulp.com/wp-admin/plugins.php?action=deactivate&plugin=jetpack%2Fjetpack.php&plugin_status=all&paged=1&s&_wpnonce=85cfab5870\";}}','no'),(259,'jpsq_sync-1563747226.791257-183210-39','a:6:{i:0;s:21:\"jetpack_sync_callable\";i:1;a:2:{i:0;s:13:\"site_icon_url\";i:1;b:0;}i:2;i:1;i:3;d:1563747226.7911250591278076171875;i:4;b:0;i:5;a:14:{s:13:\"wpcom_user_id\";N;s:16:\"external_user_id\";i:1;s:12:\"display_name\";s:9:\"mphillips\";s:10:\"user_email\";s:28:\"phillips.editorial@gmail.com\";s:10:\"user_roles\";a:1:{i:0;s:13:\"administrator\";}s:15:\"translated_role\";s:13:\"administrator\";s:7:\"is_cron\";b:0;s:7:\"is_rest\";b:0;s:9:\"is_xmlrpc\";b:0;s:10:\"is_wp_rest\";b:0;s:7:\"is_ajax\";b:0;s:11:\"is_wp_admin\";b:1;s:6:\"is_cli\";b:0;s:8:\"from_url\";s:147:\"http://itcamefrombeyondpulp.com/wp-admin/plugins.php?action=deactivate&plugin=jetpack%2Fjetpack.php&plugin_status=all&paged=1&s&_wpnonce=85cfab5870\";}}','no'),(260,'jpsq_sync-1563747226.792235-183210-40','a:6:{i:0;s:21:\"jetpack_sync_callable\";i:1;a:2:{i:0;s:5:\"roles\";i:1;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;}}}}i:2;i:1;i:3;d:1563747226.79209995269775390625;i:4;b:0;i:5;a:14:{s:13:\"wpcom_user_id\";N;s:16:\"external_user_id\";i:1;s:12:\"display_name\";s:9:\"mphillips\";s:10:\"user_email\";s:28:\"phillips.editorial@gmail.com\";s:10:\"user_roles\";a:1:{i:0;s:13:\"administrator\";}s:15:\"translated_role\";s:13:\"administrator\";s:7:\"is_cron\";b:0;s:7:\"is_rest\";b:0;s:9:\"is_xmlrpc\";b:0;s:10:\"is_wp_rest\";b:0;s:7:\"is_ajax\";b:0;s:11:\"is_wp_admin\";b:1;s:6:\"is_cli\";b:0;s:8:\"from_url\";s:147:\"http://itcamefrombeyondpulp.com/wp-admin/plugins.php?action=deactivate&plugin=jetpack%2Fjetpack.php&plugin_status=all&paged=1&s&_wpnonce=85cfab5870\";}}','no'),(261,'jpsq_sync-1563747226.793099-183210-41','a:6:{i:0;s:21:\"jetpack_sync_callable\";i:1;a:2:{i:0;s:8:\"timezone\";i:1;s:5:\"UTC+0\";}i:2;i:1;i:3;d:1563747226.792964935302734375;i:4;b:0;i:5;a:14:{s:13:\"wpcom_user_id\";N;s:16:\"external_user_id\";i:1;s:12:\"display_name\";s:9:\"mphillips\";s:10:\"user_email\";s:28:\"phillips.editorial@gmail.com\";s:10:\"user_roles\";a:1:{i:0;s:13:\"administrator\";}s:15:\"translated_role\";s:13:\"administrator\";s:7:\"is_cron\";b:0;s:7:\"is_rest\";b:0;s:9:\"is_xmlrpc\";b:0;s:10:\"is_wp_rest\";b:0;s:7:\"is_ajax\";b:0;s:11:\"is_wp_admin\";b:1;s:6:\"is_cli\";b:0;s:8:\"from_url\";s:147:\"http://itcamefrombeyondpulp.com/wp-admin/plugins.php?action=deactivate&plugin=jetpack%2Fjetpack.php&plugin_status=all&paged=1&s&_wpnonce=85cfab5870\";}}','no'),(262,'jpsq_sync-1563747226.793732-183210-42','a:6:{i:0;s:21:\"jetpack_sync_callable\";i:1;a:2:{i:0;s:24:\"available_jetpack_blocks\";i:1;a:0:{}}i:2;i:1;i:3;d:1563747226.79360103607177734375;i:4;b:0;i:5;a:14:{s:13:\"wpcom_user_id\";N;s:16:\"external_user_id\";i:1;s:12:\"display_name\";s:9:\"mphillips\";s:10:\"user_email\";s:28:\"phillips.editorial@gmail.com\";s:10:\"user_roles\";a:1:{i:0;s:13:\"administrator\";}s:15:\"translated_role\";s:13:\"administrator\";s:7:\"is_cron\";b:0;s:7:\"is_rest\";b:0;s:9:\"is_xmlrpc\";b:0;s:10:\"is_wp_rest\";b:0;s:7:\"is_ajax\";b:0;s:11:\"is_wp_admin\";b:1;s:6:\"is_cli\";b:0;s:8:\"from_url\";s:147:\"http://itcamefrombeyondpulp.com/wp-admin/plugins.php?action=deactivate&plugin=jetpack%2Fjetpack.php&plugin_status=all&paged=1&s&_wpnonce=85cfab5870\";}}','no'),(263,'jpsq_sync-1563747226.794373-183210-43','a:6:{i:0;s:21:\"jetpack_sync_callable\";i:1;a:2:{i:0;s:13:\"paused_themes\";i:1;a:0:{}}i:2;i:1;i:3;d:1563747226.7942409515380859375;i:4;b:0;i:5;a:14:{s:13:\"wpcom_user_id\";N;s:16:\"external_user_id\";i:1;s:12:\"display_name\";s:9:\"mphillips\";s:10:\"user_email\";s:28:\"phillips.editorial@gmail.com\";s:10:\"user_roles\";a:1:{i:0;s:13:\"administrator\";}s:15:\"translated_role\";s:13:\"administrator\";s:7:\"is_cron\";b:0;s:7:\"is_rest\";b:0;s:9:\"is_xmlrpc\";b:0;s:10:\"is_wp_rest\";b:0;s:7:\"is_ajax\";b:0;s:11:\"is_wp_admin\";b:1;s:6:\"is_cli\";b:0;s:8:\"from_url\";s:147:\"http://itcamefrombeyondpulp.com/wp-admin/plugins.php?action=deactivate&plugin=jetpack%2Fjetpack.php&plugin_status=all&paged=1&s&_wpnonce=85cfab5870\";}}','no'),(264,'jpsq_sync-1563747226.795009-183210-44','a:6:{i:0;s:21:\"jetpack_sync_callable\";i:1;a:2:{i:0;s:14:\"paused_plugins\";i:1;a:0:{}}i:2;i:1;i:3;d:1563747226.794869899749755859375;i:4;b:0;i:5;a:14:{s:13:\"wpcom_user_id\";N;s:16:\"external_user_id\";i:1;s:12:\"display_name\";s:9:\"mphillips\";s:10:\"user_email\";s:28:\"phillips.editorial@gmail.com\";s:10:\"user_roles\";a:1:{i:0;s:13:\"administrator\";}s:15:\"translated_role\";s:13:\"administrator\";s:7:\"is_cron\";b:0;s:7:\"is_rest\";b:0;s:9:\"is_xmlrpc\";b:0;s:10:\"is_wp_rest\";b:0;s:7:\"is_ajax\";b:0;s:11:\"is_wp_admin\";b:1;s:6:\"is_cli\";b:0;s:8:\"from_url\";s:147:\"http://itcamefrombeyondpulp.com/wp-admin/plugins.php?action=deactivate&plugin=jetpack%2Fjetpack.php&plugin_status=all&paged=1&s&_wpnonce=85cfab5870\";}}','no'),(265,'jetpack_callables_sync_checksum','a:33:{s:18:\"wp_max_upload_size\";i:3564436882;s:15:\"is_main_network\";i:734881840;s:13:\"is_multi_site\";i:734881840;s:17:\"main_network_site\";i:825858385;s:8:\"site_url\";i:825858385;s:8:\"home_url\";i:825858385;s:16:\"single_user_site\";i:4261170317;s:7:\"updates\";i:3425443202;s:28:\"has_file_system_write_access\";i:4261170317;s:21:\"is_version_controlled\";i:734881840;s:10:\"taxonomies\";i:382731269;s:10:\"post_types\";i:2868210918;s:18:\"post_type_features\";i:70187400;s:10:\"shortcodes\";i:1885404437;s:27:\"rest_api_allowed_post_types\";i:503776097;s:32:\"rest_api_allowed_public_metadata\";i:223132457;s:24:\"sso_is_two_step_required\";i:734881840;s:26:\"sso_should_hide_login_form\";i:734881840;s:18:\"sso_match_by_email\";i:4261170317;s:21:\"sso_new_user_override\";i:734881840;s:29:\"sso_bypass_default_login_form\";i:734881840;s:10:\"wp_version\";i:3219767013;s:11:\"get_plugins\";i:624580976;s:24:\"get_plugins_action_links\";i:223132457;s:14:\"active_modules\";i:223132457;s:16:\"hosting_provider\";i:769900095;s:6:\"locale\";i:110763218;s:13:\"site_icon_url\";i:734881840;s:5:\"roles\";i:2074191413;s:8:\"timezone\";i:3808505409;s:24:\"available_jetpack_blocks\";i:223132457;s:13:\"paused_themes\";i:223132457;s:14:\"paused_plugins\";i:223132457;}','no'),(266,'jpsq_sync_checkout','0:0','no'),(269,'jetpack_plugin_api_action_links','a:2:{s:19:\"jetpack/jetpack.php\";a:1:{s:7:\"Jetpack\";s:63:\"http://itcamefrombeyondpulp.com/wp-admin/admin.php?page=jetpack\";}s:24:\"wpforms-lite/wpforms.php\";a:1:{s:8:\"Settings\";s:72:\"http://itcamefrombeyondpulp.com/wp-admin/admin.php?page=wpforms-settings\";}}','yes'),(272,'jetpack_next_sync_time_sync','1563747286','yes'),(273,'jetpack_next_sync_time_full-sync-enqueue','1563747236','yes'),(284,'current_theme','Divi','yes'),(285,'theme_mods_Divi','a:5:{i:0;b:0;s:18:\"custom_css_post_id\";i:13;s:16:\"et_pb_css_synced\";s:3:\"yes\";s:18:\"nav_menu_locations\";a:3:{s:12:\"primary-menu\";i:2;s:14:\"secondary-menu\";i:0;s:11:\"footer-menu\";i:0;}s:39:\"et_updated_layouts_built_for_post_types\";s:3:\"yes\";}','yes'),(286,'theme_switched','','yes'),(287,'et_pb_cache_notice','a:1:{s:6:\"3.26.3\";s:6:\"ignore\";}','yes'),(292,'et_core_version','3.26.3','yes'),(294,'et_divi','a:154:{s:39:\"static_css_custom_css_safety_check_done\";b:1;s:23:\"2_5_flush_rewrite_rules\";s:4:\"done\";s:30:\"et_flush_rewrite_rules_library\";s:6:\"3.26.3\";s:31:\"divi_previous_installed_version\";s:0:\"\";s:29:\"divi_latest_installed_version\";s:6:\"3.26.3\";s:27:\"divi_skip_font_subset_force\";b:1;s:23:\"builder_custom_defaults\";O:8:\"stdClass\":2:{s:23:\"et_pb_section_fullwidth\";O:8:\"stdClass\":2:{s:17:\"width_last_edited\";s:10:\"on|desktop\";s:11:\"width_phone\";s:4:\"100%\";}s:13:\"et_pb_section\";O:8:\"stdClass\":2:{s:17:\"width_last_edited\";s:10:\"on|desktop\";s:11:\"width_phone\";s:4:\"100%\";}}s:33:\"customizer_settings_migrated_flag\";b:1;s:34:\"builder_custom_defaults_unmigrated\";b:0;s:40:\"divi_email_provider_credentials_migrated\";b:1;s:15:\"divi_1_3_images\";s:7:\"checked\";s:21:\"et_pb_layouts_updated\";b:1;s:30:\"library_removed_legacy_layouts\";b:1;s:30:\"divi_2_4_documentation_message\";s:9:\"triggered\";s:19:\"product_tour_status\";a:1:{i:1;s:3:\"off\";}s:12:\"header_style\";s:8:\"centered\";s:24:\"footer_widget_text_color\";s:7:\"#ffffff\";s:24:\"footer_widget_link_color\";s:7:\"#ffffff\";s:17:\"use_sidebar_width\";b:1;s:13:\"sidebar_width\";i:21;s:16:\"show_search_icon\";b:0;s:13:\"nav_fullwidth\";b:0;s:9:\"divi_logo\";s:0:\"\";s:14:\"divi_fixed_nav\";s:5:\"false\";s:26:\"divi_gallery_layout_enable\";s:5:\"false\";s:18:\"divi_color_palette\";s:63:\"#000000|#ffffff|#e02b20|#e09900|#edf000|#7cda24|#0c71c3|#8300e9\";s:15:\"divi_grab_image\";s:5:\"false\";s:15:\"divi_blog_style\";s:5:\"false\";s:12:\"divi_sidebar\";s:16:\"et_right_sidebar\";s:22:\"divi_shop_page_sidebar\";s:16:\"et_right_sidebar\";s:23:\"divi_show_facebook_icon\";s:5:\"false\";s:22:\"divi_show_twitter_icon\";s:5:\"false\";s:21:\"divi_show_google_icon\";s:5:\"false\";s:24:\"divi_show_instagram_icon\";s:5:\"false\";s:18:\"divi_show_rss_icon\";s:2:\"on\";s:17:\"divi_facebook_url\";s:1:\"#\";s:16:\"divi_twitter_url\";s:1:\"#\";s:15:\"divi_google_url\";s:1:\"#\";s:18:\"divi_instagram_url\";s:1:\"#\";s:12:\"divi_rss_url\";s:0:\"\";s:34:\"divi_woocommerce_archive_num_posts\";i:9;s:17:\"divi_catnum_posts\";i:6;s:21:\"divi_archivenum_posts\";i:5;s:20:\"divi_searchnum_posts\";i:5;s:17:\"divi_tagnum_posts\";i:5;s:16:\"divi_date_format\";s:6:\"M j, Y\";s:16:\"divi_use_excerpt\";s:5:\"false\";s:26:\"divi_responsive_shortcodes\";s:2:\"on\";s:33:\"divi_gf_enable_all_character_sets\";s:5:\"false\";s:16:\"divi_back_to_top\";s:5:\"false\";s:18:\"divi_smooth_scroll\";s:5:\"false\";s:25:\"divi_disable_translations\";s:5:\"false\";s:27:\"divi_minify_combine_scripts\";s:2:\"on\";s:26:\"divi_minify_combine_styles\";s:2:\"on\";s:15:\"divi_custom_css\";s:80:\"/* Hide the Header and Logo */\r\n#main-header {\r\n    display: none !important;\r\n}\";s:21:\"divi_enable_dropdowns\";s:5:\"false\";s:14:\"divi_home_link\";s:5:\"false\";s:15:\"divi_sort_pages\";s:10:\"post_title\";s:15:\"divi_order_page\";s:3:\"asc\";s:22:\"divi_tiers_shown_pages\";i:3;s:32:\"divi_enable_dropdowns_categories\";s:5:\"false\";s:21:\"divi_categories_empty\";s:2:\"on\";s:27:\"divi_tiers_shown_categories\";i:3;s:13:\"divi_sort_cat\";s:4:\"name\";s:14:\"divi_order_cat\";s:3:\"asc\";s:20:\"divi_disable_toptier\";s:5:\"false\";s:25:\"divi_scroll_to_anchor_fix\";s:5:\"false\";s:27:\"et_pb_post_type_integration\";a:3:{s:4:\"post\";s:2:\"on\";s:4:\"page\";s:2:\"on\";s:7:\"project\";s:2:\"on\";}s:21:\"et_pb_static_css_file\";s:2:\"on\";s:19:\"et_pb_css_in_footer\";s:3:\"off\";s:25:\"et_pb_product_tour_global\";s:2:\"on\";s:24:\"et_enable_classic_editor\";s:2:\"on\";s:14:\"divi_postinfo2\";a:0:{}s:22:\"divi_show_postcomments\";s:5:\"false\";s:15:\"divi_thumbnails\";s:5:\"false\";s:20:\"divi_page_thumbnails\";s:5:\"false\";s:23:\"divi_show_pagescomments\";s:5:\"false\";s:14:\"divi_postinfo1\";a:0:{}s:21:\"divi_thumbnails_index\";s:5:\"false\";s:19:\"divi_seo_home_title\";s:5:\"false\";s:25:\"divi_seo_home_description\";s:5:\"false\";s:22:\"divi_seo_home_keywords\";s:5:\"false\";s:23:\"divi_seo_home_canonical\";s:5:\"false\";s:23:\"divi_seo_home_titletext\";s:0:\"\";s:29:\"divi_seo_home_descriptiontext\";s:0:\"\";s:26:\"divi_seo_home_keywordstext\";s:0:\"\";s:18:\"divi_seo_home_type\";s:27:\"BlogName | Blog description\";s:22:\"divi_seo_home_separate\";s:3:\" | \";s:21:\"divi_seo_single_title\";s:5:\"false\";s:27:\"divi_seo_single_description\";s:5:\"false\";s:24:\"divi_seo_single_keywords\";s:5:\"false\";s:25:\"divi_seo_single_canonical\";s:5:\"false\";s:27:\"divi_seo_single_field_title\";s:9:\"seo_title\";s:33:\"divi_seo_single_field_description\";s:15:\"seo_description\";s:30:\"divi_seo_single_field_keywords\";s:12:\"seo_keywords\";s:20:\"divi_seo_single_type\";s:21:\"Post title | BlogName\";s:24:\"divi_seo_single_separate\";s:3:\" | \";s:24:\"divi_seo_index_canonical\";s:5:\"false\";s:26:\"divi_seo_index_description\";s:5:\"false\";s:19:\"divi_seo_index_type\";s:24:\"Category name | BlogName\";s:23:\"divi_seo_index_separate\";s:3:\" | \";s:28:\"divi_integrate_header_enable\";s:2:\"on\";s:26:\"divi_integrate_body_enable\";s:2:\"on\";s:31:\"divi_integrate_singletop_enable\";s:2:\"on\";s:34:\"divi_integrate_singlebottom_enable\";s:2:\"on\";s:21:\"divi_integration_head\";s:0:\"\";s:21:\"divi_integration_body\";s:0:\"\";s:27:\"divi_integration_single_top\";s:0:\"\";s:30:\"divi_integration_single_bottom\";s:0:\"\";s:15:\"divi_468_enable\";s:5:\"false\";s:14:\"divi_468_image\";s:0:\"\";s:12:\"divi_468_url\";s:0:\"\";s:16:\"divi_468_adsense\";s:0:\"\";s:14:\"divi_menupages\";a:1:{i:0;i:17;}s:15:\"hide_fixed_logo\";b:0;s:32:\"et_fb_pref_settings_bar_location\";s:6:\"bottom\";s:28:\"et_fb_pref_builder_animation\";s:4:\"true\";s:41:\"et_fb_pref_builder_display_modal_settings\";s:5:\"false\";s:39:\"et_fb_pref_builder_enable_dummy_content\";s:4:\"true\";s:21:\"et_fb_pref_event_mode\";s:5:\"click\";s:20:\"et_fb_pref_view_mode\";s:7:\"desktop\";s:32:\"et_fb_pref_hide_disabled_modules\";s:5:\"false\";s:28:\"et_fb_pref_history_intervals\";i:1;s:29:\"et_fb_pref_page_creation_flow\";s:7:\"default\";s:42:\"et_fb_pref_quick_actions_always_start_with\";s:7:\"nothing\";s:44:\"et_fb_pref_quick_actions_show_recent_queries\";s:3:\"off\";s:39:\"et_fb_pref_quick_actions_recent_queries\";s:0:\"\";s:40:\"et_fb_pref_quick_actions_recent_category\";s:0:\"\";s:27:\"et_fb_pref_modal_preference\";s:7:\"default\";s:30:\"et_fb_pref_modal_snap_location\";s:0:\"\";s:21:\"et_fb_pref_modal_snap\";s:5:\"false\";s:27:\"et_fb_pref_modal_fullscreen\";s:5:\"false\";s:32:\"et_fb_pref_modal_dimension_width\";i:430;s:33:\"et_fb_pref_modal_dimension_height\";i:400;s:27:\"et_fb_pref_modal_position_x\";i:30;s:27:\"et_fb_pref_modal_position_y\";i:50;s:24:\"et_fb_pref_toolbar_click\";s:5:\"false\";s:26:\"et_fb_pref_toolbar_desktop\";s:4:\"true\";s:23:\"et_fb_pref_toolbar_grid\";s:5:\"false\";s:24:\"et_fb_pref_toolbar_hover\";s:5:\"false\";s:24:\"et_fb_pref_toolbar_phone\";s:4:\"true\";s:25:\"et_fb_pref_toolbar_tablet\";s:4:\"true\";s:28:\"et_fb_pref_toolbar_wireframe\";s:4:\"true\";s:23:\"et_fb_pref_toolbar_zoom\";s:4:\"true\";s:13:\"divi_menucats\";a:3:{i:0;i:7;i:1;i:6;i:2;i:1;}s:26:\"divi_bfb_optin_modal_shown\";s:3:\"yes\";s:11:\"menu_height\";i:35;s:11:\"logo_height\";i:100;s:21:\"primary_nav_font_size\";i:20;s:24:\"primary_nav_font_spacing\";i:5;s:14:\"primary_nav_bg\";s:7:\"#e02b20\";s:9:\"menu_link\";s:7:\"#ffffff\";s:22:\"primary_nav_font_style\";s:14:\"bold|uppercase\";s:31:\"builder_custom_defaults_history\";O:8:\"stdClass\":2:{s:7:\"history\";a:2:{i:0;O:8:\"stdClass\":3:{s:8:\"settings\";O:8:\"stdClass\":1:{s:23:\"et_pb_section_fullwidth\";O:8:\"stdClass\":2:{s:17:\"width_last_edited\";s:10:\"on|desktop\";s:11:\"width_phone\";s:4:\"100%\";}}s:4:\"time\";i:1564110699416;s:5:\"label\";s:14:\"Edited Section\";}i:1;O:8:\"stdClass\":3:{s:8:\"settings\";r:8;s:4:\"time\";i:1564110854541;s:5:\"label\";s:14:\"Edited Section\";}}s:5:\"index\";s:1:\"1\";}}','yes'),(295,'widget_aboutmewidget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(296,'widget_adsensewidget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(297,'widget_advwidget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(298,'shop_catalog_image_size','a:3:{s:5:\"width\";s:3:\"400\";s:6:\"height\";s:3:\"400\";s:4:\"crop\";i:1;}','yes'),(299,'shop_single_image_size','a:3:{s:5:\"width\";s:3:\"510\";s:6:\"height\";s:4:\"9999\";s:4:\"crop\";i:0;}','yes'),(300,'shop_thumbnail_image_size','a:3:{s:5:\"width\";s:3:\"157\";s:6:\"height\";s:3:\"157\";s:4:\"crop\";i:1;}','yes'),(301,'et_support_site_id','-KU=@SO4NWJ0Dkm#c6^Y','yes'),(302,'et_safe_mode_plugins_whitelist','a:6:{i:0;s:27:\"ari-adminer/ari-adminer.php\";i:1;s:15:\"etdev/etdev.php\";i:2;s:29:\"divi-builder/divi-builder.php\";i:3;s:31:\"query-monitor/query-monitor.php\";i:4;s:27:\"woocommerce/woocommerce.php\";i:5;s:47:\"really-simple-ssl/rlrsssl-really-simple-ssl.php\";}','yes'),(303,'et_support_center_installed','true','yes'),(304,'et_images_temp_folder','/home/goatdo6/itcamefrombeyondpulp.com/wp-content/uploads/et_temp','yes'),(305,'et_schedule_clean_images_last_time','1566795130','yes'),(306,'et_bfb_settings','a:1:{s:10:\"enable_bfb\";s:3:\"off\";}','yes'),(307,'et_pb_builder_options','a:2:{i:0;b:0;s:35:\"email_provider_credentials_migrated\";b:1;}','yes'),(309,'et_google_api_settings','a:3:{s:7:\"api_key\";s:0:\"\";s:26:\"enqueue_google_maps_script\";s:2:\"on\";s:16:\"use_google_fonts\";s:2:\"on\";}','yes'),(310,'et_automatic_updates_options','a:2:{s:8:\"username\";s:0:\"\";s:7:\"api_key\";s:0:\"\";}','no'),(365,'category_children','a:0:{}','yes');
/*!40000 ALTER TABLE `wp6h_options` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp6h_postmeta`
--

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

--
-- Dumping data for table `wp6h_postmeta`
--

LOCK TABLES `wp6h_postmeta` WRITE;
/*!40000 ALTER TABLE `wp6h_postmeta` DISABLE KEYS */;
INSERT INTO `wp6h_postmeta` VALUES (23,16,'_wp_attached_file','2019/07/itfbp-header.jpg'),(24,16,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1080;s:4:\"file\";s:24:\"2019/07/itfbp-header.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"itfbp-header-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"itfbp-header-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:24:\"itfbp-header-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:25:\"itfbp-header-1024x576.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:24:\"itfbp-header-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:25:\"itfbp-header-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:24:\"itfbp-header-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:24:\"itfbp-header-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:25:\"itfbp-header-1080x608.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:608;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:24:\"itfbp-header-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(25,17,'_edit_lock','1564005591:1'),(26,17,'_et_pb_use_builder','on'),(27,17,'_edit_last','1'),(28,17,'_et_pb_post_hide_nav','default'),(29,17,'_et_pb_page_layout','et_right_sidebar'),(30,17,'_et_pb_side_nav','off'),(31,17,'_et_pb_built_for_post_type','page'),(449,17,'_thumbnail_id',''),(33,17,'_et_pb_enable_shortcode_tracking',''),(34,17,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"17\" /]'),(35,17,'_et_pb_custom_css',''),(36,17,'_et_pb_gutter_width','3'),(160,17,'_wp_page_template','default'),(38,17,'_et_pb_first_image',''),(39,17,'_et_pb_truncate_post',''),(40,17,'_et_builder_version','VB|Divi|3.26.3'),(41,17,'_et_pb_show_page_creation','off'),(44,22,'_wp_attached_file','2019/07/11.jpg'),(45,22,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1;s:6:\"height\";i:1;s:4:\"file\";s:14:\"2019/07/11.jpg\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(795,343,'_edit_last','1'),(83,33,'_edit_last','1'),(84,33,'_edit_lock','1566180911:1'),(86,33,'_wp_page_template','default'),(87,33,'_et_pb_post_hide_nav','default'),(88,33,'_et_pb_page_layout','et_right_sidebar'),(89,33,'_et_pb_side_nav','off'),(90,33,'_et_pb_use_builder','on'),(91,33,'_et_builder_version','BB|Divi|3.26.3'),(92,33,'_et_pb_show_page_creation','off'),(93,33,'_et_pb_first_image',''),(94,33,'_et_pb_truncate_post',''),(202,33,'_et_pb_ab_stats_refresh_interval','hourly'),(96,33,'_et_pb_old_content','<p>[et_pb_section bb_built=\"1\"][et_pb_row][/et_pb_row][/et_pb_section]</p>'),(97,33,'_et_pb_enable_shortcode_tracking',''),(98,33,'_et_pb_custom_css',''),(99,33,'_et_pb_gutter_width','3'),(100,33,'_et_pb_built_for_post_type','page'),(102,33,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"33\" /]'),(203,74,'_et_pb_built_for_post_type','page'),(104,39,'_edit_last','1'),(105,39,'_edit_lock','1564087902:1'),(124,39,'_et_pb_built_for_post_type','page'),(107,39,'_et_post_bg_color','#ffffff'),(108,39,'_et_post_bg_layout','light'),(109,39,'_et_pb_show_title','off'),(110,39,'_et_pb_post_hide_nav','default'),(111,39,'_et_pb_page_layout','et_no_sidebar'),(112,39,'_et_pb_side_nav','off'),(113,39,'_et_pb_use_builder','on'),(114,39,'_et_builder_version','BB|Divi|3.26.3'),(115,39,'_et_pb_show_page_creation','off'),(116,39,'_et_pb_first_image',''),(117,39,'_et_pb_truncate_post',''),(155,39,'_et_pb_ab_stats_refresh_interval','hourly'),(119,39,'_et_pb_old_content',''),(120,39,'_et_pb_enable_shortcode_tracking',''),(121,39,'_et_pb_custom_css',''),(122,39,'_et_pb_gutter_width','3'),(127,39,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"39\" /]'),(128,39,'_thumbnail_id','52'),(134,45,'_edit_last','1'),(135,45,'_edit_lock','1564869233:1'),(136,45,'_wp_page_template','default'),(137,45,'_et_pb_post_hide_nav','default'),(138,45,'_et_pb_page_layout','et_right_sidebar'),(139,45,'_et_pb_side_nav','off'),(140,45,'_et_pb_use_builder','on'),(141,45,'_et_builder_version','BB|Divi|3.26.3'),(142,45,'_et_pb_show_page_creation','off'),(143,45,'_et_pb_first_image',''),(144,45,'_et_pb_truncate_post',''),(704,45,'_et_pb_ab_stats_refresh_interval','hourly'),(146,45,'_et_pb_old_content',''),(147,45,'_et_pb_enable_shortcode_tracking',''),(148,45,'_et_pb_custom_css',''),(149,45,'_et_pb_gutter_width','3'),(152,52,'_wp_attached_file','2019/07/serenity.jpg'),(151,39,'_wp_old_slug','movie-review-serenity-2005'),(153,52,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1080;s:6:\"height\";i:450;s:4:\"file\";s:20:\"2019/07/serenity.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"serenity-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"serenity-300x125.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:125;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:20:\"serenity-768x320.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"serenity-1024x427.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:427;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:20:\"serenity-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:21:\"serenity-1080x450.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:20:\"serenity-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:20:\"serenity-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:21:\"serenity-1080x450.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:20:\"serenity-400x450.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(156,45,'_et_pb_built_for_post_type','page'),(158,45,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"45\" /]'),(448,17,'_et_pb_ab_subjects',''),(162,17,'_et_pb_old_content',''),(163,59,'_edit_last','1'),(164,59,'_edit_lock','1566183504:1'),(165,59,'_wp_page_template','default'),(166,59,'_et_pb_post_hide_nav','default'),(167,59,'_et_pb_page_layout','et_right_sidebar'),(168,59,'_et_pb_side_nav','off'),(169,59,'_et_pb_use_builder','on'),(170,59,'_et_builder_version','BB|Divi|3.26.3'),(171,59,'_et_pb_show_page_creation','off'),(172,59,'_et_pb_first_image',''),(173,59,'_et_pb_truncate_post',''),(201,59,'_et_pb_ab_stats_refresh_interval','hourly'),(175,59,'_et_pb_old_content',''),(176,59,'_et_pb_enable_shortcode_tracking',''),(177,59,'_et_pb_custom_css',''),(178,59,'_et_pb_gutter_width','3'),(179,59,'_et_pb_built_for_post_type','page'),(181,59,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"59\" /]'),(220,110,'_et_pb_built_for_post_type','post'),(231,112,'_et_pb_built_for_post_type','post'),(232,112,'_edit_lock','1564009906:1'),(233,114,'_wp_attached_file','2019/07/dolphins.jpg'),(234,114,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:400;s:6:\"height\";i:678;s:4:\"file\";s:20:\"2019/07/dolphins.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"dolphins-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"dolphins-177x300.jpg\";s:5:\"width\";i:177;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:20:\"dolphins-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:20:\"dolphins-400x675.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:20:\"dolphins-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:20:\"dolphins-400x382.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:20:\"dolphins-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(235,112,'_edit_last','1'),(236,112,'_et_pb_use_builder','on'),(237,112,'_et_builder_version','BB|Divi|3.26.3'),(238,112,'_et_pb_first_image',''),(239,112,'_et_pb_truncate_post',''),(240,112,'_et_pb_ab_stats_refresh_interval','hourly'),(241,112,'_et_pb_old_content',''),(242,112,'_et_pb_enable_shortcode_tracking',''),(243,112,'_et_pb_custom_css',''),(244,112,'_et_pb_gutter_width','3'),(245,117,'_edit_last','1'),(246,117,'_edit_lock','1564087839:1'),(247,120,'_wp_attached_file','2019/07/children-of-men.png'),(248,120,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1280;s:6:\"height\";i:720;s:4:\"file\";s:27:\"2019/07/children-of-men.png\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"children-of-men-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"children-of-men-300x169.png\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:27:\"children-of-men-768x432.png\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:28:\"children-of-men-1024x576.png\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:27:\"children-of-men-400x250.png\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/png\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:28:\"children-of-men-1080x675.png\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:27:\"children-of-men-400x284.png\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/png\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:27:\"children-of-men-510x382.png\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:9:\"image/png\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:28:\"children-of-men-1080x608.png\";s:5:\"width\";i:1080;s:6:\"height\";i:608;s:9:\"mime-type\";s:9:\"image/png\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:27:\"children-of-men-400x516.png\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(249,117,'_thumbnail_id','120'),(267,125,'_edit_last','1'),(251,117,'_et_post_bg_color','#ffffff'),(252,117,'_et_post_bg_layout','light'),(253,117,'_et_pb_show_title','off'),(254,117,'_et_pb_post_hide_nav','default'),(255,117,'_et_pb_page_layout','et_no_sidebar'),(256,117,'_et_pb_side_nav','off'),(257,117,'_et_pb_use_builder','on'),(258,117,'_et_builder_version','VB|Divi|3.26.3'),(259,117,'_et_pb_show_page_creation','off'),(260,117,'_et_pb_first_image',''),(261,117,'_et_pb_truncate_post',''),(630,117,'_et_pb_ab_subjects',''),(263,117,'_et_pb_old_content',''),(264,117,'_et_pb_enable_shortcode_tracking',''),(265,117,'_et_pb_custom_css',''),(266,117,'_et_pb_gutter_width','3'),(268,125,'_edit_lock','1564087793:1'),(269,127,'_wp_attached_file','2019/07/cloverfield.jpg'),(270,127,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1056;s:4:\"file\";s:23:\"2019/07/cloverfield.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"cloverfield-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"cloverfield-300x165.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:165;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:23:\"cloverfield-768x422.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:422;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:24:\"cloverfield-1024x563.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:563;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:23:\"cloverfield-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:24:\"cloverfield-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:23:\"cloverfield-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:23:\"cloverfield-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:24:\"cloverfield-1080x594.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:594;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:23:\"cloverfield-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(271,125,'_thumbnail_id','127'),(289,131,'_edit_last','1'),(273,125,'_et_post_bg_color','#ffffff'),(274,125,'_et_post_bg_layout','light'),(275,125,'_et_pb_show_title','off'),(276,125,'_et_pb_post_hide_nav','default'),(277,125,'_et_pb_page_layout','et_no_sidebar'),(278,125,'_et_pb_side_nav','off'),(279,125,'_et_pb_use_builder','on'),(280,125,'_et_builder_version','BB|Divi|3.26.3'),(281,125,'_et_pb_show_page_creation','off'),(282,125,'_et_pb_first_image',''),(283,125,'_et_pb_truncate_post',''),(284,125,'_et_pb_ab_stats_refresh_interval','hourly'),(285,125,'_et_pb_old_content',''),(286,125,'_et_pb_enable_shortcode_tracking',''),(287,125,'_et_pb_custom_css',''),(288,125,'_et_pb_gutter_width','3'),(290,131,'_edit_lock','1564087749:1'),(291,133,'_wp_attached_file','2019/07/dark-knight.jpg'),(292,133,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1296;s:6:\"height\";i:730;s:4:\"file\";s:23:\"2019/07/dark-knight.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"dark-knight-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"dark-knight-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:23:\"dark-knight-768x433.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:433;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:24:\"dark-knight-1024x577.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:577;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:23:\"dark-knight-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:24:\"dark-knight-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:23:\"dark-knight-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:23:\"dark-knight-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:24:\"dark-knight-1080x608.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:608;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:23:\"dark-knight-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(310,137,'_edit_last','1'),(294,131,'_et_post_bg_color','#ffffff'),(295,131,'_et_post_bg_layout','light'),(296,131,'_et_pb_show_title','off'),(297,131,'_et_pb_post_hide_nav','default'),(298,131,'_et_pb_page_layout','et_no_sidebar'),(299,131,'_et_pb_side_nav','off'),(300,131,'_et_pb_use_builder','on'),(301,131,'_et_builder_version','BB|Divi|3.26.3'),(302,131,'_et_pb_show_page_creation','off'),(303,131,'_et_pb_first_image',''),(304,131,'_et_pb_truncate_post',''),(305,131,'_et_pb_ab_stats_refresh_interval','hourly'),(306,131,'_et_pb_old_content',''),(307,131,'_et_pb_enable_shortcode_tracking',''),(308,131,'_et_pb_custom_css',''),(309,131,'_et_pb_gutter_width','3'),(311,137,'_edit_lock','1564087691:1'),(312,139,'_wp_attached_file','2019/07/fountain.jpeg'),(313,139,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1080;s:4:\"file\";s:21:\"2019/07/fountain.jpeg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"fountain-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"fountain-300x169.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:21:\"fountain-768x432.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:22:\"fountain-1024x576.jpeg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:21:\"fountain-400x250.jpeg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:22:\"fountain-1080x675.jpeg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:21:\"fountain-400x284.jpeg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:21:\"fountain-510x382.jpeg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:22:\"fountain-1080x608.jpeg\";s:5:\"width\";i:1080;s:6:\"height\";i:608;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:21:\"fountain-400x516.jpeg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(314,137,'_thumbnail_id','139'),(332,144,'_edit_last','1'),(316,137,'_et_post_bg_color','#ffffff'),(317,137,'_et_post_bg_layout','light'),(318,137,'_et_pb_show_title','off'),(319,137,'_et_pb_post_hide_nav','default'),(320,137,'_et_pb_page_layout','et_no_sidebar'),(321,137,'_et_pb_side_nav','off'),(322,137,'_et_pb_use_builder','on'),(323,137,'_et_builder_version','BB|Divi|3.26.3'),(324,137,'_et_pb_show_page_creation','off'),(325,137,'_et_pb_first_image',''),(326,137,'_et_pb_truncate_post',''),(327,137,'_et_pb_ab_stats_refresh_interval','hourly'),(328,137,'_et_pb_old_content',''),(329,137,'_et_pb_enable_shortcode_tracking',''),(330,137,'_et_pb_custom_css',''),(331,137,'_et_pb_gutter_width','3'),(333,144,'_edit_lock','1564010340:1'),(334,146,'_wp_attached_file','2019/07/hardware.jpeg'),(335,146,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1838;s:6:\"height\";i:995;s:4:\"file\";s:21:\"2019/07/hardware.jpeg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"hardware-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"hardware-300x162.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:162;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:21:\"hardware-768x416.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:416;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:22:\"hardware-1024x554.jpeg\";s:5:\"width\";i:1024;s:6:\"height\";i:554;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:21:\"hardware-400x250.jpeg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:22:\"hardware-1080x675.jpeg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:21:\"hardware-400x284.jpeg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:21:\"hardware-510x382.jpeg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:22:\"hardware-1080x585.jpeg\";s:5:\"width\";i:1080;s:6:\"height\";i:585;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:21:\"hardware-400x516.jpeg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(336,144,'_thumbnail_id','146'),(338,144,'_et_post_bg_color','#ffffff'),(339,144,'_et_post_bg_layout','light'),(340,144,'_et_pb_show_title','off'),(341,144,'_et_pb_post_hide_nav','default'),(342,144,'_et_pb_page_layout','et_no_sidebar'),(343,144,'_et_pb_side_nav','off'),(344,144,'_et_pb_use_builder','on'),(345,144,'_et_builder_version','BB|Divi|3.26.3'),(346,144,'_et_pb_show_page_creation','off'),(347,144,'_et_pb_first_image',''),(348,144,'_et_pb_truncate_post',''),(349,144,'_et_pb_ab_stats_refresh_interval','hourly'),(350,144,'_et_pb_old_content',''),(351,144,'_et_pb_enable_shortcode_tracking',''),(352,144,'_et_pb_custom_css',''),(353,144,'_et_pb_gutter_width','3'),(357,157,'_edit_last','1'),(358,157,'_edit_lock','1564010259:1'),(359,159,'_wp_attached_file','2019/07/maniac.jpg'),(360,159,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1500;s:6:\"height\";i:844;s:4:\"file\";s:18:\"2019/07/maniac.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"maniac-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"maniac-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:18:\"maniac-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:19:\"maniac-1024x576.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:18:\"maniac-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:19:\"maniac-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:18:\"maniac-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:18:\"maniac-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:19:\"maniac-1080x608.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:608;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:18:\"maniac-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(361,157,'_thumbnail_id','159'),(379,161,'_edit_last','1'),(363,157,'_et_post_bg_color','#ffffff'),(364,157,'_et_post_bg_layout','light'),(365,157,'_et_pb_show_title','off'),(366,157,'_et_pb_post_hide_nav','default'),(367,157,'_et_pb_page_layout','et_no_sidebar'),(368,157,'_et_pb_side_nav','off'),(369,157,'_et_pb_use_builder','on'),(370,157,'_et_builder_version','BB|Divi|3.26.3'),(371,157,'_et_pb_show_page_creation','off'),(372,157,'_et_pb_first_image',''),(373,157,'_et_pb_truncate_post',''),(374,157,'_et_pb_ab_stats_refresh_interval','hourly'),(375,157,'_et_pb_old_content',''),(376,157,'_et_pb_enable_shortcode_tracking',''),(377,157,'_et_pb_custom_css',''),(378,157,'_et_pb_gutter_width','3'),(380,161,'_edit_lock','1564010176:1'),(381,162,'_wp_attached_file','2019/07/hp-sorc.jpg'),(382,162,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1080;s:4:\"file\";s:19:\"2019/07/hp-sorc.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"hp-sorc-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:19:\"hp-sorc-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:19:\"hp-sorc-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:20:\"hp-sorc-1024x576.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:19:\"hp-sorc-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:20:\"hp-sorc-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:19:\"hp-sorc-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:19:\"hp-sorc-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:20:\"hp-sorc-1080x608.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:608;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:19:\"hp-sorc-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:32:\"©Warner Bros/Everett Collection\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:88:\"HARRY POTTER AND THE SORCERER\'S STONE, Daniel Radcliffe, Emma Watson, Rupert Grint, 2001\";s:17:\"created_timestamp\";s:10:\"1010361600\";s:9:\"copyright\";s:66:\"Copyright © ©Warner Bros/Everett Collection / Everett Collection\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:13:\"MSDHAPO EC037\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:18:{i:0;s:21:\"2001 catalogue titles\";i:1;s:5:\"Alarm\";i:2;s:12:\"Apprehension\";i:3;s:22:\"Character and Behavior\";i:4;s:9:\"Cold feet\";i:5;s:5:\"Dread\";i:6;s:4:\"Fear\";i:7;s:6:\"Fright\";i:8;s:12:\"Grint,rupert\";i:9;s:6:\"Horror\";i:10;s:7:\"M-jan02\";i:11;s:24:\"Personality and Behavior\";i:12;s:16:\"Radcliffe,daniel\";i:13;s:14:\"School uniform\";i:14;s:9:\"Screaming\";i:15;s:11:\"Watson,emma\";i:16;s:16:\"Weak and Fearful\";i:17;s:7:\"Yelling\";}}}'),(383,163,'_wp_attached_file','2019/07/hp-sorc-1.jpg'),(384,163,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1080;s:4:\"file\";s:21:\"2019/07/hp-sorc-1.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"hp-sorc-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"hp-sorc-1-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:21:\"hp-sorc-1-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:22:\"hp-sorc-1-1024x576.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:21:\"hp-sorc-1-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:22:\"hp-sorc-1-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:21:\"hp-sorc-1-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:21:\"hp-sorc-1-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:22:\"hp-sorc-1-1080x608.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:608;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:21:\"hp-sorc-1-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:32:\"©Warner Bros/Everett Collection\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:88:\"HARRY POTTER AND THE SORCERER\'S STONE, Daniel Radcliffe, Emma Watson, Rupert Grint, 2001\";s:17:\"created_timestamp\";s:10:\"1010361600\";s:9:\"copyright\";s:66:\"Copyright © ©Warner Bros/Everett Collection / Everett Collection\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:13:\"MSDHAPO EC037\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:18:{i:0;s:21:\"2001 catalogue titles\";i:1;s:5:\"Alarm\";i:2;s:12:\"Apprehension\";i:3;s:22:\"Character and Behavior\";i:4;s:9:\"Cold feet\";i:5;s:5:\"Dread\";i:6;s:4:\"Fear\";i:7;s:6:\"Fright\";i:8;s:12:\"Grint,rupert\";i:9;s:6:\"Horror\";i:10;s:7:\"M-jan02\";i:11;s:24:\"Personality and Behavior\";i:12;s:16:\"Radcliffe,daniel\";i:13;s:14:\"School uniform\";i:14;s:9:\"Screaming\";i:15;s:11:\"Watson,emma\";i:16;s:16:\"Weak and Fearful\";i:17;s:7:\"Yelling\";}}}'),(385,161,'_thumbnail_id','163'),(403,166,'_edit_last','1'),(387,161,'_et_post_bg_color','#ffffff'),(388,161,'_et_post_bg_layout','light'),(389,161,'_et_pb_show_title','off'),(390,161,'_et_pb_post_hide_nav','default'),(391,161,'_et_pb_page_layout','et_no_sidebar'),(392,161,'_et_pb_side_nav','off'),(393,161,'_et_pb_use_builder','on'),(394,161,'_et_builder_version','BB|Divi|3.26.3'),(395,161,'_et_pb_show_page_creation','off'),(396,161,'_et_pb_first_image',''),(397,161,'_et_pb_truncate_post',''),(398,161,'_et_pb_ab_stats_refresh_interval','hourly'),(399,161,'_et_pb_old_content',''),(400,161,'_et_pb_enable_shortcode_tracking',''),(401,161,'_et_pb_custom_css',''),(402,161,'_et_pb_gutter_width','3'),(404,166,'_edit_lock','1564010016:1'),(405,167,'_wp_attached_file','2019/07/hp-cham.jpg'),(406,167,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:800;s:4:\"file\";s:19:\"2019/07/hp-cham.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"hp-cham-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:19:\"hp-cham-300x125.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:125;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:19:\"hp-cham-768x320.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:20:\"hp-cham-1024x427.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:427;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:19:\"hp-cham-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:20:\"hp-cham-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:19:\"hp-cham-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:19:\"hp-cham-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:20:\"hp-cham-1080x450.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:19:\"hp-cham-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(407,168,'_wp_attached_file','2019/07/hp-cham-1.jpg'),(408,168,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:800;s:4:\"file\";s:21:\"2019/07/hp-cham-1.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"hp-cham-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"hp-cham-1-300x125.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:125;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:21:\"hp-cham-1-768x320.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:22:\"hp-cham-1-1024x427.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:427;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:21:\"hp-cham-1-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:22:\"hp-cham-1-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:21:\"hp-cham-1-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:21:\"hp-cham-1-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:22:\"hp-cham-1-1080x450.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:21:\"hp-cham-1-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(409,166,'_thumbnail_id','168'),(411,166,'_et_post_bg_color','#ffffff'),(412,166,'_et_post_bg_layout','light'),(413,166,'_et_pb_show_title','off'),(414,166,'_et_pb_post_hide_nav','default'),(415,166,'_et_pb_page_layout','et_no_sidebar'),(416,166,'_et_pb_side_nav','off'),(417,166,'_et_pb_use_builder','on'),(418,166,'_et_builder_version','BB|Divi|3.26.3'),(419,166,'_et_pb_show_page_creation','off'),(420,166,'_et_pb_first_image',''),(421,166,'_et_pb_truncate_post',''),(422,166,'_et_pb_ab_stats_refresh_interval','hourly'),(423,166,'_et_pb_old_content',''),(424,166,'_et_pb_enable_shortcode_tracking',''),(425,166,'_et_pb_custom_css',''),(426,166,'_et_pb_gutter_width','3'),(631,117,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"117\" /]'),(574,274,'_et_pb_show_page_creation','on'),(575,274,'_et_pb_first_image',''),(576,274,'_et_pb_truncate_post','<p><div class=\"et_pb_section et_pb_section_11 et_section_regular\">\n				\n				\n				\n				\n					<div class=\"et_pb_row et_pb_row_4\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_4  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_module et_pb_image et_pb_image_4\">\n				\n				\n				<a href=\"http://itcamefrombeyondpulp.com\"><span class=\"et_pb_image_wrap \"><img src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/header.jpg\" alt=\"\" /></span></a>\n			</div>\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row -->\n				\n				\n			</div> <!-- .et_pb_section --><div class=\"et_pb_section et_pb_section_13 et_pb_fullwidth_section et_section_regular\">\n				\n				\n				\n				\n					<div class=\"et_pb_with_border et_pb_module et_pb_fullwidth_menu et_pb_fullwidth_menu_2 et_pb_bg_layout_dark  et_pb_text_align_center et_dropdown_animation_fade\">\n				\n				\n				<div class=\"et_pb_row clearfix\">\n					<nav class=\"fullwidth-menu-nav\"><ul class=\"fullwidth-menu nav downwards\">\n					<li class=\"page_item page-item-33\"><a href=\"http://itcamefrombeyondpulp.com/books/\">Books</a></li>\n<li class=\"page_item page-item-45\"><a href=\"http://itcamefrombeyondpulp.com/movies/\">Movies</a></li>\n<li class=\"page_item page-item-59\"><a href=\"http://itcamefrombeyondpulp.com/sales/\">Sales</a></li>\n</ul></nav>\n					<div class=\"et_mobile_nav_menu\">\n						<a href=\"#\" class=\"mobile_nav closed\">\n							<span class=\"mobile_menu_bar\"></span>\n						</a>\n					</div>\n				</div>\n			</div>\n				\n				\n			</div> <!-- .et_pb_section --><div class=\"et_pb_section et_pb_section_14 et_pb_with_background et_section_regular\">\n				\n				\n				\n				\n					<div class=\"et_pb_with_border et_pb_row et_pb_row_5\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_5  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_module et_pb_image et_pb_image_5\">\n				\n				\n				<span class=\"et_pb_image_wrap \"><img src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/bloodrayne.jpg\" alt=\"\" /></span>\n			</div><div class=\"et_pb_module et_pb_text et_pb_text_2 et_pb_bg_layout_light  et_pb_text_align_left\">\n				\n				\n				<div class=\"et_pb_text_inner\">\n					<p>BloodRayne 2: Deliverance (Uwe Boll, 2007, 99 min.)Instead of a simple angry rant about Uwe Boll&#8217;s BloodRayne 2: Deliverance, which is about a half-vampire fighting against a vampiric Billy the Kid in the Wild West, I wrote poems: one sonnet (Shakespearean, not Italian), two limericks, a villanelle, and a sestina.Shall I Compare Thee to an Uwe Boll Film?The vampire outlaw William Bonney wreaksa trail of carnage spread across the West(but of his Slavic accent we&#8217;ll not speak).But he&#8217;s just BloodRayne 2&#8217;s especial guest:Natassia Malthe is the &#8220;dhamphir&#8221; Rayne;be-sworded, bosomed, clad in leather cloak,she&#8217;s out for vengeance, dealing death and painto Bill the Kid and his undead cowpokes.Director Uwe Boll is widely booed:&#8221;incompetent&#8221;? Inadequately cruel.Anachronism reigns! Ineptitudeof acting, scripting, lensing is the rule.This film&#8217;s a minor cinematic crimeentirely unworthy of my rhymes.The Lass from OsloThere once was an actress named Malthe.In BloodRayne her presence is paltry.Her waist is quite slimbut her acting is grimand quite limited her career shall be.She&#8217;s entirely too soft-spoken.She pales next to Kristanna Lokken.She&#8217;s not half as pretty,her accent is shitty,and her ass-kicking skills appear broken.Do Not Go Gentle Into an Uwe Boll FilmMy eyes! God damn that Uwe Boll to hellfor bringing forth another BloodRayne flick!Such horrors from my mind I can&#8217;t dispel!I&#8217;d rather choose to face armed personnel,or Montresor to wall me up with bricks.My eyes! God damn that Uwe Boll to hell!Each line the actors speak is a death knell;the overacting hams lay it on thick.Such horrors from my mind I can&#8217;t dispel.Film art is absent, vision, skill as well;technique&#8217;s the very opposite of slick.My eyes! God damn that Uwe Boll to hell!I&#8217;d vote to give this film a Prix Nobelbut there&#8217;s no prize for cinematic ick.Such horrors from my mind I can&#8217;t dispel!At nothing does the cast or crew excel.Just watching left me feeling vaguely sick. My eyes! God damn that Uwe Boll to hell!Such horrors from my mind I can&#8217;t dispel!There Are No Well-Known Sestina Titles to Infest with Uwe BollYou&#8217;ll say I&#8217;m too hard on this movieand perhaps you&#8217;re right.It&#8217;s not, after all, trying to be great cinema;it&#8217;s just a straight-to-video sequelthat appeals to a certain collectionof people who will excuse its flaws.But should they excuse those flaws?Did they? It&#8217;s in the bottom 100 movieson the IMDB, an illustrious collection,and while I&#8217;m not sure its placement there is right,it&#8217;s certainly a pointless and unskilled sequelto a film that was itself a blight on the cinema.(I don&#8217;t understand the subset of cinemathat&#8217;s &#8220;supposed to be bad&#8221;; if the flawsof this BloodRayne sequelare intentional, why is the movienot funny? Because comedy is the only rightvenue for intentional gaffes; this collectionof gaffes is unfunny.) So is a growing collectionof BloodRayne films inevitable, then? Will the cinema,or at least home video, support Uwe Boll&#8217;s right(backed up by his fists) to slather his directorial flawson the screen in another half-dressed half-vampire movie?Can he find a distributor for another sequel?What a stupid question. Another sequellikely featuring Malthe and a collectionof has-beens will bore and annoy movieaudiences in 2009. I&#8217;m sure the cinemawill survive; it&#8217;s survived more disastrous flawsthan Uwe Boll can perpetrate. That&#8217;s right:Uwe Boll is harmless. People in their rightminds ignore him. Real damage comes from mindless sequelsbolstered by kadillion-dollar budgets and a flawed,strictly commercial mindset. The collectedfilms of Brett Ratner, Michael Bay, et al. do more harm to the cinemabecause studios hold up as triumphs their shitbag movies.So let Uwe Boll make movies. Let him do a hundred BloodRayne sequels.It&#8217;s his right (plus he&#8217;ll beat you up if you argue). Cinema&#8217;sreal enemies perpetrate worse flaws. Michael Bay is in the Criterion Collection.</p>\n				</div>\n			</div> <!-- .et_pb_text -->\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row -->\n				\n				\n			</div> <!-- .et_pb_section --></p>\n'),(577,274,'_et_pb_ab_stats_refresh_interval','hourly'),(578,274,'_et_pb_old_content',''),(579,274,'_et_pb_enable_shortcode_tracking',''),(580,274,'_et_pb_custom_css',''),(581,274,'_et_pb_gutter_width','3'),(583,280,'_edit_lock','1564103216:1'),(584,281,'_wp_attached_file','2019/07/canary.jpg'),(585,281,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1280;s:6:\"height\";i:720;s:4:\"file\";s:18:\"2019/07/canary.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"canary-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"canary-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:18:\"canary-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:19:\"canary-1024x576.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:18:\"canary-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:19:\"canary-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:18:\"canary-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:18:\"canary-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:19:\"canary-1080x608.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:608;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:18:\"canary-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(603,284,'_edit_last','1'),(587,280,'_et_post_bg_color','#ffffff'),(588,280,'_et_post_bg_layout','light'),(589,280,'_et_pb_show_title','off'),(590,280,'_et_pb_post_hide_nav','default'),(591,280,'_et_pb_page_layout','et_no_sidebar'),(592,280,'_et_pb_side_nav','off'),(593,280,'_et_pb_use_builder','on'),(594,280,'_et_builder_version','BB|Divi|3.26.3'),(595,280,'_et_pb_show_page_creation','on'),(596,280,'_et_pb_first_image',''),(597,280,'_et_pb_truncate_post','<p><div class=\"et_pb_section et_pb_section_6 et_section_regular\">\n				\n				\n				\n				\n					<div class=\"et_pb_row et_pb_row_2\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_2  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_module et_pb_image et_pb_image_2\">\n				\n				\n				<a href=\"http://itcamefrombeyondpulp.com\"><span class=\"et_pb_image_wrap \"><img src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/header.jpg\" alt=\"\" /></span></a>\n			</div>\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row -->\n				\n				\n			</div> <!-- .et_pb_section --><div class=\"et_pb_section et_pb_section_8 et_pb_fullwidth_section et_section_regular\">\n				\n				\n				\n				\n					<div class=\"et_pb_with_border et_pb_module et_pb_fullwidth_menu et_pb_fullwidth_menu_1 et_pb_bg_layout_dark  et_pb_text_align_center et_dropdown_animation_fade\">\n				\n				\n				<div class=\"et_pb_row clearfix\">\n					<nav class=\"fullwidth-menu-nav\"><ul class=\"fullwidth-menu nav downwards\">\n					<li class=\"page_item page-item-33\"><a href=\"http://itcamefrombeyondpulp.com/books/\">Books</a></li>\n<li class=\"page_item page-item-45\"><a href=\"http://itcamefrombeyondpulp.com/movies/\">Movies</a></li>\n<li class=\"page_item page-item-59\"><a href=\"http://itcamefrombeyondpulp.com/sales/\">Sales</a></li>\n</ul></nav>\n					<div class=\"et_mobile_nav_menu\">\n						<a href=\"#\" class=\"mobile_nav closed\">\n							<span class=\"mobile_menu_bar\"></span>\n						</a>\n					</div>\n				</div>\n			</div>\n				\n				\n			</div> <!-- .et_pb_section --><div class=\"et_pb_section et_pb_section_9 et_pb_with_background et_section_regular\">\n				\n				\n				\n				\n					<div class=\"et_pb_with_border et_pb_row et_pb_row_3\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_3  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_module et_pb_image et_pb_image_3\">\n				\n				\n				<span class=\"et_pb_image_wrap \"><img src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/canary.jpg\" alt=\"\" /></span>\n			</div><div class=\"et_pb_module et_pb_text et_pb_text_1 et_pb_bg_layout_light  et_pb_text_align_left\">\n				\n				\n				<div class=\"et_pb_text_inner\">\n					<p>The Cat and the Canary (Paul Leni, 1927, 82 min.)John Willard&#8217;s play The Cat and the Canary opened on Broadway in 1922 and ran for 148 performances; it was part of a mini-trend of &#8220;old dark house&#8221; melodramas in which unsuspecting innocents (and not-so-innocents) gather in a spooky old mansion replete with monsters and ghosts that turn out in the end to have been human beings in devious disguises. As might be obvious, these plays and their popular film descendents inspired the cartoon Scooby-Doo, whose semi-ridiculous trapdoors, hidden passages, and criminals in elaborate masks don&#8217;t seem so ridiculous after seeing the very same things in this film, one of the most popular &#8220;horror&#8221; films of the silent period.If one can call it horror. There are certainly some chilling images in Paul Leni&#8217;s 1927 screen adaptation of the hit play, and I&#8217;m guessing that to a contemporary audience, some of them might have been quite shocking. But even granting the film&#8217;s deliberate efforts to frighten, there&#8217;s more of an effort to reassure the viewer that this is just a silly diversion, that you can scream if you want to—it makes the proceedings more enjoyable—but everything will turn out all right in the end. For starters, nearly a third of the credited cast are there as comic relief, and an inordinate amount of screen time is devoted to their exaggerated reactions to real and imagined shocks. So it&#8217;s not exactly a horror film, at least by any strict definition. But it is a great deal of fun.Twenty years ago, Cyrus West, driven insane by his scheming relatives&#8217; obsession with his considerable fortune, wrote a will that was not to be opened until tonight at midnight. His surviving relatives have gathered at his spooky old mansion for the reading. Among them are the milquetoast Paul Jones (Creighton Hale), the brooding Harry (Arthur Edmund Carewe), the handsome Charlie (Forrest Stanley), the highstrung Aunt Sillsby (Flora Finch) and her pretty neice Cecily (Gertrude Astor), and Cyrus&#8217;s beautiful neice Annabelle, played by silent star Laura La Plante. When lawyer Roger Crosby (Tully Marshall) reads the will, it turns out that Annabelle will inherit the riches, but only if she&#8217;s deemed sane by a psychiatrist; if she&#8217;s insane, the person whose name appears in another envelope gets the dough. This sets off a chain of surprising disappearances, shocking appearances, gnarled clawlike hands emerging from hidden compartments in the walls, and related shenanigans as circumstances, an escaped lunatic, and perhaps a relative or two conspire to render Annabelle insane before dawn.Leni, already a gifted director and set designer before he came to the United States in 1927, and cinematographer Gilbert Warrenton (whose few triumphs in a career of undistinguished films convince me that his directors did the bulk of the shot setups) use a fluidly moving camera and elaborate, expressionist sets and lighting to achieve some of the most memorable shots in silent film, from the extraordinary opening multiple exposures of Cyrus West trapped in medicine bottles and menaced by cats, to the amazing tracking shots down the curtain-lined main hallway, to the dramatic zooms and pans that accompany the film&#8217;s shocks. These visual creations are ingeniously coupled with a wide palette of tinting to provoke gasps and laughter in equal measure. And unlike many silent films, which relied too much on redundant intertitles, Leni and company not only eschew all but the most important titles, but they often do more than simply provide words on a screen: these titles dance, wiggle, and melt off the screen, happy to be put to more use than simply imparting information.In fact, the film is so atmospheric and lively that it makes me doubly sad that its director, Paul Leni, made so few films—including The Man Who Laughs and The Last Warning—before he died in 1929 at the age of 45. Could his career have survived the talkie transition? It&#8217;s tantalizing to wonder whether his version of Dracula, planned but never completed because of his untimely death and the return of his chosen star, Conrad Veidt, to Germany, would have been better than Tod Browning&#8217;s stodgy, unimaginative potboiler, but after viewing this film, the answer is manifestly apparent—of course it would have been better.</p>\n				</div>\n			</div> <!-- .et_pb_text -->\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row -->\n				\n				\n			</div> <!-- .et_pb_section --></p>\n'),(598,280,'_et_pb_ab_stats_refresh_interval','hourly'),(599,280,'_et_pb_old_content',''),(600,280,'_et_pb_enable_shortcode_tracking',''),(601,280,'_et_pb_custom_css',''),(602,280,'_et_pb_gutter_width','3'),(604,284,'_edit_lock','1564106755:1'),(605,285,'_wp_attached_file','2019/07/children.jpeg'),(606,285,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:306;s:6:\"height\";i:165;s:4:\"file\";s:21:\"2019/07/children.jpeg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"children-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"children-300x162.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:162;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(607,286,'_wp_attached_file','2019/07/children.jpg'),(608,286,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1280;s:6:\"height\";i:720;s:4:\"file\";s:20:\"2019/07/children.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"children-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"children-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:20:\"children-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"children-1024x576.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:20:\"children-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:21:\"children-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:20:\"children-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:20:\"children-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:21:\"children-1080x608.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:608;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:20:\"children-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(705,320,'_edit_last','1'),(610,284,'_et_post_bg_color','#ffffff'),(611,284,'_et_post_bg_layout','light'),(612,284,'_et_pb_show_title','off'),(613,284,'_et_pb_post_hide_nav','default'),(614,284,'_et_pb_page_layout','et_no_sidebar'),(615,284,'_et_pb_side_nav','off'),(616,284,'_et_pb_use_builder','on'),(617,284,'_et_builder_version','BB|Divi|3.26.3'),(618,284,'_et_pb_show_page_creation','on'),(619,284,'_et_pb_first_image',''),(620,284,'_et_pb_truncate_post','<p><div class=\"et_pb_section et_pb_section_1 et_section_regular\">\n				\n				\n				\n				\n					<div class=\"et_pb_row et_pb_row_0\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_0  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_module et_pb_image et_pb_image_0\">\n				\n				\n				<a href=\"http://itcamefrombeyondpulp.com\"><span class=\"et_pb_image_wrap \"><img src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/header.jpg\" alt=\"\" /></span></a>\n			</div>\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row -->\n				\n				\n			</div> <!-- .et_pb_section --><div class=\"et_pb_section et_pb_section_3 et_pb_fullwidth_section et_section_regular\">\n				\n				\n				\n				\n					<div class=\"et_pb_with_border et_pb_module et_pb_fullwidth_menu et_pb_fullwidth_menu_0 et_pb_bg_layout_dark  et_pb_text_align_center et_dropdown_animation_fade\">\n				\n				\n				<div class=\"et_pb_row clearfix\">\n					<nav class=\"fullwidth-menu-nav\"><ul class=\"fullwidth-menu nav downwards\">\n					<li class=\"page_item page-item-33\"><a href=\"http://itcamefrombeyondpulp.com/books/\">Books</a></li>\n<li class=\"page_item page-item-45\"><a href=\"http://itcamefrombeyondpulp.com/movies/\">Movies</a></li>\n<li class=\"page_item page-item-59\"><a href=\"http://itcamefrombeyondpulp.com/sales/\">Sales</a></li>\n</ul></nav>\n					<div class=\"et_mobile_nav_menu\">\n						<a href=\"#\" class=\"mobile_nav closed\">\n							<span class=\"mobile_menu_bar\"></span>\n						</a>\n					</div>\n				</div>\n			</div>\n				\n				\n			</div> <!-- .et_pb_section --><div class=\"et_pb_section et_pb_section_4 et_pb_with_background et_section_regular\">\n				\n				\n				\n				\n					<div class=\"et_pb_with_border et_pb_row et_pb_row_1\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_1  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_module et_pb_image et_pb_image_1\">\n				\n				\n				<span class=\"et_pb_image_wrap \"><img src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/children.jpg\" alt=\"\" /></span>\n			</div><div class=\"et_pb_module et_pb_text et_pb_text_0 et_pb_bg_layout_light  et_pb_text_align_left\">\n				\n				\n				<div class=\"et_pb_text_inner\">\n					<p>The Children (Max Kalmanowicz, 1980, 93 min.)One can only imagine what awful child-related experience prompted Carlton Albright and Edward Terry to write a screenplay as horrific as The Children; perhaps he suspects his kids of being the mailman&#8217;s progeny. The &#8220;scary little kid&#8221; subgenre has never been scarier or more nihilistic than this incredibly effective and incredibly nasty bargain-basement shockfest. Its premise is simple: a busload of kids drives through a toxic fog and turns into&#8230; into what? They still look like apple-cheeked, sweet-faced munchkins, except their fingernails are black, and if they touch you, they melt the flesh from your bones. To paraphrase the song, I believe the children are our future, and there ain&#8217;t no future here.After a prologue that establishes the source of the toxic fog, we follow the sheriff (Gil Rogers) as he tries to figure out why the school bus would be sitting empty on the side of the road. After he finds the first victim (the bus driver), his immediate concern is again with the children: who will protect them from whatever did this to the driver? It takes everyone concerned an inordinately long time to decide, finally, that the kids are the reason behind the rapidly accumulating bodies. But that&#8217;s natural: we know we&#8217;re watching a horror film called The Children, but it&#8217;s almost against our instincts to suspect children of being capable of killing.The acting and dialogue are standard for the horror genre, meaning that they&#8217;re basically sub-par, but that fact doesn&#8217;t detract from the movie&#8217;s effectiveness a whit. Director Max Kalmanowicz&#8217;s staging of scenes is nothing special during the first two acts, when it&#8217;s still daylight and the adults are still trying to figure out what&#8217;s going on. But once night falls, his true gifts come into play. Under cover of near-darkness, he exhibits an almost supernatural mastery of simple, evocative, and scary-as-hell shot framing, shock reveals, and pacing. He doesn&#8217;t make the mistake, common in the slasher genre, of overlighting his shots: the lighting here is the familiar blindness-inducing pitch black of a moonless night, in which headlights, flashlights, and candles illuminate just enough to remind you of how cavern-dark everything else is. It&#8217;s here, in the dark, where he uses his scary kids brilliantly. Smiling, arms outstretched, calling &#8220;mommy, mommy&#8221; in their piping voices, they loom out of the blackness like pretty little angels of death: this is the single scariest image I can remember from any horror film.And if the soul-destroying horror of children turned into monsters weren&#8217;t enough, the film bravely (if that&#8217;s the right word; &#8220;sadistically&#8221; would fit too) follows through on its premise by making the destruction of the children necessary (i.e., there&#8217;s no cure) and even more awful than the children themselves: only chopping off their hands will stop them. Both hands. That the camera pulls away from the scene of greatest carnage is no salve: the camera tracks slowly, sinuously out of a barn, into the yard, through a house, through the woods, as unearthly screams prompt our imaginations to supply pictures more nauseating than any makeup artist could create. And that&#8217;s not even the most disturbing, or nihilistic, of the film&#8217;s little horrors—it saves its biggest kick for last.The unfair 5.1 rating on IMDB could reflect any number of things: disgust with The Children&#8217;s awful nihilism, or failure to look past the low-budget aesthetics to the brilliant way Kalmanowicz and company embrace and twist the genre&#8217;s conventions and limitations. It&#8217;s certainly not for everybody. It&#8217;s probably not for most people. You know who you are.</p>\n				</div>\n			</div> <!-- .et_pb_text -->\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row -->\n				\n				\n			</div> <!-- .et_pb_section --></p>\n'),(621,284,'_et_pb_ab_stats_refresh_interval','hourly'),(622,284,'_et_pb_old_content',''),(623,284,'_et_pb_enable_shortcode_tracking',''),(624,284,'_et_pb_custom_css',''),(625,284,'_et_pb_gutter_width','3'),(628,117,'_et_pb_built_for_post_type','page'),(519,266,'_wp_attached_file','2019/07/xmen-laststand-1.jpg'),(520,266,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:540;s:4:\"file\";s:28:\"2019/07/xmen-laststand-1.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"xmen-laststand-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"xmen-laststand-1-300x158.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:158;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:28:\"xmen-laststand-1-768x405.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:405;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:29:\"xmen-laststand-1-1024x540.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:28:\"xmen-laststand-1-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:28:\"xmen-laststand-1-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:28:\"xmen-laststand-1-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:28:\"xmen-laststand-1-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(521,264,'_thumbnail_id','266'),(523,264,'_et_post_bg_color','#ffffff'),(524,264,'_et_post_bg_layout','light'),(525,264,'_et_pb_show_title','off'),(526,264,'_et_pb_post_hide_nav','default'),(527,264,'_et_pb_page_layout','et_no_sidebar'),(528,264,'_et_pb_side_nav','off'),(529,264,'_et_pb_use_builder','on'),(530,264,'_et_builder_version','BB|Divi|3.26.3'),(531,264,'_et_pb_show_page_creation','on'),(532,264,'_et_pb_first_image',''),(533,264,'_et_pb_truncate_post','<p><div class=\"et_pb_section et_pb_section_21 et_section_regular\">\n				\n				\n				\n				\n					<div class=\"et_pb_row et_pb_row_8\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_8  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_module et_pb_image et_pb_image_8\">\n				\n				\n				<a href=\"http://itcamefrombeyondpulp.com\"><span class=\"et_pb_image_wrap \"><img src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/header.jpg\" alt=\"\" /></span></a>\n			</div>\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row -->\n				\n				\n			</div> <!-- .et_pb_section --><div class=\"et_pb_section et_pb_section_23 et_pb_fullwidth_section et_section_regular\">\n				\n				\n				\n				\n					<div class=\"et_pb_with_border et_pb_module et_pb_fullwidth_menu et_pb_fullwidth_menu_4 et_pb_bg_layout_dark  et_pb_text_align_center et_dropdown_animation_fade\">\n				\n				\n				<div class=\"et_pb_row clearfix\">\n					<nav class=\"fullwidth-menu-nav\"><ul class=\"fullwidth-menu nav downwards\">\n					<li class=\"page_item page-item-33\"><a href=\"http://itcamefrombeyondpulp.com/books/\">Books</a></li>\n<li class=\"page_item page-item-45\"><a href=\"http://itcamefrombeyondpulp.com/movies/\">Movies</a></li>\n<li class=\"page_item page-item-59\"><a href=\"http://itcamefrombeyondpulp.com/sales/\">Sales</a></li>\n</ul></nav>\n					<div class=\"et_mobile_nav_menu\">\n						<a href=\"#\" class=\"mobile_nav closed\">\n							<span class=\"mobile_menu_bar\"></span>\n						</a>\n					</div>\n				</div>\n			</div>\n				\n				\n			</div> <!-- .et_pb_section --><div class=\"et_pb_section et_pb_section_24 et_pb_with_background et_section_regular\">\n				\n				\n				\n				\n					<div class=\"et_pb_with_border et_pb_row et_pb_row_9\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_9  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_module et_pb_image et_pb_image_9\">\n				\n				\n				<span class=\"et_pb_image_wrap \"><img src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/xmen-laststand.jpg\" alt=\"\" /></span>\n			</div><div class=\"et_pb_module et_pb_text et_pb_text_4 et_pb_bg_layout_light  et_pb_text_align_left\">\n				\n				\n				<div class=\"et_pb_text_inner\">\n					<p>X-Men: The Last Stand (Brett Ratner, 2006, 104 min.)The third installment in the X-Men franchise isn&#8217;t what you can call a success, especially coming on the heels of a so-so first film and a nearly perfect second film. My first instinct is to lay the blame at the feet of the director, good cinema&#8217;s arch-nemesis Brett Ratner, but I think we can only partly blame him. It&#8217;s tempting, of course, to point at him because X2 was one of the best comic book movies ever made, and what changed? The director: Bryan Singer left to direct Superman Returns. However, I suspect that it&#8217;s folly to rely on auteur theory when discussing a bazillion-dollar blockbuster. Ratner likely had little to say about casting, the script, the special effects, or any number of elements that didn&#8217;t live up to expectations.Certain things he did have control over, of course: the director&#8217;s primary responsibility is the performances, and none was up to the standards set in the second sequel. Other things, like awkward scene setups, a generally somnolent pace, and action setpieces that fail to captivate, are also his fault. Who do we blame, for example, for the fact that it suddenly becomes night between cuts during the siege of Alcatraz at the end? But I don&#8217;t know who to blame for the film&#8217;s major problem for me: I didn&#8217;t care a whit what happened. It never involved me; I was never swept away by the action or the effects on one hand, or by the story on the other. It&#8217;s not just a matter of its failing to live up to the standard set by the second film; it&#8217;s that it isn&#8217;t good enough by any standards.We learn that scientists have created a &#8220;cure&#8221; for mutancy, a drug derived from a weird mutant kid (Cameron Bright) whose aura neutralizes powers. This sets off a debate within the mutant community: is mutancy a disease that needs a cure? Is this a harmless, personal decision for mutants to make, or is forced administration of the cure next? Of course, the poles are defined by Professor X (Patrick Stewart), who advises a cautious course, and Magento (Ian McKellan), who sees this as a call to war between the humans and the mutants. In the middle are the rest of the mutants: people like Rogue (Anna Paquin), who hates her powers because they mean she can&#8217;t snuggle with her boyfriend Iceman (Shawn Ashmore); and people like Pyro (Aaron Stanford), who relish the opportunity to use them. Magneto gathers an army of mutants and marches on Alcatraz Island, where the cure is being created, while the good guys, their ranks decimated, try to figure out what to do.I&#8217;m guessing that the central dramatic thrust of the film was supposed to be the rekindled but doomed love affair between Wolverine (Hugh Jackman) and the reborn (sort of) Jean Gray (Famke Janssen), but even though I could see that I was supposed to find their story an epic, Shakespearean tragedy, I could hardly pay attention to it. They have few scenes together, and Janssen&#8217;s a blank throughout. There&#8217;s supposed to be a struggle between the Jean that Professor X (Patrick Stewart) created through brainwashing and the uninhibited, ultra-powerful Dark Phoenix personality, but that struggle is apparent only through special effects—veiny face, eyes that go black, etc.—that are remarkably similar to the &#8220;evil Willow&#8221; from season 6 of Buffy the Vampire Slayer (although I suppose that Joss Whedon might have derived the evil Willow idea from the X-Men comics).The Dark Phoenix character is a can of worms that Ratner and company open but fail to address or even think much about. They explicitly link mutant powers with adolescent sexuality (before this, the running subtext seemed to be that mutant powers were code for homosexuality—&#8221;Have you ever tried&#8230; not being a mutant?&#8221;), and they present us with female sexuality, in the form of Jean Gray, as the source of horrific powers that must be contained through brainwashing by Professor X. When she unravels the blocks he&#8217;s placed on her powers, she becomes a force of chaos and destruction, dangerous and out of control just like she was as a teenager. In the end, as in her entire life, only a man can control her (acting out of love, of course&#8230; right?), this time by killing her. This is a disturbing elevation of the genre&#8217;s misogyny, turning what is usually a sidenote into the climax of the film, and nobody involved in making the film thought to discuss its implications.In general, there&#8217;s just too much going on, too many characters to keep track of, and not enough skill at the helm to keep it all together. Important characters drop out of sight, their fates explained away in dialog. Other important characters go unnamed. As usual, interesting characters go unexplored (or vanished between sequels—what happened to Nightcrawler?) while dead wood commandeers valuable screen time (I&#8217;m talking to you, Halle Berry). The interest that X2 built up in Rogue (Anna Paquin) fizzles, as she&#8217;s got nothing to do here. Relationships between the characters remain exactly where they were at the end of the second, far superior film—with all the talking going on, why don&#8217;t we get to know anyone better, or better understand why certain people act the way they do?It&#8217;s called &#8220;The Last Stand,&#8221; and it packs in a handful of surprises that trick us into thinking that it might be true: several major characters die or become civilians (i.e., not mutants), and the climactic battle seems to wipe out most of the newly introduced characters. But the filmmakers hedge their bets, with some twists at the very end (and make sure you stick around after the credits) that are the equivalent of saying &#8220;I&#8217;m leaving&#8221; while sticking your foot in the door. I just hope it&#8217;s not Ratner&#8217;s foot.</p>\n				</div>\n			</div> <!-- .et_pb_text -->\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row -->\n				\n				\n			</div> <!-- .et_pb_section --></p>\n'),(534,264,'_et_pb_ab_stats_refresh_interval','hourly'),(535,264,'_et_pb_old_content',''),(536,264,'_et_pb_enable_shortcode_tracking',''),(537,264,'_et_pb_custom_css',''),(538,264,'_et_pb_gutter_width','3'),(540,271,'_edit_lock','1564102297:1'),(541,272,'_wp_attached_file','2019/07/blackcat.jpg'),(542,272,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1280;s:6:\"height\";i:720;s:4:\"file\";s:20:\"2019/07/blackcat.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"blackcat-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"blackcat-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:20:\"blackcat-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"blackcat-1024x576.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:20:\"blackcat-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:21:\"blackcat-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:20:\"blackcat-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:20:\"blackcat-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:21:\"blackcat-1080x608.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:608;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:20:\"blackcat-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(543,271,'_thumbnail_id','272'),(561,274,'_edit_last','1'),(545,271,'_et_post_bg_color','#ffffff'),(546,271,'_et_post_bg_layout','light'),(547,271,'_et_pb_show_title','off'),(548,271,'_et_pb_post_hide_nav','default'),(549,271,'_et_pb_page_layout','et_no_sidebar'),(550,271,'_et_pb_side_nav','off'),(551,271,'_et_pb_use_builder','on'),(552,271,'_et_builder_version','BB|Divi|3.26.3'),(553,271,'_et_pb_show_page_creation','on'),(554,271,'_et_pb_first_image',''),(555,271,'_et_pb_truncate_post','<p><div class=\"et_pb_section et_pb_section_16 et_section_regular\">\n				\n				\n				\n				\n					<div class=\"et_pb_row et_pb_row_6\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_6  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_module et_pb_image et_pb_image_6\">\n				\n				\n				<a href=\"http://itcamefrombeyondpulp.com\"><span class=\"et_pb_image_wrap \"><img src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/header.jpg\" alt=\"\" /></span></a>\n			</div>\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row -->\n				\n				\n			</div> <!-- .et_pb_section --><div class=\"et_pb_section et_pb_section_18 et_pb_fullwidth_section et_section_regular\">\n				\n				\n				\n				\n					<div class=\"et_pb_with_border et_pb_module et_pb_fullwidth_menu et_pb_fullwidth_menu_3 et_pb_bg_layout_dark  et_pb_text_align_center et_dropdown_animation_fade\">\n				\n				\n				<div class=\"et_pb_row clearfix\">\n					<nav class=\"fullwidth-menu-nav\"><ul class=\"fullwidth-menu nav downwards\">\n					<li class=\"page_item page-item-33\"><a href=\"http://itcamefrombeyondpulp.com/books/\">Books</a></li>\n<li class=\"page_item page-item-45\"><a href=\"http://itcamefrombeyondpulp.com/movies/\">Movies</a></li>\n<li class=\"page_item page-item-59\"><a href=\"http://itcamefrombeyondpulp.com/sales/\">Sales</a></li>\n</ul></nav>\n					<div class=\"et_mobile_nav_menu\">\n						<a href=\"#\" class=\"mobile_nav closed\">\n							<span class=\"mobile_menu_bar\"></span>\n						</a>\n					</div>\n				</div>\n			</div>\n				\n				\n			</div> <!-- .et_pb_section --><div class=\"et_pb_section et_pb_section_19 et_pb_with_background et_section_regular\">\n				\n				\n				\n				\n					<div class=\"et_pb_with_border et_pb_row et_pb_row_7\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_7  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_module et_pb_image et_pb_image_7\">\n				\n				\n				<span class=\"et_pb_image_wrap \"><img src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/blackcat.jpg\" alt=\"\" /></span>\n			</div><div class=\"et_pb_module et_pb_text et_pb_text_3 et_pb_bg_layout_light  et_pb_text_align_left\">\n				\n				\n				<div class=\"et_pb_text_inner\">\n					<p>Masters of Horror: The Black Cat (Stuart Gordon, 2007, 56 min.)Inventive adapter of macabre literature Stuart Gordon&#8217;s earlier Dreams in the Witch-House was already one of the highlights of Showtime&#8217;s acclaimed &#8220;Masters of Horror&#8221; series, but he outdoes himself in this &#8220;adaptation&#8221; of several of Edgar Allan Poe&#8217;s stories, logging one of the two best episodes—the other being Joe Dante&#8217;s Homecoming. It&#8217;s a rousing good time, a treat for Poe fans, and an authentically creative use of the short format imposed by the series. It&#8217;s also completely, utterly historically inaccurate, but that&#8217;s almost part of the fun.Edgar A. Poe (Gordon regular Jeffry Combs, uncannily resembling the real thing) would like to be known as a poet, but his poems fetch him pennies from publisher George Graham (Aron Tager), a miser whose cataract-clouded eye makes him resemble the victim of one of Poe&#8217;s most famous stories. Graham wants more gory horror stories, and he gives the author an advance, which Poe promptly converts to booze at a local pub before getting tossed out on his ear. Back at home, his young wife Virginia (Elyse Levesque) is selling her beloved piano to pay the rent—and, incidentally, she&#8217;s dying of tuberculosis, which is revealed in a stomach-churning yet beautiful scene where her song is interrupted by a coughing fit. Her beloved &#8220;Eddie&#8221; has to write a killer story to earn enough to pay a doctor. Complicating things is the fact that his wife&#8217;s black cat, Pluto, seems to be trying to drive him crazy, admittedly a short trip.Gordon and co-screenwriter Dennis Paoli borrow liberally from Poe&#8217;s stories—including, but certainly not limited to, &#8220;The Cask of Amontillado,&#8221; &#8220;The Raven,&#8221; &#8220;The Tell-Tale Heart,&#8221; and of course &#8220;The Black Cat,&#8221; although I don&#8217;t claim to have caught all the references—and also from the popular misconception of Poe as a drug-crazed sot who drank away his talent and his life. They weave semi-fact, fiction, and hallucination into a swirling, exceptionally watchable story where neither we nor Poe is ever quite sure whether we&#8217;re seeing things that are actually happening or just Poe&#8217;s delusions. Combs delivers a brilliant portrait of a proud but misunderstood man who attempts to keep his composure under immense pressure but is thwarted at every step by his own weaknesses of mind and heart (and a cat that refuses to die). He reminded me, oddly, of Buster Keaton, who kept his stony exterior even when the world was falling apart around him, except Combs&#8217;s Poe is tested by assaults both physical and mental.Unlike many of the entries in the series, this film looks fantastic. Compare cinematographer Jon Joffin&#8217;s work here with the clownish, TV-looking We All Scream for Ice Cream, which immediately preceded this episode in the series&#8217;s original run. This looks cinematic, gothic, and authentic, a shabbily dusty reproduction of Jacksonian-era lower-middle-class life. I can only attribute the fine combination of story, performance, and production to Gordon, whose ability to create atmosphere has sadly been ignored, as he demonstrates most of it in the ghetto of horror films. It&#8217;s a ghetto where I&#8217;m happy to spend a lot of my time; I only wish more people were so inclined.</p>\n				</div>\n			</div> <!-- .et_pb_text -->\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row -->\n				\n				\n			</div> <!-- .et_pb_section --></p>\n'),(556,271,'_et_pb_ab_stats_refresh_interval','hourly'),(557,271,'_et_pb_old_content',''),(558,271,'_et_pb_enable_shortcode_tracking',''),(559,271,'_et_pb_custom_css',''),(560,271,'_et_pb_gutter_width','3'),(562,274,'_edit_lock','1564102880:1'),(563,276,'_wp_attached_file','2019/07/bloodrayne.jpg'),(564,276,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1200;s:6:\"height\";i:675;s:4:\"file\";s:22:\"2019/07/bloodrayne.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"bloodrayne-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"bloodrayne-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:22:\"bloodrayne-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:23:\"bloodrayne-1024x576.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:22:\"bloodrayne-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:23:\"bloodrayne-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:22:\"bloodrayne-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:22:\"bloodrayne-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:23:\"bloodrayne-1080x608.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:608;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:22:\"bloodrayne-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(582,280,'_edit_last','1'),(566,274,'_et_post_bg_color','#ffffff'),(567,274,'_et_post_bg_layout','light'),(568,274,'_et_pb_show_title','off'),(569,274,'_et_pb_post_hide_nav','default'),(570,274,'_et_pb_page_layout','et_no_sidebar'),(571,274,'_et_pb_side_nav','off'),(572,274,'_et_pb_use_builder','on'),(573,274,'_et_builder_version','BB|Divi|3.26.3'),(460,251,'_edit_lock','1564088483:1'),(461,253,'_wp_attached_file','2019/07/phantom.jpeg'),(462,253,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:468;s:4:\"file\";s:20:\"2019/07/phantom.jpeg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"phantom-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"phantom-300x137.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:137;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:20:\"phantom-768x351.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:351;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"phantom-1024x468.jpeg\";s:5:\"width\";i:1024;s:6:\"height\";i:468;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:20:\"phantom-400x250.jpeg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:20:\"phantom-400x284.jpeg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:20:\"phantom-510x382.jpeg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:20:\"phantom-400x468.jpeg\";s:5:\"width\";i:400;s:6:\"height\";i:468;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(463,251,'_thumbnail_id','253'),(481,110,'_edit_lock','1564088703:1'),(465,251,'_et_post_bg_color','#ffffff'),(466,251,'_et_post_bg_layout','light'),(467,251,'_et_pb_show_title','off'),(468,251,'_et_pb_post_hide_nav','default'),(469,251,'_et_pb_page_layout','et_no_sidebar'),(470,251,'_et_pb_side_nav','off'),(471,251,'_et_pb_use_builder','on'),(472,251,'_et_builder_version','BB|Divi|3.26.3'),(473,251,'_et_pb_show_page_creation','on'),(474,251,'_et_pb_first_image',''),(475,251,'_et_pb_truncate_post',''),(476,251,'_et_pb_ab_stats_refresh_interval','hourly'),(477,251,'_et_pb_old_content',''),(478,251,'_et_pb_enable_shortcode_tracking',''),(479,251,'_et_pb_custom_css',''),(480,251,'_et_pb_gutter_width','3'),(482,110,'_edit_last','1'),(483,110,'_et_pb_use_builder','on'),(484,110,'_et_builder_version','BB|Divi|3.26.3'),(485,110,'_et_pb_first_image',''),(486,110,'_et_pb_truncate_post',''),(487,110,'_et_pb_ab_stats_refresh_interval','hourly'),(488,110,'_et_pb_old_content',''),(489,110,'_et_pb_enable_shortcode_tracking',''),(490,110,'_et_pb_custom_css',''),(491,110,'_et_pb_gutter_width','3'),(493,260,'_edit_last','1'),(494,260,'_edit_lock','1564094306:1'),(495,261,'_wp_attached_file','2019/07/predator.jpeg'),(496,261,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1200;s:6:\"height\";i:540;s:4:\"file\";s:21:\"2019/07/predator.jpeg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"predator-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"predator-300x135.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:135;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:21:\"predator-768x346.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:346;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:22:\"predator-1024x461.jpeg\";s:5:\"width\";i:1024;s:6:\"height\";i:461;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:21:\"predator-400x250.jpeg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:22:\"predator-1080x540.jpeg\";s:5:\"width\";i:1080;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:21:\"predator-400x284.jpeg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:21:\"predator-510x382.jpeg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:22:\"predator-1080x486.jpeg\";s:5:\"width\";i:1080;s:6:\"height\";i:486;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:21:\"predator-400x516.jpeg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(497,260,'_thumbnail_id','261'),(515,264,'_edit_last','1'),(499,260,'_et_post_bg_color','#ffffff'),(500,260,'_et_post_bg_layout','light'),(501,260,'_et_pb_show_title','off'),(502,260,'_et_pb_post_hide_nav','default'),(503,260,'_et_pb_page_layout','et_no_sidebar'),(504,260,'_et_pb_side_nav','off'),(505,260,'_et_pb_use_builder','on'),(506,260,'_et_builder_version','BB|Divi|3.26.3'),(507,260,'_et_pb_show_page_creation','on'),(508,260,'_et_pb_first_image',''),(509,260,'_et_pb_truncate_post',''),(510,260,'_et_pb_ab_stats_refresh_interval','hourly'),(511,260,'_et_pb_old_content',''),(512,260,'_et_pb_enable_shortcode_tracking',''),(513,260,'_et_pb_custom_css',''),(514,260,'_et_pb_gutter_width','3'),(516,264,'_edit_lock','1564101973:1'),(517,265,'_wp_attached_file','2019/07/xmen-laststand.jpg'),(518,265,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:540;s:4:\"file\";s:26:\"2019/07/xmen-laststand.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"xmen-laststand-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"xmen-laststand-300x158.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:158;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:26:\"xmen-laststand-768x405.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:405;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:27:\"xmen-laststand-1024x540.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:26:\"xmen-laststand-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:26:\"xmen-laststand-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:26:\"xmen-laststand-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:26:\"xmen-laststand-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(427,175,'_et_pb_built_for_post_type','page'),(428,175,'_et_pb_excluded_global_options','[]'),(429,74,'_et_pb_excluded_global_options','[]'),(539,271,'_edit_last','1'),(435,74,'_edit_lock','1564004944:1'),(436,205,'_wp_attached_file','2019/07/header.jpg'),(437,205,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:700;s:4:\"file\";s:18:\"2019/07/header.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"header-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"header-300x109.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:109;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:18:\"header-768x280.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:19:\"header-1024x373.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:373;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:18:\"header-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:19:\"header-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:18:\"header-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:18:\"header-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:19:\"header-1080x394.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:394;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:18:\"header-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(438,74,'_edit_last','1'),(439,74,'_et_pb_use_builder','on'),(440,74,'_et_builder_version','BB|Divi|3.26.3'),(441,74,'_et_pb_first_image',''),(442,74,'_et_pb_truncate_post',''),(443,74,'_et_pb_ab_stats_refresh_interval','hourly'),(444,74,'_et_pb_old_content',''),(445,74,'_et_pb_enable_shortcode_tracking',''),(446,74,'_et_pb_custom_css',''),(447,74,'_et_pb_gutter_width','3'),(459,251,'_edit_last','1'),(637,304,'_edit_last','1'),(638,304,'_edit_lock','1564151743:1'),(639,306,'_wp_attached_file','2019/07/colin.jpg'),(640,306,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1250;s:6:\"height\";i:597;s:4:\"file\";s:17:\"2019/07/colin.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:17:\"colin-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:17:\"colin-300x143.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:143;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:17:\"colin-768x367.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:367;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:18:\"colin-1024x489.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:489;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:17:\"colin-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:18:\"colin-1080x597.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:597;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:17:\"colin-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:17:\"colin-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:18:\"colin-1080x516.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:17:\"colin-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(641,304,'_thumbnail_id','306'),(659,309,'_edit_last','1'),(643,304,'_et_post_bg_color','#ffffff'),(644,304,'_et_post_bg_layout','light'),(645,304,'_et_pb_show_title','off'),(646,304,'_et_pb_post_hide_nav','default'),(647,304,'_et_pb_page_layout','et_no_sidebar'),(648,304,'_et_pb_side_nav','off'),(649,304,'_et_pb_use_builder','on'),(650,304,'_et_builder_version','BB|Divi|3.26.3'),(651,304,'_et_pb_show_page_creation','on'),(652,304,'_et_pb_first_image',''),(653,304,'_et_pb_truncate_post',''),(654,304,'_et_pb_ab_stats_refresh_interval','hourly'),(655,304,'_et_pb_old_content',''),(656,304,'_et_pb_enable_shortcode_tracking',''),(657,304,'_et_pb_custom_css',''),(658,304,'_et_pb_gutter_width','3'),(660,309,'_edit_lock','1564152097:1'),(661,310,'_wp_attached_file','2019/07/dark-water.jpg'),(662,310,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1200;s:6:\"height\";i:500;s:4:\"file\";s:22:\"2019/07/dark-water.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"dark-water-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"dark-water-300x125.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:125;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:22:\"dark-water-768x320.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:23:\"dark-water-1024x427.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:427;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:22:\"dark-water-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:23:\"dark-water-1080x500.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:22:\"dark-water-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:22:\"dark-water-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:23:\"dark-water-1080x450.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:22:\"dark-water-400x500.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(680,313,'_edit_last','1'),(664,309,'_et_post_bg_color','#ffffff'),(665,309,'_et_post_bg_layout','light'),(666,309,'_et_pb_show_title','off'),(667,309,'_et_pb_post_hide_nav','default'),(668,309,'_et_pb_page_layout','et_no_sidebar'),(669,309,'_et_pb_side_nav','off'),(670,309,'_et_pb_use_builder','on'),(671,309,'_et_builder_version','BB|Divi|3.26.3'),(672,309,'_et_pb_show_page_creation','on'),(673,309,'_et_pb_first_image',''),(674,309,'_et_pb_truncate_post',''),(675,309,'_et_pb_ab_stats_refresh_interval','hourly'),(676,309,'_et_pb_old_content',''),(677,309,'_et_pb_enable_shortcode_tracking',''),(678,309,'_et_pb_custom_css',''),(679,309,'_et_pb_gutter_width','3'),(681,313,'_edit_lock','1564152338:1'),(682,314,'_wp_attached_file','2019/07/Devils-Daughter.jpg'),(683,314,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:460;s:4:\"file\";s:27:\"2019/07/Devils-Daughter.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"Devils-Daughter-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"Devils-Daughter-300x138.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:138;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:27:\"Devils-Daughter-768x353.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:353;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:27:\"Devils-Daughter-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:27:\"Devils-Daughter-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:27:\"Devils-Daughter-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:27:\"Devils-Daughter-400x460.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:460;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(684,315,'_wp_attached_file','2019/07/Devils-Daughter-1.jpg'),(685,315,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:460;s:4:\"file\";s:29:\"2019/07/Devils-Daughter-1.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"Devils-Daughter-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:29:\"Devils-Daughter-1-300x138.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:138;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:29:\"Devils-Daughter-1-768x353.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:353;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:29:\"Devils-Daughter-1-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:29:\"Devils-Daughter-1-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:29:\"Devils-Daughter-1-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:29:\"Devils-Daughter-1-400x460.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:460;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(686,313,'_thumbnail_id','315'),(706,320,'_edit_lock','1564153244:1'),(688,313,'_et_post_bg_color','#ffffff'),(689,313,'_et_post_bg_layout','light'),(690,313,'_et_pb_show_title','off'),(691,313,'_et_pb_post_hide_nav','default'),(692,313,'_et_pb_page_layout','et_no_sidebar'),(693,313,'_et_pb_side_nav','off'),(694,313,'_et_pb_use_builder','on'),(695,313,'_et_builder_version','BB|Divi|3.26.3'),(696,313,'_et_pb_show_page_creation','on'),(697,313,'_et_pb_first_image',''),(698,313,'_et_pb_truncate_post','<p><div class=\"et_pb_section et_pb_section_21 et_section_regular\">\n				\n				\n				\n				\n					<div class=\"et_pb_row et_pb_row_8\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_8  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_module et_pb_image et_pb_image_8\">\n				\n				\n				<a href=\"http://itcamefrombeyondpulp.com\"><span class=\"et_pb_image_wrap \"><img src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/header.jpg\" alt=\"\" /></span></a>\n			</div>\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row -->\n				\n				\n			</div> <!-- .et_pb_section --><div class=\"et_pb_section et_pb_section_23 et_pb_fullwidth_section et_section_regular\">\n				\n				\n				\n				\n					<div class=\"et_pb_with_border et_pb_module et_pb_fullwidth_menu et_pb_fullwidth_menu_4 et_pb_bg_layout_dark  et_pb_text_align_center et_dropdown_animation_fade\">\n				\n				\n				<div class=\"et_pb_row clearfix\">\n					<nav class=\"fullwidth-menu-nav\"><ul class=\"fullwidth-menu nav downwards\">\n					<li class=\"page_item page-item-33\"><a href=\"http://itcamefrombeyondpulp.com/books/\">Books</a></li>\n<li class=\"page_item page-item-45\"><a href=\"http://itcamefrombeyondpulp.com/movies/\">Movies</a></li>\n<li class=\"page_item page-item-59\"><a href=\"http://itcamefrombeyondpulp.com/sales/\">Sales</a></li>\n</ul></nav>\n					<div class=\"et_mobile_nav_menu\">\n						<a href=\"#\" class=\"mobile_nav closed\">\n							<span class=\"mobile_menu_bar\"></span>\n						</a>\n					</div>\n				</div>\n			</div>\n				\n				\n			</div> <!-- .et_pb_section --><div class=\"et_pb_section et_pb_section_24 et_pb_with_background et_section_regular\">\n				\n				\n				\n				\n					<div class=\"et_pb_with_border et_pb_row et_pb_row_9\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_9  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_module et_pb_image et_pb_image_9\">\n				\n				\n				<span class=\"et_pb_image_wrap \"><img src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/Devils-Daughter.jpg\" alt=\"\" /></span>\n			</div><div class=\"et_pb_module et_pb_text et_pb_text_4 et_pb_bg_layout_light  et_pb_text_align_left\">\n				\n				\n				<div class=\"et_pb_text_inner\">\n					<p>The Devil&#8217;s Daughter (Jeannot Szwarc, 1973, 74 min.)Early in this made-for-TV horror film, a kindly old priest tells the distraught Alice Shaw, &#8220;Nothing&#8217;s so bad that God won&#8217;t forgive it.&#8221; She knows better, and we know better, because we&#8217;ve seen enough horror films to know that not only the sinner, but the sinner&#8217;s progeny, are punished for transgressions. Especially in a movie called The Devil&#8217;s Daughter.It opens with a bang: the devil&#8217;s henchmen corner Alice (Diane Ladd), demanding that she deliver on the promise she made 20 years before: the soul of her daughter, whose father we already know (hint: it&#8217;s there in the title). When she tries to renege, the devil himself comes to collect, and it&#8217;s here that we realize there&#8217;s something special about this low-budget shocker: the devil, whose face we don&#8217;t see, comes shuffling into her room supporting himself on two of those metal canes you can buy at your local Walgreens. It&#8217;s a nice, original touch, showing that the filmmakers are using their heads, realizing that they&#8217;re working within a genre with firmly established conventions but able to carve out a little niche for themselves.At the funeral, we meet our two principals: there&#8217;s Diane Shaw (Belinda Montgomery), who doesn&#8217;t yet know who her daddy is, and Lilith (Shelly Winters), who was mom&#8217;s friend back in the day. Soon, Diane is living at Lilith&#8217;s, where she begins to demonstrate that trait that is indispensible in a horror-movie heroine: she remains blissfully ignorant of mounting evidence of supernatural chicanery, unable to draw the conclusions that would be obvious to a child. Take her mother&#8217;s ring, which Lilith gives to her and which just so happens to bear the same insignia as the one on the staff in the huge painting of the devil that hangs over the fireplace. Even after this insignia shows up on Lilith&#8217;s favored brand of cigarettes, and on the cover of a demonic baby book—which is concealed in a secret compartment—that contains an extremely detailed record of her childhood, it&#8217;s not enough to do more than put a slight furrow in her brow. Where most people would have been in Federal Witness Protection by the 20-minute mark of the film, she, like other horror movie protagonists, gamely sticks it out, because otherwise we wouldn&#8217;t have feature-length horror films.Maybe the problem is that Montgomery isn&#8217;t a very good actress (her time on Doogie Howser, MD notwithstanding—that was years later); perhaps there was something going on inside (like, you know, fear or suspicion) that she was unable to communicate. Even after she discovers that her mom&#8217;s ring gives her the power to hynotize children and send them into traffic, her face registers only mild alarm, not &#8220;Oh my god my mom&#8217;s ring grants me Satan&#8217;s evil power to destroy.&#8221; She&#8217;s certainly surrounded by heavy hitters: the high-profile supporting cast&#8217;s trophy shelf contains two Oscars from eight nominations, but once you get away from Ladd (unrecognizable), Joseph Cotten (really great as a kindly, helpful judge), and Winters (enjoyably bonkers), the pickings get slim. The filmmaking prowess is lacking, too: cinematographer J.J. Jones has obviously seen Dutch (tilted) angles in other horror films, but he hasn&#8217;t figured out exactly why those shots work sometimes and not at others, so he sprinkles them through the film at random, sometimes switching to one in the middle of a shot.Overall, though, this is a fine, often inventive diversion. The filmmakers have seen enough horror films to know which ones are worth stealing from, and their primary influence is the uneasy horror/comedy blend of Roman Polanski&#8217;s Rosemary&#8217;s Baby; this film could be seen as a continuation of that deliciously nihilistic cornerstone of the genre. But there are creative borrowings from other notable films (I detect a bit of Aldo Lada&#8217;s giallo Short Night of Glass Dolls, for example), along with enough originality to make me surprised this never saw a theatrical run.</p>\n				</div>\n			</div> <!-- .et_pb_text -->\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row -->\n				\n				\n			</div> <!-- .et_pb_section --></p>\n'),(699,313,'_et_pb_ab_stats_refresh_interval','hourly'),(700,313,'_et_pb_old_content',''),(701,313,'_et_pb_enable_shortcode_tracking',''),(702,313,'_et_pb_custom_css',''),(703,313,'_et_pb_gutter_width','3'),(707,321,'_wp_attached_file','2019/07/sherlock.jpg'),(708,321,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1060;s:6:\"height\";i:560;s:4:\"file\";s:20:\"2019/07/sherlock.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"sherlock-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"sherlock-300x158.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:158;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:20:\"sherlock-768x406.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:406;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"sherlock-1024x541.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:541;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:20:\"sherlock-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:20:\"sherlock-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:20:\"sherlock-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:20:\"sherlock-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(709,320,'_thumbnail_id','321'),(728,325,'_edit_last','1'),(711,320,'_et_post_bg_color','#ffffff'),(712,320,'_et_post_bg_layout','light'),(713,320,'_et_pb_show_title','off'),(714,320,'_et_pb_post_hide_nav','default'),(715,320,'_et_pb_page_layout','et_no_sidebar'),(716,320,'_et_pb_side_nav','off'),(717,320,'_et_pb_use_builder','on'),(718,320,'_et_builder_version','BB|Divi|3.26.3'),(719,320,'_et_pb_show_page_creation','off'),(720,320,'_et_pb_first_image',''),(721,320,'_et_pb_truncate_post','<p><div class=\"et_pb_section et_pb_section_16 et_section_regular\">\n				\n				\n				\n				\n					<div class=\"et_pb_row et_pb_row_6\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_6  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_module et_pb_image et_pb_image_6\">\n				\n				\n				<a href=\"http://itcamefrombeyondpulp.com\"><span class=\"et_pb_image_wrap \"><img src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/header.jpg\" alt=\"\" /></span></a>\n			</div>\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row -->\n				\n				\n			</div> <!-- .et_pb_section --><div class=\"et_pb_section et_pb_section_18 et_pb_fullwidth_section et_section_regular\">\n				\n				\n				\n				\n					<div class=\"et_pb_with_border et_pb_module et_pb_fullwidth_menu et_pb_fullwidth_menu_3 et_pb_bg_layout_dark  et_pb_text_align_center et_dropdown_animation_fade\">\n				\n				\n				<div class=\"et_pb_row clearfix\">\n					<nav class=\"fullwidth-menu-nav\"><ul class=\"fullwidth-menu nav downwards\">\n					<li class=\"page_item page-item-33\"><a href=\"http://itcamefrombeyondpulp.com/books/\">Books</a></li>\n<li class=\"page_item page-item-45\"><a href=\"http://itcamefrombeyondpulp.com/movies/\">Movies</a></li>\n<li class=\"page_item page-item-59\"><a href=\"http://itcamefrombeyondpulp.com/sales/\">Sales</a></li>\n</ul></nav>\n					<div class=\"et_mobile_nav_menu\">\n						<a href=\"#\" class=\"mobile_nav closed\">\n							<span class=\"mobile_menu_bar\"></span>\n						</a>\n					</div>\n				</div>\n			</div>\n				\n				\n			</div> <!-- .et_pb_section --><div class=\"et_pb_section et_pb_section_19 et_pb_with_background et_section_regular\">\n				\n				\n				\n				\n					<div class=\"et_pb_with_border et_pb_row et_pb_row_7\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_7  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_module et_pb_image et_pb_image_7\">\n				\n				\n				<span class=\"et_pb_image_wrap \"><img src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/sherlock.jpg\" alt=\"\" /></span>\n			</div><div class=\"et_pb_module et_pb_text et_pb_text_3 et_pb_bg_layout_light  et_pb_text_align_left\">\n				\n				\n				<div class=\"et_pb_text_inner\">\n					<p>The Adventures of Sherlock Holmes (Alfred L. Werker, 1939, 88 min.)<br />\nBasil Rathbone and Nigel Bruce return for the second time as Sherlock Holmes and Dr. Watson in this enjoyable, suspenseful film, the last in the series to be set in Victorian England. For their second outing, they face off against Dr. Moriarty himself (George Zucco), Holmes&#8217;s arch-enemy. The film is the perfect blend of mystery and comedy, showing off the series&#8217;s potential for both. The only real problem with this film is a rather disappointing Moriarty; Zucco looks a tad too&#8230; ordinary. For master criminals of the Victorian era, I want flowing overcoats, black hair in a widow&#8217;s peak, and fiendish laughter, not some guy who looks like&#8230; well, like a professor.<br />\nThe film opens with the diabolical Moriarty defeating justice yet again. A jury grudgingly finds him not guilty of some horrific crime or another just seconds before Holmes rushes in with damning evidence. The best scene in the film comes as the two bitter enemies leave the courtroom; the two share a cab home while discussing their mutual hatred and desire for revenge, and Moriarty promises that his next caper will be so brilliant that it defeats even the mind of Holmes.<br />\nAs Holmes and Watson settle down to wait for clues to Moriarty&#8217;s next plan, Moriarty concocts not one but two mysteries, one of them designed to distract Holmes from the real caper. Knowing Holmes&#8217;s attraction to women in peril, he devises a diabolical, murderous plot that resurrects a decades-old murder—surely a lot of trouble to go through just to distract Holmes, but then again, Moriarty&#8217;s not a very nice guy, and he doesn&#8217;t care who thinks so. There&#8217;s a wonderful exchange between him and Bassick (Arthur Hohl), one of his henchmen; when Moriarty informs him what his role will be, Bassick laments what happened to the last person Moriarty enlisted. &#8220;Oh, poor Higgins,&#8221; says Moriarty. &#8220;They found nothing but his boots!&#8221; To which Bassick replies indignantly, &#8220;One boot!&#8221;<br />\nThe real crime is the theft of a famous emerald from among the Crown Jewels. Moriarty actually sends a letter to Ronald Ramsgate (Henry Stephenson), the caretaker of the jewels, threatening to steal it. Ramsgate attempts to enlist Holmes&#8217;s help, but Holmes is distracted by the sad case of the Brandon family. Ten years earlier, the elder Brandon was murdered in South America; now, the younger generation of Brandons, including the nance Lloyd (Peter Willes) and the beautiful young Ann (Ida Lupino), are receiving strange, threatening drawings inscribed with ominous dates. Holmes decides that he must protect Ann (he doesn&#8217;t do Lloyd much good), and he sets out to solve the mystery and save Ann from a dreadful murder. Ann&#8217;s fiance Jerrold (Alan Marshal) attempts to stop Ann from enlisting Holmes, setting himself up as a likely suspect. Intrigue ensues.<br />\nDirector Alfred L. Werker paces the film perfectly, with just the right blend of tense scenes and opportunities to catch one&#8217;s breath. There are two show-stopping scenes, one in which Ann is chased through a foggy park and the final showdown between Holmes and Moriarty in a dazzling Tower of London set. The sham case Moriarty cooks up is textbook Sherlock Holmes, and it&#8217;s set up so that all along, we are shouting at Holmes to ingore all of the red herrings and stop Moriarty; it&#8217;s only during the down times that we realize that even though the Brandon case is just a distraction, it&#8217;s time better spent for Holmes to save Ann than to save the Crown Jewels.<br />\nRathbone and Bruce took three years off before resuming their roles in twelve more films in the space of four years; these new scenes transplanted the dynamic duo to the twentieth century and turned Watson into little more than comic relief. There are comedic scenes in this film, but Watson isn&#8217;t a clown. One good example occurs when Watson is lying on the cobblestones at a murder site while Holmes is off measuring things in the bushes. A gentlemanly passerby inquires as to his well-being, and the two have a humorous exchange that has Watson being the source of the comedy without being the butt of the joke.<br />\nBaker Street Regulars (actors who appeared in more than two films in the series as different characters):<br />\nHarry Cording, 1st of 8 appearances (as second phoney policeman) Mary Forbes, 1st of 3 (Lady Conyngham) Holmes Herbert, 1st of 6 (Chief Justice) Leyland Hogdson, 1st of 7 (unspecified bobby) Arthur Hohl, 1st of 3 (Bassick) Boyd Irwin, 1st of 3 (bobby) Eric Wilton, 1st of 3 (Conyngham Butler)</p>\n				</div>\n			</div> <!-- .et_pb_text -->\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row -->\n				\n				\n			</div> <!-- .et_pb_section --></p>\n'),(722,320,'_et_pb_ab_stats_refresh_interval','hourly'),(723,320,'_et_pb_old_content',''),(724,320,'_et_pb_enable_shortcode_tracking',''),(725,320,'_et_pb_custom_css',''),(726,320,'_et_pb_gutter_width','3'),(729,325,'_edit_lock','1564157631:1'),(730,326,'_wp_attached_file','2019/07/hound.jpg'),(731,326,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1806;s:6:\"height\";i:1016;s:4:\"file\";s:17:\"2019/07/hound.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:17:\"hound-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:17:\"hound-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:17:\"hound-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:18:\"hound-1024x576.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:17:\"hound-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:18:\"hound-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:17:\"hound-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:17:\"hound-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:18:\"hound-1080x608.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:608;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:17:\"hound-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(732,325,'_thumbnail_id','326'),(750,330,'_edit_last','1'),(734,325,'_et_post_bg_color','#ffffff'),(735,325,'_et_post_bg_layout','light'),(736,325,'_et_pb_show_title','off'),(737,325,'_et_pb_post_hide_nav','default'),(738,325,'_et_pb_page_layout','et_no_sidebar'),(739,325,'_et_pb_side_nav','off'),(740,325,'_et_pb_use_builder','on'),(741,325,'_et_builder_version','BB|Divi|3.26.3'),(742,325,'_et_pb_show_page_creation','on'),(743,325,'_et_pb_first_image',''),(744,325,'_et_pb_truncate_post','<p><div class=\"et_pb_section et_pb_section_11 et_section_regular\">\n				\n				\n				\n				\n					<div class=\"et_pb_row et_pb_row_4\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_4  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_module et_pb_image et_pb_image_4\">\n				\n				\n				<a href=\"http://itcamefrombeyondpulp.com\"><span class=\"et_pb_image_wrap \"><img src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/header.jpg\" alt=\"\" /></span></a>\n			</div>\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row -->\n				\n				\n			</div> <!-- .et_pb_section --><div class=\"et_pb_section et_pb_section_13 et_pb_fullwidth_section et_section_regular\">\n				\n				\n				\n				\n					<div class=\"et_pb_with_border et_pb_module et_pb_fullwidth_menu et_pb_fullwidth_menu_2 et_pb_bg_layout_dark  et_pb_text_align_center et_dropdown_animation_fade\">\n				\n				\n				<div class=\"et_pb_row clearfix\">\n					<nav class=\"fullwidth-menu-nav\"><ul class=\"fullwidth-menu nav downwards\">\n					<li class=\"page_item page-item-33\"><a href=\"http://itcamefrombeyondpulp.com/books/\">Books</a></li>\n<li class=\"page_item page-item-45\"><a href=\"http://itcamefrombeyondpulp.com/movies/\">Movies</a></li>\n<li class=\"page_item page-item-59\"><a href=\"http://itcamefrombeyondpulp.com/sales/\">Sales</a></li>\n</ul></nav>\n					<div class=\"et_mobile_nav_menu\">\n						<a href=\"#\" class=\"mobile_nav closed\">\n							<span class=\"mobile_menu_bar\"></span>\n						</a>\n					</div>\n				</div>\n			</div>\n				\n				\n			</div> <!-- .et_pb_section --><div class=\"et_pb_section et_pb_section_14 et_pb_with_background et_section_regular\">\n				\n				\n				\n				\n					<div class=\"et_pb_with_border et_pb_row et_pb_row_5\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_5  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_module et_pb_image et_pb_image_5\">\n				\n				\n				<span class=\"et_pb_image_wrap \"><img src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/hound.jpg\" alt=\"\" /></span>\n			</div><div class=\"et_pb_module et_pb_text et_pb_text_2 et_pb_bg_layout_light  et_pb_text_align_left\">\n				\n				\n				<div class=\"et_pb_text_inner\">\n					<p>The Hound of the Baskervilles (Sidney Lanfield, 1939, 80 min.)There have been at least twenty film versions of this, Arthur Conan Doyle&#8217;s most famous story. In addition to the films admittedly based on it, there are countless others that clearly take their inspiration from it. It might be because it&#8217;s one of his few novel-length works; shorter works would require a lot of padding, or, like the later films in this series, the creation of an entirely new story. But there&#8217;s also something elemental (if not elementary) about the story that appeals to our seemingly insatiable desire for a good supernatural mystery.This was the first teaming of Basil Rathbone and Nigel Bruce as Sherlock Holmes and his assistant, Watson. I had never seen one of these films before, but when I started reading the collected Sherlock Holmes stories last year, it was Rathbone&#8217;s face that I saw while I read them. Strangely enough, I didn&#8217;t see Bruce as Watson, perhaps because the Watson of the stories is clearly a younger man than Bruce, or perhaps because I wasn&#8217;t familiar with Bruce from other films. Apparently, his later incarnations of Watson turn him into a brainless comic sidekick, so I&#8217;m glad I started here.Dr. Mortimer (Lionel Atwill) comes to Holmes and Watson with a frightful tale: the Baskerville family is cursed, doomed to die at the teeth of an infernal, spectral hound since an ancestor&#8217;s brutal kidnapping of a village girl. The latest to go, Sir Charles, was a friend of Mortimer&#8217;s, and the elderly doctor wants Holmes&#8217;s help in preventing the same fate from befalling Sir Henry (Richard Greene), the Canadian son of the late Baskerville. Holmes agrees to take the case, although he doubts the supernatural angle. He is intrigued even more when an attempt is made on Sir Henry&#8217;s life within hours of his arrival.One odd thing about this, the most famous Sherlock Holmes story, is that Holmes is absent for the entire second act. After sending Watson to the Baskerville estate in Sir Henry&#8217;s company, Holmes disappears. The story then turns into a sort of mystery spoof, where the easily-rattled Watson has to face the fog-cloaked moors and the mythical beast without his better half. Suspects abound: is it the widow&#8217;s-peaked butler Barryman (John Carradine) and his ugly wife (Eily Malyon), who seem to be signaling to an unknown party in the moors? Is it that unknown party (Nigel De Brulier), a wild-haired madman who attempts to squash Watson and Henry with a boulder? Is it John Stapleton (Morton Lowry), the glad-handing young man who lives across the moor, whose sister Beryl (Wendy Barrie) quickly develops a romance with Sir Henry? Or is it actually a huge, spectral hound?Although it was filmed entirely in Fox&#8217;s studios, there is plenty of foggy atmosphere to this film. The moors are convincingly eerie, and at times you can forget that it&#8217;s all built from plaster. The Great Grimpen Mire set was reportedly so enormous that Richard Greene got lost in it. The Hound, when it makes its appearance, is actually frightening (even though, in retrospect, it was just a Great Dane), and the scene when it attacks one of the characters is suitably vicious.The film is chock-full of great supporting talent. Oddly enough, that supporting talent includes Rathbone and Bruce: the film was conceived as a starring vehicle for Richard Greene, who received top billing. The always dependable Lionel Atwill gets to play a doctor again, albeit not a mad one this time around. John Carradine, who has failed to impress me in other films, was suitably ominous here. A moment of comic relief comes from Barlowe Borland as a lawsuit-happy neighbor.After this, Rathbone and Bruce filmed The Adventures of Sherlock Holmes for Fox, and then Universal took over, transplanting the dynamic duo to the twentieth century and having them deal with contemporary crimes in another twelve films. I&#8217;m not sure how I feel about that. I guess I&#8217;ll find out when I watch them.Baker Street Regulars (actors who appeared in more than two films in the series as different characters):Crazily enough, there&#8217;s only one supporting actor who went on to play different roles in other Sherlock Holmes films: David Thursby, who played the open carriage driver here, his first of three appearances in the series.</p>\n				</div>\n			</div> <!-- .et_pb_text -->\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row -->\n				\n				\n			</div> <!-- .et_pb_section --></p>\n'),(745,325,'_et_pb_ab_stats_refresh_interval','hourly'),(746,325,'_et_pb_old_content',''),(747,325,'_et_pb_enable_shortcode_tracking',''),(748,325,'_et_pb_custom_css',''),(749,325,'_et_pb_gutter_width','3'),(751,330,'_edit_lock','1564166202:1'),(752,331,'_wp_attached_file','2019/07/dressed.jpg'),(753,331,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1399;s:6:\"height\";i:691;s:4:\"file\";s:19:\"2019/07/dressed.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"dressed-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:19:\"dressed-300x148.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:148;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:19:\"dressed-768x379.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:379;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:20:\"dressed-1024x506.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:506;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:19:\"dressed-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:20:\"dressed-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:19:\"dressed-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:19:\"dressed-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:20:\"dressed-1080x533.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:533;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:19:\"dressed-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(771,334,'_edit_last','1'),(755,330,'_et_post_bg_color','#ffffff'),(756,330,'_et_post_bg_layout','light'),(757,330,'_et_pb_show_title','off'),(758,330,'_et_pb_post_hide_nav','default'),(759,330,'_et_pb_page_layout','et_no_sidebar'),(760,330,'_et_pb_side_nav','off'),(761,330,'_et_pb_use_builder','on'),(762,330,'_et_builder_version','BB|Divi|3.26.3'),(763,330,'_et_pb_show_page_creation','on'),(764,330,'_et_pb_first_image',''),(765,330,'_et_pb_truncate_post','<p><div class=\"et_pb_section et_pb_section_6 et_section_regular\">\n				\n				\n				\n				\n					<div class=\"et_pb_row et_pb_row_2\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_2  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_module et_pb_image et_pb_image_2\">\n				\n				\n				<a href=\"http://itcamefrombeyondpulp.com\"><span class=\"et_pb_image_wrap \"><img src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/header.jpg\" alt=\"\" /></span></a>\n			</div>\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row -->\n				\n				\n			</div> <!-- .et_pb_section --><div class=\"et_pb_section et_pb_section_8 et_pb_fullwidth_section et_section_regular\">\n				\n				\n				\n				\n					<div class=\"et_pb_with_border et_pb_module et_pb_fullwidth_menu et_pb_fullwidth_menu_1 et_pb_bg_layout_dark  et_pb_text_align_center et_dropdown_animation_fade\">\n				\n				\n				<div class=\"et_pb_row clearfix\">\n					<nav class=\"fullwidth-menu-nav\"><ul class=\"fullwidth-menu nav downwards\">\n					<li class=\"page_item page-item-33\"><a href=\"http://itcamefrombeyondpulp.com/books/\">Books</a></li>\n<li class=\"page_item page-item-45\"><a href=\"http://itcamefrombeyondpulp.com/movies/\">Movies</a></li>\n<li class=\"page_item page-item-59\"><a href=\"http://itcamefrombeyondpulp.com/sales/\">Sales</a></li>\n</ul></nav>\n					<div class=\"et_mobile_nav_menu\">\n						<a href=\"#\" class=\"mobile_nav closed\">\n							<span class=\"mobile_menu_bar\"></span>\n						</a>\n					</div>\n				</div>\n			</div>\n				\n				\n			</div> <!-- .et_pb_section --><div class=\"et_pb_section et_pb_section_9 et_pb_with_background et_section_regular\">\n				\n				\n				\n				\n					<div class=\"et_pb_with_border et_pb_row et_pb_row_3\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_3  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_module et_pb_image et_pb_image_3\">\n				\n				\n				<span class=\"et_pb_image_wrap \"><img src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/dressed.jpg\" alt=\"\" /></span>\n			</div><div class=\"et_pb_module et_pb_text et_pb_text_1 et_pb_bg_layout_light  et_pb_text_align_left\">\n				\n				\n				<div class=\"et_pb_text_inner\">\n					<p>Dressed to Kill (Roy William Neill, 1946, 72 min.)The Rathbone/Bruce series of Sherlock Holmes films didn&#8217;t exactly limp to a close, but it didn&#8217;t go out on a high note either. Dressed to Kill is a passable entry, featuring a pretty good adaptation of Sir Arthur Conan Doyle&#8217;s story &#8220;The Adventure of the Six Napoleons,&#8221; Basil Rathbone&#8217;s usual good performance as Holmes, and the series&#8217;s only tantalizing mention of one of the most intriguing characters in the Holmes canon, Irene Adler, &#8220;The Woman.&#8221; On hearing her name in the opening moments of the film, I had hopes that she would be introduced as a foil, but I was disappointed.The story concerns a series of mysterious attacks on seemingly random people; the only connection between them is that they all purchased identical music boxes at an auction. When Holmes is brought into the case after an attack on Watson&#8217;s friend Stinky Emery (Edmund Breon), he discovers that the music boxes were made in prison by a convict who had stolen the Bank of England&#8217;s printing plates for making £5 notes. Before he could be captured, he hid them somewhere, and they were never found. Holmes deduces that the convict had somehow hidden a message inside the music boxes about where to find the plates, and he must figure out the code before the bad guys, led by Hilda Courtney (Patricia Morison), find them and print their own money.The film&#8217;s best addition to the story is the way the code works. The music boxes all play the same melody, with minor variations, and Holmes has to figure out what the changed notes mean. The film is nicer to Watson than previous entries in that it allows him to suggest the key to breaking the code and the identity of Dr. S, albeit accidentally. (Of course, there&#8217;s a scene where he attempts to placate a frightened girl by making duck noises, so he doesn&#8217;t escape his usual comic relief role.)It seems to me that the mystery was unnecessarily prolonged. The convict was captured a mere 15 minutes after stealing the plates, and he likely went in a single direction. Holmes could have easily reduced the search area on the basis of that evidence, and once he got the clue &#8220;Dr. S&#8221;—detailing a location among the bookshelves of an unknown doctor—it shouldn&#8217;t have been so difficult to figure out what the code meant. But that easy solution would have made for a very short film.Things were getting sloppy by the end of the series. There are some noticeably odd cuts that might have resulted from the restoration process—these films were all restored by the UCLA Film and Television Archive—but they might just as possibly result from an editor instructed to finish the film in a hurry. Patricia Morison&#8217;s accent leaves much to be desired, and there&#8217;s an odd bit of unnecessary narration at the beginning. But the film contains at least one marvelous scene—Stinky Emery&#8217;s death—and the process by which Holmes figures out the code is interesting, if, as I mentioned, unnecessary. The film&#8217;s title has absolutely nothing to do with the film itself; I&#8217;m sure the reason behind it would make a good story.And this was it for the series (although I still have four to go as of this writing). Director Roy William Neill would finish one more film before dying of a heart attack in late 1946. Basil Rathbone would never really overcome being typecast, appearing in a handful of films before his death in 1967. Nigel Bruce had always played bumbling Brits, and he continued to do so until his death in 1953.Baker Street Regulars (actors who appeared in more than two films in the series as different characters):Wilson Benge, 5th of 5 appearances (as Minister on museum tour) Harry Cording, 8th of 8 (Hamid) Holmes Herbert, 6th of 6 (Ebenezer Crabtree) Leyland Hodgson, 7th of 7 (tour guide) Olaf Hytten, 6th of 6 (Alfred, auction house bookkeeper) Boyd Irwin, 3rd of 3 (detective with X-ray photos) Sally Shepherd, 3rd of 3 (Tobacconist) Ian Wolfe, 4th of 4 (Commissioner of Scotland Yard) Frederick Worlock, 6th of 6 (Colonel Cavanaugh)</p>\n				</div>\n			</div> <!-- .et_pb_text -->\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row -->\n				\n				\n			</div> <!-- .et_pb_section --></p>\n'),(766,330,'_et_pb_ab_stats_refresh_interval','hourly'),(767,330,'_et_pb_old_content',''),(768,330,'_et_pb_enable_shortcode_tracking',''),(769,330,'_et_pb_custom_css',''),(770,330,'_et_pb_gutter_width','3'),(772,334,'_edit_lock','1564166478:1'),(773,335,'_wp_attached_file','2019/07/house-of-fear.jpg'),(774,335,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1280;s:6:\"height\";i:720;s:4:\"file\";s:25:\"2019/07/house-of-fear.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"house-of-fear-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"house-of-fear-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:25:\"house-of-fear-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:26:\"house-of-fear-1024x576.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:25:\"house-of-fear-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:26:\"house-of-fear-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:25:\"house-of-fear-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:25:\"house-of-fear-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:26:\"house-of-fear-1080x608.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:608;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:25:\"house-of-fear-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(775,336,'_wp_attached_file','2019/07/house-of-fear-1.jpg'),(776,336,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1280;s:6:\"height\";i:720;s:4:\"file\";s:27:\"2019/07/house-of-fear-1.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"house-of-fear-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"house-of-fear-1-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:27:\"house-of-fear-1-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:28:\"house-of-fear-1-1024x576.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:27:\"house-of-fear-1-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:28:\"house-of-fear-1-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:27:\"house-of-fear-1-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:27:\"house-of-fear-1-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:28:\"house-of-fear-1-1080x608.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:608;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:27:\"house-of-fear-1-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(777,334,'_thumbnail_id','336'),(779,334,'_et_post_bg_color','#ffffff'),(780,334,'_et_post_bg_layout','light'),(781,334,'_et_pb_show_title','off'),(782,334,'_et_pb_post_hide_nav','default'),(783,334,'_et_pb_page_layout','et_no_sidebar'),(784,334,'_et_pb_side_nav','off'),(785,334,'_et_pb_use_builder','on'),(786,334,'_et_builder_version','BB|Divi|3.26.3'),(787,334,'_et_pb_show_page_creation','on'),(788,334,'_et_pb_first_image',''),(789,334,'_et_pb_truncate_post','<p><div class=\"et_pb_section et_pb_section_1 et_section_regular\">\n				\n				\n				\n				\n					<div class=\"et_pb_row et_pb_row_0\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_0  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_module et_pb_image et_pb_image_0\">\n				\n				\n				<a href=\"http://itcamefrombeyondpulp.com\"><span class=\"et_pb_image_wrap \"><img src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/header.jpg\" alt=\"\" /></span></a>\n			</div>\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row -->\n				\n				\n			</div> <!-- .et_pb_section --><div class=\"et_pb_section et_pb_section_3 et_pb_fullwidth_section et_section_regular\">\n				\n				\n				\n				\n					<div class=\"et_pb_with_border et_pb_module et_pb_fullwidth_menu et_pb_fullwidth_menu_0 et_pb_bg_layout_dark  et_pb_text_align_center et_dropdown_animation_fade\">\n				\n				\n				<div class=\"et_pb_row clearfix\">\n					<nav class=\"fullwidth-menu-nav\"><ul class=\"fullwidth-menu nav downwards\">\n					<li class=\"page_item page-item-33\"><a href=\"http://itcamefrombeyondpulp.com/books/\">Books</a></li>\n<li class=\"page_item page-item-45\"><a href=\"http://itcamefrombeyondpulp.com/movies/\">Movies</a></li>\n<li class=\"page_item page-item-59\"><a href=\"http://itcamefrombeyondpulp.com/sales/\">Sales</a></li>\n</ul></nav>\n					<div class=\"et_mobile_nav_menu\">\n						<a href=\"#\" class=\"mobile_nav closed\">\n							<span class=\"mobile_menu_bar\"></span>\n						</a>\n					</div>\n				</div>\n			</div>\n				\n				\n			</div> <!-- .et_pb_section --><div class=\"et_pb_section et_pb_section_4 et_pb_with_background et_section_regular\">\n				\n				\n				\n				\n					<div class=\"et_pb_with_border et_pb_row et_pb_row_1\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_1  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_module et_pb_image et_pb_image_1\">\n				\n				\n				<span class=\"et_pb_image_wrap \"><img src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/house-of-fear.jpg\" alt=\"\" /></span>\n			</div><div class=\"et_pb_module et_pb_text et_pb_text_0 et_pb_bg_layout_light  et_pb_text_align_left\">\n				\n				\n				<div class=\"et_pb_text_inner\">\n					<p>The House of Fear (Roy William Neill, 1945, 69 min.)It is my contention that a lot of the problems that people encounter in Gothic horror or mystery films and novels are the result of poor naming: if your hamlet is called Misery End, something bad is bound to happen there. Similarly, a house named Drear Cliff House is bound to attract unhappiness. Just so in this, the tenth of the 14 Basil Rathbone/Nigel Bruce Sherlock Holmes films of the 1930s and 1940s, in which Holmes and his trusty, if somewhat addled, friend Watson are summoned to a creaky old house inhabited by the Good Comrades, an ever-diminishing group of people with big insurance policies. Lately they&#8217;ve had a nasty tendency to die in spectacular ways (this house, of course, has a curse: &#8220;no man ever goes whole to his grave&#8221;), and the insurance company, unhappy about the payouts, enlists Holmes to investigate.Interestingly, despite Universal&#8217;s radical updating of the series to modern times, there&#8217;s little updating in evidence here: no automobiles rumble up and down the cobblestones, and the lights at Drear Cliff are powered by oil, not electricity. It could very well have taken place in Edwardian England, but the effect is instead to accentuate Drear House&#8217;s dreariness. Other oddities enhance viewers&#8217; experience. It&#8217;s one of the few in the series that employs a narrator, and not a major character at that—it&#8217;s an insurance agent who brings us up to speed at the beginning and disappears until the end. Director Roy William Neill and cinematographer Virgil Miller use an unusual (for the series, at least as far as I can remember) number of foregrounded objects to frame shots: the camera seems to peer through candelabra and crouch behind chaise lounges, unlike the clear lines of sight favored in the other films. There are a number of exteriors that must have been actually filmed outside, a major departure from the stagebound feel of the rest of the series. And finally, Neill and Miller employ noirishly tilted cameras at times.There&#8217;s the usual late-series overemphasis on using Nigel Bruce and Dennis Hoey (appearing again as Inspector Lestrade) as comic relief, including an uncomfortably long head-scratcher of a scene in which Watson discharges his weapon at phantoms in his room. And Lestrade seems more physically oafish than in the other films. However, this is one of the few entries in which Watson&#8217;s tendency to voice premature conclusions about suspects&#8217; guilt turns out to be mostly correct, although he doesn&#8217;t always know it at the time, and the traditional last-scene speech by Holmes is a kind and moving reflection on how much he values Watson.Rathbone is his usual perfection as Holmes, although he employs a more brusque manner toward others: I don&#8217;t remember him interrupting people as much in the other films as he does here, but it adds a dimension to his character, a kind of annoyance at being the go-to guy for unexplained phenomena that always turn out to be eminently explainable. The solution to the mystery is easily guessed at, although that might be because I vaguely remember reading the original story, &#8220;The Adventure of the Five Orange Pips.&#8221; It&#8217;s middle-of-the-pack entry in the series, neither up to the standards of the first two films nor as abject as Pursuit to Algiers.Baker Street Regulars (actors who appeared in more than two films in the series as different characters):Paul Cavanagh, 2nd of 3 appearances (as Dr. Simon Merivale)Holmes Herbert, 5th of 6 (Alan Cosgrave)Harry Cording, 6th of 8 (Captain John Simpson)Sally Shepherd, 1st of 3 (Mrs. Monteith)Gavin Muir, 4th of 4 (Mr. Chalmers)Wilson Benge, 3rd of 5 (Guy Davies)Leslie Denison, 5th of 6 (Sergeant Bleeker)David Thursby, 3rd of 3 (Police Sergeant)</p>\n				</div>\n			</div> <!-- .et_pb_text -->\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row -->\n				\n				\n			</div> <!-- .et_pb_section --></p>\n'),(790,334,'_et_pb_ab_stats_refresh_interval','hourly'),(791,334,'_et_pb_old_content',''),(792,334,'_et_pb_enable_shortcode_tracking',''),(793,334,'_et_pb_custom_css',''),(794,334,'_et_pb_gutter_width','3'),(796,343,'_edit_lock','1564455975:1'),(797,344,'_wp_attached_file','2019/07/pearl.jpg'),(798,344,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1200;s:6:\"height\";i:675;s:4:\"file\";s:17:\"2019/07/pearl.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:17:\"pearl-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:17:\"pearl-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:17:\"pearl-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:18:\"pearl-1024x576.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:17:\"pearl-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:18:\"pearl-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:17:\"pearl-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:17:\"pearl-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:18:\"pearl-1080x608.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:608;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:17:\"pearl-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(799,343,'_thumbnail_id','344'),(817,347,'_edit_last','1'),(801,343,'_et_post_bg_color','#ffffff'),(802,343,'_et_post_bg_layout','light'),(803,343,'_et_pb_show_title','off'),(804,343,'_et_pb_post_hide_nav','default'),(805,343,'_et_pb_page_layout','et_no_sidebar'),(806,343,'_et_pb_side_nav','off'),(807,343,'_et_pb_use_builder','on'),(808,343,'_et_builder_version','BB|Divi|3.26.3'),(809,343,'_et_pb_show_page_creation','on'),(810,343,'_et_pb_first_image',''),(811,343,'_et_pb_truncate_post','<p><div class=\"et_pb_section et_pb_section_6 et_section_regular\">\n				\n				\n				\n				\n					<div class=\"et_pb_row et_pb_row_2\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_2  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_module et_pb_image et_pb_image_2\">\n				\n				\n				<a href=\"http://itcamefrombeyondpulp.com\"><span class=\"et_pb_image_wrap \"><img src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/header.jpg\" alt=\"\" /></span></a>\n			</div>\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row -->\n				\n				\n			</div> <!-- .et_pb_section --><div class=\"et_pb_section et_pb_section_8 et_pb_fullwidth_section et_section_regular\">\n				\n				\n				\n				\n					<div class=\"et_pb_with_border et_pb_module et_pb_fullwidth_menu et_pb_fullwidth_menu_1 et_pb_bg_layout_dark  et_pb_text_align_center et_dropdown_animation_fade\">\n				\n				\n				<div class=\"et_pb_row clearfix\">\n					<nav class=\"fullwidth-menu-nav\"><ul class=\"fullwidth-menu nav downwards\">\n					<li class=\"page_item page-item-33\"><a href=\"http://itcamefrombeyondpulp.com/books/\">Books</a></li>\n<li class=\"page_item page-item-45\"><a href=\"http://itcamefrombeyondpulp.com/movies/\">Movies</a></li>\n<li class=\"page_item page-item-59\"><a href=\"http://itcamefrombeyondpulp.com/sales/\">Sales</a></li>\n</ul></nav>\n					<div class=\"et_mobile_nav_menu\">\n						<a href=\"#\" class=\"mobile_nav closed\">\n							<span class=\"mobile_menu_bar\"></span>\n						</a>\n					</div>\n				</div>\n			</div>\n				\n				\n			</div> <!-- .et_pb_section --><div class=\"et_pb_section et_pb_section_9 et_pb_with_background et_section_regular\">\n				\n				\n				\n				\n					<div class=\"et_pb_with_border et_pb_row et_pb_row_3\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_3  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_module et_pb_image et_pb_image_3\">\n				\n				\n				<span class=\"et_pb_image_wrap \"><img src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/pearl.jpg\" alt=\"\" /></span>\n			</div><div class=\"et_pb_module et_pb_text et_pb_text_1 et_pb_bg_layout_light  et_pb_text_align_left\">\n				\n				\n				<div class=\"et_pb_text_inner\">\n					<p>The Pearl of Death (Roy William Neill, 1944, 69 min.)The Sherlock Holmes story &#8220;The Adventure of the Six Napoleons&#8221; is the source for not one, but two entries in the Basil Rathbone/Nigel Bruce series of Holmes films produced by Universal. This film is a very close adaptation of the story, while Dressed to Kill, produced two years later at the end of the series, is more of an &#8220;inspired by&#8221; situation. The basic idea is the same: there&#8217;s a secret hidden in one of several identical knick-knacks, and bad guys are willing to murder to get ahold of it. Here, as in Sir Arthur Conan Doyle&#8217;s original story, the thing is the Borgia Pearl, a gem with a long history of bringing misfortune and death to those who possess it.We meet up with Holmes in disguise as an elderly priest. He&#8217;s riding a boat to Dover, and he&#8217;s befriended a young woman (Evelyn Ankers) who is actually a minion of the legendary criminal Giles Conover (Miles Mander). She&#8217;s there to steal the Borgia Pearl from the guard transporting it to London. She unwittingly lets Holmes take possession of the pearl, and now Conover is desperate to get it back. The pearl is placed in a museum, and although Holmes warns them that Conover will attempt to steal it, the curator places it on display. Holmes attempts to demonstrate why the security measures they&#8217;ve taken are insufficient, leading to what might be the first time that Holmes&#8217;s legendary arrogance was the direct cause of a crime. On several occasions, he&#8217;s knowingly placed people in harm&#8217;s way, sometimes—as in Terror by Night—being responsible for their deaths. Here, he&#8217;s directly responsible for the theft of the Borgia Pearl; while he&#8217;s demonstrating the flaws in a museum&#8217;s security system by disconnecting it, Conover dashes off with the pearl. He&#8217;s quickly located, but the pearl is gone. Now Holmes has to find it to regain his reputation. Holmes learns of a series of seemingly unconnected murders—or at least the bumbling Lestrade (Dennis Hoey) thinks they&#8217;re unconnected, despite the fact that all of them were killed in the same manner and that the murderer then smashed all of their china.This film would have been a perfect place to use Holmes&#8217;s arch-nemesis, Professor Moriarty. If I have one consistent complaint about this series of films, it&#8217;s that Moriarty doesn&#8217;t appear often enough: he&#8217;s in only three of them, and in only one (The Woman in Green) is he really effective. Instead, we get second-rate villains, like Conover here or Colonel Sebastian Moran in Terror by Night. However, we do meet a memorable villain, the Hoxton Creeper, played by the acromegalic actor Rondo Hatton. The Creeper, unseen except in silhouette for most of the film, murders by breaking the backs of his victims. I could be picky and say that his preferred method, breaking the third lumbar vertebra, is unlikely to produce instant death as it does in the film, but he&#8217;s creepy enough to make me not give a hoot. The Creeper was such a hit in this film that Universal brought him back for two horror films in 1946, House of Horror and The Brute Man, before Hatton died of complications from his acromelagy.Aside from the Creeper, there&#8217;s not a lot to distinguish this film. Rathbone is good as always, and he&#8217;s allowed a tiny bit of character devlopment when he so royally screws up. Poor Nigel Bruce has only one substantial scene, and it&#8217;s of Watson acting like a buffoon. It&#8217;s certainly not the worst film in the series, but it&#8217;s pretty weak.Baker Street Regulars (actors who appeared in more than two films in the series as different characters):Wilson Benge, 2nd of 5 appearances (playing second steward) Harry Cording, 5th of 8 (George Gelder) Harold De Becker, 3rd of 4 (boss) Leslie Denison, 4th of 6 (Police Sergeant Murdock) Holmes Herbert, 4th of 6 (James Goodram) Leyland Hogdson, 5th of 7 (Customs officer) Arthur Stenning, 2nd of 3 (first steward) David Thursby, 2nd of 3 (unknown) Eric Wilton, 3rd of 3 (Conover&#8217;s chauffeur) Ian Wolfe, 3rd of 4 (Amos Hodder)</p>\n				</div>\n			</div> <!-- .et_pb_text -->\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row -->\n				\n				\n			</div> <!-- .et_pb_section --></p>\n'),(812,343,'_et_pb_ab_stats_refresh_interval','hourly'),(813,343,'_et_pb_old_content',''),(814,343,'_et_pb_enable_shortcode_tracking',''),(815,343,'_et_pb_custom_css',''),(816,343,'_et_pb_gutter_width','3'),(818,347,'_edit_lock','1564456363:1'),(819,348,'_wp_attached_file','2019/07/algiers.jpg'),(820,348,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1155;s:6:\"height\";i:619;s:4:\"file\";s:19:\"2019/07/algiers.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"algiers-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:19:\"algiers-300x161.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:161;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:19:\"algiers-768x412.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:412;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:20:\"algiers-1024x549.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:549;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:19:\"algiers-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:20:\"algiers-1080x619.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:619;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:19:\"algiers-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:19:\"algiers-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:20:\"algiers-1080x579.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:579;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:19:\"algiers-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(821,347,'_thumbnail_id','348'),(823,347,'_et_post_bg_color','#ffffff'),(824,347,'_et_post_bg_layout','light'),(825,347,'_et_pb_show_title','off'),(826,347,'_et_pb_post_hide_nav','default'),(827,347,'_et_pb_page_layout','et_no_sidebar'),(828,347,'_et_pb_side_nav','off'),(829,347,'_et_pb_use_builder','on'),(830,347,'_et_builder_version','BB|Divi|3.26.3'),(831,347,'_et_pb_show_page_creation','on'),(832,347,'_et_pb_first_image',''),(833,347,'_et_pb_truncate_post','<p><div class=\"et_pb_section et_pb_section_1 et_section_regular\">\n				\n				\n				\n				\n					<div class=\"et_pb_row et_pb_row_0\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_0  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_module et_pb_image et_pb_image_0\">\n				\n				\n				<a href=\"http://itcamefrombeyondpulp.com\"><span class=\"et_pb_image_wrap \"><img src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/header.jpg\" alt=\"\" /></span></a>\n			</div>\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row -->\n				\n				\n			</div> <!-- .et_pb_section --><div class=\"et_pb_section et_pb_section_3 et_pb_fullwidth_section et_section_regular\">\n				\n				\n				\n				\n					<div class=\"et_pb_with_border et_pb_module et_pb_fullwidth_menu et_pb_fullwidth_menu_0 et_pb_bg_layout_dark  et_pb_text_align_center et_dropdown_animation_fade\">\n				\n				\n				<div class=\"et_pb_row clearfix\">\n					<nav class=\"fullwidth-menu-nav\"><ul class=\"fullwidth-menu nav downwards\">\n					<li class=\"page_item page-item-33\"><a href=\"http://itcamefrombeyondpulp.com/books/\">Books</a></li>\n<li class=\"page_item page-item-45\"><a href=\"http://itcamefrombeyondpulp.com/movies/\">Movies</a></li>\n<li class=\"page_item page-item-59\"><a href=\"http://itcamefrombeyondpulp.com/sales/\">Sales</a></li>\n</ul></nav>\n					<div class=\"et_mobile_nav_menu\">\n						<a href=\"#\" class=\"mobile_nav closed\">\n							<span class=\"mobile_menu_bar\"></span>\n						</a>\n					</div>\n				</div>\n			</div>\n				\n				\n			</div> <!-- .et_pb_section --><div class=\"et_pb_section et_pb_section_4 et_pb_with_background et_section_regular\">\n				\n				\n				\n				\n					<div class=\"et_pb_with_border et_pb_row et_pb_row_1\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_1  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_module et_pb_image et_pb_image_1\">\n				\n				\n				<span class=\"et_pb_image_wrap \"><img src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/algiers.jpg\" alt=\"\" /></span>\n			</div><div class=\"et_pb_module et_pb_text et_pb_text_0 et_pb_bg_layout_light  et_pb_text_align_left\">\n				\n				\n				<div class=\"et_pb_text_inner\">\n					<p>Pursuit to Algiers (Roy William Neill, 1945, 65 min.)In the worst of the Rathbone/Bruce series of Sherlock Holmes films, Holmes and Watson play nursemaids to a European king on a fraught voyage from England to Algiers, all &#8220;in the name of democratic government.&#8221; (I&#8217;m usure how the death of a figurehead king could really affect a democratic government, and how a country ruled by a non-figurehead king could have much to do with democracy, but that&#8217;s unimportant.) The film is marred by glacial pacing, its own silly premise, and a snowballing series of absurdities that eventually blot out the normal enjoyment of seeing Basil Rathbone and Nigel Bruce do their thing.Although Watson wants to go on a relaxing vacation, Holmes allows himself to be involved in international intrigue once again. The king of a fictional European country has been murdered, and his government wants Holmes to escort the new king (Leslie Vincent) to the safety of Algiers, where loyalists will take him to his throne. Holmes and the king head off in an airplane, while Watson goes aboard a steamer as a distraction. Quickly, though, there&#8217;s trouble: the airplane is shot down, and Holmes and the king are apparently dead. A distraught Watson discovers that the pair were never aboard the plane: they&#8217;ve been on the steamer all along, and now they have to survive the murderous efforts of a trio of killers until they arrive in Algiers.The film makes two grave mistakes: keeping Holmes out of the picture for too long, and then introducing him in a rather stupid manner. Aside from the overly clever beginning, when members of the government of a fictional European country enlist him to guard the new king, Holmes is out of the story for the first third of its running time. That leaves Watson as the primary focus, and although he&#8217;s a genial enough fellow, he only really works when he&#8217;s at Holmes&#8217;s side. We&#8217;re left with some mild comic relief as he suspiciously eyes the other passengers on the ship and develops a touching crush on the young Sheila (Marjorie Riordan). When Holmes reveals to Watson that he wasn&#8217;t killed in the plane crash, the film makes its second misstep: having Holmes and the young Nikolas parade around the ship, drawing attention to themselves. Wouldn&#8217;t it have been much better for them to stay concealed? In most films, I&#8217;d just accept it with the knowledge that &#8220;this is the film about the people who made a rather stupid mistake,&#8221; but I can&#8217;t really accept it from the master detective Sherlock Holmes. (One way to read it that would make it make sense is to view Holmes as having a death wish, but that&#8217;s a darkness that is usually unwelcome in these effervescent films.)From Holmes&#8217;s appearance on the ship, things devolve into an almost sub–James Bond level of silly hijinks. Holmes quickly identifies the people sent to kill Nikolas, but he toys with them flippantly instead of doing anything about them. Even when Mirko (Martin Kosleck) the knife-thrower attempts to skewer him to death in his bed, Holmes merely laughs about his escape and slams the porthole shut. Perhaps he had grounds to call the authorities by this point. (Again, I know this is the movie about the master detective who didn&#8217;t call the authorities, but it stretches our patience beyond what&#8217;s acceptable.)There are two fetching instances of self-reference in the film, perhaps signs that screenwriter Leonard Lee wanted to take the franchise into the postmodern (but perhaps not). During a dinner party, as Holmes attempts to figure out how the assassins are going to strike next, Watson is induced to tell a Sherlock Holmes story; readers familiar with the stories will know that Watson is their purported author, so having Watson tell a story within a story that Watson is presumably telling is quite clever. Then, in the last scene, where Holmes would usually give a patriotic speech (that&#8217;s gone from this film, as is the exhortation to buy war bonds), instead he pokes fun at Watson&#8217;s honest face: &#8220;You&#8217;d never make a good actor, old boy,&#8221; he says. Since Nigel Bruce, playing Watson, is in fact a good actor, one could read this as a meta-comment on the film. Or not.Nota bene: The Internet Movie Database claims that this film is based on an original story by Sir Arthur Conan Doyle, but that&#8217;s misleading. They list a story called &#8220;The Return of Sherlock Holmes,&#8221; but no such story exists: there&#8217;s a collection of Holmes adventures by that title, but none of the stories in it even remotely resembles this plot. However, in one of these stories, Watson mentions in passing &#8220;the affair of the steamship Friesland that so nearly cost us both our lives.&#8221; He gives no details, and Leonard Lee made the rest up.The series was clearly limping to a close. Bertrand Millhauser was gone, leaving Leonard Lee and Frank Gruber to split the writing chores on the final films. Only two films followed before Universal pulled the plug, Terror by Night and Dressed to Kill.Baker Street Regulars (actors who appeared in more than two films in the series as different characters):Wilson Benge, 4th of 5 appearances (as clergyman) Gerald Hamer, 4th of 5 (Kingston) Olaf Hytten, 5th of 6 (Simpson, the gunsmith) Frederick Worlock, 5th of 6 (Prime Minister)</p>\n				</div>\n			</div> <!-- .et_pb_text -->\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row -->\n				\n				\n			</div> <!-- .et_pb_section --></p>\n'),(834,347,'_et_pb_ab_stats_refresh_interval','hourly'),(835,347,'_et_pb_old_content',''),(836,347,'_et_pb_enable_shortcode_tracking',''),(837,347,'_et_pb_custom_css',''),(838,347,'_et_pb_gutter_width','3'),(839,352,'_edit_last','1'),(840,352,'_edit_lock','1564488872:1'),(841,353,'_wp_attached_file','2019/07/claw.jpg'),(842,353,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1200;s:6:\"height\";i:657;s:4:\"file\";s:16:\"2019/07/claw.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"claw-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"claw-300x164.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:164;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:16:\"claw-768x420.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:420;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:17:\"claw-1024x561.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:561;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:16:\"claw-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:17:\"claw-1080x657.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:657;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:16:\"claw-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:16:\"claw-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:17:\"claw-1080x591.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:591;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:16:\"claw-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(843,352,'_thumbnail_id','353'),(861,356,'_edit_last','1'),(845,352,'_et_post_bg_color','#ffffff'),(846,352,'_et_post_bg_layout','light'),(847,352,'_et_pb_show_title','off'),(848,352,'_et_pb_post_hide_nav','default'),(849,352,'_et_pb_page_layout','et_no_sidebar'),(850,352,'_et_pb_side_nav','off'),(851,352,'_et_pb_use_builder','on'),(852,352,'_et_builder_version','BB|Divi|3.26.3'),(853,352,'_et_pb_show_page_creation','on'),(854,352,'_et_pb_first_image',''),(855,352,'_et_pb_truncate_post',''),(856,352,'_et_pb_ab_stats_refresh_interval','hourly'),(857,352,'_et_pb_old_content',''),(858,352,'_et_pb_enable_shortcode_tracking',''),(859,352,'_et_pb_custom_css',''),(860,352,'_et_pb_gutter_width','3'),(862,356,'_edit_lock','1564489231:1'),(863,357,'_wp_attached_file','2019/07/secret-weapon.jpg'),(864,357,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1280;s:6:\"height\";i:720;s:4:\"file\";s:25:\"2019/07/secret-weapon.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"secret-weapon-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"secret-weapon-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:25:\"secret-weapon-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:26:\"secret-weapon-1024x576.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:25:\"secret-weapon-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:26:\"secret-weapon-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:25:\"secret-weapon-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:25:\"secret-weapon-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:26:\"secret-weapon-1080x608.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:608;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:25:\"secret-weapon-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(865,356,'_thumbnail_id','357'),(883,361,'_edit_last','1'),(867,356,'_et_post_bg_color','#ffffff'),(868,356,'_et_post_bg_layout','light'),(869,356,'_et_pb_show_title','off'),(870,356,'_et_pb_post_hide_nav','default'),(871,356,'_et_pb_page_layout','et_no_sidebar'),(872,356,'_et_pb_side_nav','off'),(873,356,'_et_pb_use_builder','on'),(874,356,'_et_builder_version','BB|Divi|3.26.3'),(875,356,'_et_pb_show_page_creation','on'),(876,356,'_et_pb_first_image',''),(877,356,'_et_pb_truncate_post',''),(878,356,'_et_pb_ab_stats_refresh_interval','hourly'),(879,356,'_et_pb_old_content',''),(880,356,'_et_pb_enable_shortcode_tracking',''),(881,356,'_et_pb_custom_css',''),(882,356,'_et_pb_gutter_width','3'),(884,361,'_edit_lock','1564520748:1'),(885,362,'_wp_attached_file','2019/07/voice.jpg'),(886,362,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1280;s:6:\"height\";i:720;s:4:\"file\";s:17:\"2019/07/voice.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:17:\"voice-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:17:\"voice-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:17:\"voice-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:18:\"voice-1024x576.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:17:\"voice-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:18:\"voice-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:17:\"voice-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:17:\"voice-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:18:\"voice-1080x608.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:608;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:17:\"voice-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(887,361,'_thumbnail_id','362'),(905,365,'_edit_last','1'),(889,361,'_et_post_bg_color','#ffffff'),(890,361,'_et_post_bg_layout','light'),(891,361,'_et_pb_show_title','off'),(892,361,'_et_pb_post_hide_nav','default'),(893,361,'_et_pb_page_layout','et_no_sidebar'),(894,361,'_et_pb_side_nav','off'),(895,361,'_et_pb_use_builder','on'),(896,361,'_et_builder_version','BB|Divi|3.26.3'),(897,361,'_et_pb_show_page_creation','on'),(898,361,'_et_pb_first_image',''),(899,361,'_et_pb_truncate_post',''),(900,361,'_et_pb_ab_stats_refresh_interval','hourly'),(901,361,'_et_pb_old_content',''),(902,361,'_et_pb_enable_shortcode_tracking',''),(903,361,'_et_pb_custom_css',''),(904,361,'_et_pb_gutter_width','3'),(906,365,'_edit_lock','1564521253:1'),(907,366,'_wp_attached_file','2019/07/faces-death.jpg'),(908,366,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1280;s:6:\"height\";i:720;s:4:\"file\";s:23:\"2019/07/faces-death.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"faces-death-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"faces-death-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:23:\"faces-death-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:24:\"faces-death-1024x576.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:23:\"faces-death-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:24:\"faces-death-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:23:\"faces-death-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:23:\"faces-death-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:24:\"faces-death-1080x608.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:608;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:23:\"faces-death-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(909,365,'_thumbnail_id','366'),(927,369,'_edit_last','1'),(911,365,'_et_post_bg_color','#ffffff'),(912,365,'_et_post_bg_layout','light'),(913,365,'_et_pb_show_title','off'),(914,365,'_et_pb_post_hide_nav','default'),(915,365,'_et_pb_page_layout','et_no_sidebar'),(916,365,'_et_pb_side_nav','off'),(917,365,'_et_pb_use_builder','on'),(918,365,'_et_builder_version','BB|Divi|3.26.3'),(919,365,'_et_pb_show_page_creation','on'),(920,365,'_et_pb_first_image',''),(921,365,'_et_pb_truncate_post',''),(922,365,'_et_pb_ab_stats_refresh_interval','hourly'),(923,365,'_et_pb_old_content',''),(924,365,'_et_pb_enable_shortcode_tracking',''),(925,365,'_et_pb_custom_css',''),(926,365,'_et_pb_gutter_width','3'),(928,369,'_edit_lock','1564521588:1'),(929,370,'_wp_attached_file','2019/07/washington.jpg'),(930,370,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1280;s:6:\"height\";i:720;s:4:\"file\";s:22:\"2019/07/washington.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"washington-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"washington-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:22:\"washington-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:23:\"washington-1024x576.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:22:\"washington-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:23:\"washington-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:22:\"washington-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:22:\"washington-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:23:\"washington-1080x608.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:608;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:22:\"washington-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(931,369,'_thumbnail_id','370'),(949,373,'_edit_last','1'),(933,369,'_et_post_bg_color','#ffffff'),(934,369,'_et_post_bg_layout','light'),(935,369,'_et_pb_show_title','off'),(936,369,'_et_pb_post_hide_nav','default'),(937,369,'_et_pb_page_layout','et_no_sidebar'),(938,369,'_et_pb_side_nav','off'),(939,369,'_et_pb_use_builder','on'),(940,369,'_et_builder_version','BB|Divi|3.26.3'),(941,369,'_et_pb_show_page_creation','on'),(942,369,'_et_pb_first_image',''),(943,369,'_et_pb_truncate_post',''),(944,369,'_et_pb_ab_stats_refresh_interval','hourly'),(945,369,'_et_pb_old_content',''),(946,369,'_et_pb_enable_shortcode_tracking',''),(947,369,'_et_pb_custom_css',''),(948,369,'_et_pb_gutter_width','3'),(950,373,'_edit_lock','1564521905:1'),(951,374,'_wp_attached_file','2019/07/spider-woman.jpg'),(952,374,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1280;s:6:\"height\";i:720;s:4:\"file\";s:24:\"2019/07/spider-woman.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"spider-woman-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"spider-woman-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:24:\"spider-woman-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:25:\"spider-woman-1024x576.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:24:\"spider-woman-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:25:\"spider-woman-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:24:\"spider-woman-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:24:\"spider-woman-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:25:\"spider-woman-1080x608.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:608;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:24:\"spider-woman-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(953,373,'_thumbnail_id','374'),(971,378,'_edit_last','1'),(955,373,'_et_post_bg_color','#ffffff'),(956,373,'_et_post_bg_layout','light'),(957,373,'_et_pb_show_title','off'),(958,373,'_et_pb_post_hide_nav','default'),(959,373,'_et_pb_page_layout','et_no_sidebar'),(960,373,'_et_pb_side_nav','off'),(961,373,'_et_pb_use_builder','on'),(962,373,'_et_builder_version','BB|Divi|3.26.3'),(963,373,'_et_pb_show_page_creation','on'),(964,373,'_et_pb_first_image',''),(965,373,'_et_pb_truncate_post',''),(966,373,'_et_pb_ab_stats_refresh_interval','hourly'),(967,373,'_et_pb_old_content',''),(968,373,'_et_pb_enable_shortcode_tracking',''),(969,373,'_et_pb_custom_css',''),(970,373,'_et_pb_gutter_width','3'),(972,378,'_edit_lock','1564522866:1'),(973,379,'_wp_attached_file','2019/07/terror.jpg'),(974,379,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1350;s:6:\"height\";i:760;s:4:\"file\";s:18:\"2019/07/terror.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"terror-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"terror-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:18:\"terror-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:19:\"terror-1024x576.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:18:\"terror-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:19:\"terror-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:18:\"terror-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:18:\"terror-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:19:\"terror-1080x608.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:608;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:18:\"terror-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(992,382,'_edit_last','1'),(976,378,'_et_post_bg_color','#ffffff'),(977,378,'_et_post_bg_layout','light'),(978,378,'_et_pb_show_title','off'),(979,378,'_et_pb_post_hide_nav','default'),(980,378,'_et_pb_page_layout','et_no_sidebar'),(981,378,'_et_pb_side_nav','off'),(982,378,'_et_pb_use_builder','on'),(983,378,'_et_builder_version','BB|Divi|3.26.3'),(984,378,'_et_pb_show_page_creation','on'),(985,378,'_et_pb_first_image',''),(986,378,'_et_pb_truncate_post',''),(987,378,'_et_pb_ab_stats_refresh_interval','hourly'),(988,378,'_et_pb_old_content',''),(989,378,'_et_pb_enable_shortcode_tracking',''),(990,378,'_et_pb_custom_css',''),(991,378,'_et_pb_gutter_width','3'),(993,382,'_edit_lock','1564523134:1'),(994,383,'_wp_attached_file','2019/07/woman-in-green.jpg'),(995,383,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1280;s:6:\"height\";i:720;s:4:\"file\";s:26:\"2019/07/woman-in-green.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"woman-in-green-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"woman-in-green-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:26:\"woman-in-green-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:27:\"woman-in-green-1024x576.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:26:\"woman-in-green-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:27:\"woman-in-green-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:26:\"woman-in-green-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:26:\"woman-in-green-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:27:\"woman-in-green-1080x608.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:608;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:26:\"woman-in-green-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(996,382,'_thumbnail_id','383'),(1014,387,'_edit_last','1'),(998,382,'_et_post_bg_color','#ffffff'),(999,382,'_et_post_bg_layout','light'),(1000,382,'_et_pb_show_title','off'),(1001,382,'_et_pb_post_hide_nav','default'),(1002,382,'_et_pb_page_layout','et_no_sidebar'),(1003,382,'_et_pb_side_nav','off'),(1004,382,'_et_pb_use_builder','on'),(1005,382,'_et_builder_version','BB|Divi|3.26.3'),(1006,382,'_et_pb_show_page_creation','on'),(1007,382,'_et_pb_first_image',''),(1008,382,'_et_pb_truncate_post',''),(1009,382,'_et_pb_ab_stats_refresh_interval','hourly'),(1010,382,'_et_pb_old_content',''),(1011,382,'_et_pb_enable_shortcode_tracking',''),(1012,382,'_et_pb_custom_css',''),(1013,382,'_et_pb_gutter_width','3'),(1015,387,'_edit_lock','1564717965:1'),(1016,388,'_wp_attached_file','2019/08/fallen.jpg'),(1017,388,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:365;s:6:\"height\";i:600;s:4:\"file\";s:18:\"2019/08/fallen.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"fallen-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"fallen-183x300.jpg\";s:5:\"width\";i:183;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:18:\"fallen-365x250.jpg\";s:5:\"width\";i:365;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:18:\"fallen-365x284.jpg\";s:5:\"width\";i:365;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:18:\"fallen-365x382.jpg\";s:5:\"width\";i:365;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:18:\"fallen-365x516.jpg\";s:5:\"width\";i:365;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1018,387,'_thumbnail_id','388'),(1036,394,'_edit_last','1'),(1020,387,'_et_post_bg_color','#ffffff'),(1021,387,'_et_post_bg_layout','light'),(1022,387,'_et_pb_show_title','off'),(1023,387,'_et_pb_post_hide_nav','default'),(1024,387,'_et_pb_page_layout','et_no_sidebar'),(1025,387,'_et_pb_side_nav','off'),(1026,387,'_et_pb_use_builder','on'),(1027,387,'_et_builder_version','BB|Divi|3.26.3'),(1028,387,'_et_pb_show_page_creation','on'),(1029,387,'_et_pb_first_image',''),(1030,387,'_et_pb_truncate_post','<p><div class=\"et_pb_section et_pb_section_21 et_section_regular\">\n				\n				\n				\n				\n					<div class=\"et_pb_row et_pb_row_8\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_8  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_module et_pb_image et_pb_image_8\">\n				\n				\n				<a href=\"http://itcamefrombeyondpulp.com\"><span class=\"et_pb_image_wrap \"><img src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/header.jpg\" alt=\"\" /></span></a>\n			</div>\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row -->\n				\n				\n			</div> <!-- .et_pb_section --><div class=\"et_pb_section et_pb_section_23 et_pb_fullwidth_section et_section_regular\">\n				\n				\n				\n				\n					<div class=\"et_pb_with_border et_pb_module et_pb_fullwidth_menu et_pb_fullwidth_menu_4 et_pb_bg_layout_dark  et_pb_text_align_center et_dropdown_animation_fade\">\n				\n				\n				<div class=\"et_pb_row clearfix\">\n					<nav class=\"fullwidth-menu-nav\"><ul class=\"fullwidth-menu nav downwards\">\n					<li class=\"page_item page-item-33\"><a href=\"http://itcamefrombeyondpulp.com/books/\">Books</a></li>\n<li class=\"page_item page-item-45\"><a href=\"http://itcamefrombeyondpulp.com/movies/\">Movies</a></li>\n<li class=\"page_item page-item-59\"><a href=\"http://itcamefrombeyondpulp.com/sales/\">Sales</a></li>\n</ul></nav>\n					<div class=\"et_mobile_nav_menu\">\n						<a href=\"#\" class=\"mobile_nav closed\">\n							<span class=\"mobile_menu_bar\"></span>\n						</a>\n					</div>\n				</div>\n			</div>\n				\n				\n			</div> <!-- .et_pb_section --><div class=\"et_pb_section et_pb_section_24 et_pb_with_background et_section_regular\">\n				\n				\n				\n				\n					<div class=\"et_pb_with_border et_pb_row et_pb_row_9\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_9  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_4 et_pb_bg_layout_light  et_pb_text_align_left\">\n				\n				\n				<div class=\"et_pb_text_inner\">\n					<p>The Fallen Country (Somtow Sucharitkul, 1986)Somtow Sucharitkul (born 1952), aka S.P. Somtow, is a Thai polymath who started out as an avant garde musician in the 1970s, became a respected science fiction writer in the late 1970s, helped create the splatterpunk subgenre of horror in the early 1980s, and later returned to music. He&#8217;s currently the director of the Bangkok Opera, which he founded. He&#8217;s one of my favorite authors, one of the great, if unheralded, masters of any genre he cares to attempt. This story first appeared as a novelette in a 1982 collection called Elsewhere, Vol. II, and Somtow expanded it into a novel in 1986. He adapted the original 1982 story into an opera called The Snow Dragon, which premiered at Milwaukee&#8217;s Skylight Music Theatre in 2015. (I was there.) When Billy Binder appears one day, nearly frozen to death and clinging to the church belfry in the middle of a Florida heatwave, he&#8217;s reluctantly befriended by a teenager named Charley. Billy&#8217;s only escape from his mother&#8217;s abusive boyfriend Stark is into the Fallen Country, a snowbound world where the cold numbs the emotions of its inhabitants until they&#8217;re little more than zombies, and Billy rides a snow dragon to save beautiful princesses and vanquish monsters. Stark is here, too, as the evil Ringmaster, his lion tamer&#8217;s whip scarring the sky and cutting the flesh of Billy&#8217;s dragon guide.  Of course it&#8217;s an imaginary world, right? The kind that abused kids take refuge in, a place where they have power, where they can fight back. But Billy&#8217;s alternate reality is real, as Charley is forced to acknowledge when he&#8217;s swept into the Fallen Country to help Billy in his quest to vanquish the Ringmaster. Billy has power here—his anger—and he decides that he can put a stop to Stark&#8217;s reign of terror. I believe this was marketed as young adult fantasy, and it&#8217;s dark as hell. Billy suffers horrific abuse at Stark&#8217;s hands, physical and possibly sexual, and the system either can or will do nothing about it. It&#8217;s graphic and regular, and it&#8217;s a little hard to take. There&#8217;s also some inappropriate flirting between Charley and Dora, the hapless school counselor who tries to convince Billy that the Fallen Country isn&#8217;t real.  Someone at the Washington Post (I&#8217;ve been unable to ascertain who said it) said that &#8220;Sucharitkul can create a world with less apparent effort than some writers devote to creating a small room.&#8221; That&#8217;s true, and not true at the same time. Yes, he can create a world in a couple of paragraphs: the Fallen Country feels like a real place as soon as we enter it, perhaps because Somtow has a staggering recall of the myths and legends of several cultures, and he can employ shortcuts without them seeming like shortcuts, or perhaps because he&#8217;s a fantastic writer. Probably both. But when shortcuts appear in the mundane world of Boca Blanca, Florida, it&#8217;s more obvious: characters are sometimes distressingly wooden (Dora the counselor seems less like a person than a mouthpiece for generations of bad child psychology), and scenes that aren&#8217;t about Billy and his trauma feel rushed, like Somtow was impatient to get to what he came here to write about. It&#8217;s still a great and valuable novel despite these complaints because nobody writes better than Somtow when he&#8217;s in the zone. The complex relationship of Billy and Stark is so painfully real that I found myself weeping, having grown up not in the Fallen Country but perhaps somewhere on the outskirts. Somtow&#8217;s insight into the tools kids use to overcome abuse is clear and compelling, and he does a fantastic job balancing the requirements of a fantasy novel and the dead serious subject matter he&#8217;s addressing. In the best possible way, this is literature about escape and healing that functions as an escape and as a tool for healing.</p>\n				</div>\n			</div> <!-- .et_pb_text -->\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row -->\n				\n				\n			</div> <!-- .et_pb_section --></p>\n'),(1031,387,'_et_pb_ab_stats_refresh_interval','hourly'),(1032,387,'_et_pb_old_content',''),(1033,387,'_et_pb_enable_shortcode_tracking',''),(1034,387,'_et_pb_custom_css',''),(1035,387,'_et_pb_gutter_width','3'),(1037,394,'_edit_lock','1564867641:1'),(1038,395,'_wp_attached_file','2019/08/disturbia.jpg'),(1039,395,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1190;s:6:\"height\";i:700;s:4:\"file\";s:21:\"2019/08/disturbia.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"disturbia-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"disturbia-300x176.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:176;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:21:\"disturbia-768x452.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:452;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:22:\"disturbia-1024x602.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:602;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:21:\"disturbia-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:22:\"disturbia-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:21:\"disturbia-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:21:\"disturbia-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:22:\"disturbia-1080x635.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:635;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:21:\"disturbia-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1040,396,'_wp_attached_file','2019/08/disturbia-1.jpg'),(1041,396,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1190;s:6:\"height\";i:700;s:4:\"file\";s:23:\"2019/08/disturbia-1.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"disturbia-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"disturbia-1-300x176.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:176;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:23:\"disturbia-1-768x452.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:452;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:24:\"disturbia-1-1024x602.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:602;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:23:\"disturbia-1-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:24:\"disturbia-1-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:23:\"disturbia-1-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:23:\"disturbia-1-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:24:\"disturbia-1-1080x635.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:635;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:23:\"disturbia-1-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1042,394,'_thumbnail_id','396'),(1060,399,'_edit_last','1'),(1044,394,'_et_post_bg_color','#ffffff'),(1045,394,'_et_post_bg_layout','light'),(1046,394,'_et_pb_show_title','off'),(1047,394,'_et_pb_post_hide_nav','default'),(1048,394,'_et_pb_page_layout','et_no_sidebar'),(1049,394,'_et_pb_side_nav','off'),(1050,394,'_et_pb_use_builder','on'),(1051,394,'_et_builder_version','BB|Divi|3.26.3'),(1052,394,'_et_pb_show_page_creation','on'),(1053,394,'_et_pb_first_image',''),(1054,394,'_et_pb_truncate_post','<p><div class=\"et_pb_section et_pb_section_16 et_section_regular\">\n				\n				\n				\n				\n					<div class=\"et_pb_row et_pb_row_6\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_6  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_module et_pb_image et_pb_image_6\">\n				\n				\n				<a href=\"http://itcamefrombeyondpulp.com\"><span class=\"et_pb_image_wrap \"><img src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/header.jpg\" alt=\"\" /></span></a>\n			</div>\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row -->\n				\n				\n			</div> <!-- .et_pb_section --><div class=\"et_pb_section et_pb_section_18 et_pb_fullwidth_section et_section_regular\">\n				\n				\n				\n				\n					<div class=\"et_pb_with_border et_pb_module et_pb_fullwidth_menu et_pb_fullwidth_menu_3 et_pb_bg_layout_dark  et_pb_text_align_center et_dropdown_animation_fade\">\n				\n				\n				<div class=\"et_pb_row clearfix\">\n					<nav class=\"fullwidth-menu-nav\"><ul class=\"fullwidth-menu nav downwards\">\n					<li class=\"page_item page-item-33\"><a href=\"http://itcamefrombeyondpulp.com/books/\">Books</a></li>\n<li class=\"page_item page-item-45\"><a href=\"http://itcamefrombeyondpulp.com/movies/\">Movies</a></li>\n<li class=\"page_item page-item-59\"><a href=\"http://itcamefrombeyondpulp.com/sales/\">Sales</a></li>\n</ul></nav>\n					<div class=\"et_mobile_nav_menu\">\n						<a href=\"#\" class=\"mobile_nav closed\">\n							<span class=\"mobile_menu_bar\"></span>\n						</a>\n					</div>\n				</div>\n			</div>\n				\n				\n			</div> <!-- .et_pb_section --><div class=\"et_pb_section et_pb_section_19 et_pb_with_background et_section_regular\">\n				\n				\n				\n				\n					<div class=\"et_pb_with_border et_pb_row et_pb_row_7\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_7  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_module et_pb_image et_pb_image_7\">\n				\n				\n				<span class=\"et_pb_image_wrap \"><img src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/08/disturbia.jpg\" alt=\"\" /></span>\n			</div><div class=\"et_pb_module et_pb_text et_pb_text_3 et_pb_bg_layout_light  et_pb_text_align_left\">\n				\n				\n				<div class=\"et_pb_text_inner\">\n					<p>Disturbia (D.J. Caruso, 2007, 104 min.)The great American pastime of snooping on one&#8217;s neighbors gets a high-tech DIY upgrade in Disturbia, and it&#8217;s about time. Hearkening back to the 1950s and Rear Window, Alfred Hitchcock&#8217;s paean to aiming telescopes not at the stars, but at the bedroom window of the house across the street, this film rephrases Tom Waits&#8217;s immortal question, &#8220;what&#8217;s he building in there?&#8221; as &#8220;who&#8217;s he killing in there?&#8221; The end result is a surprisingly enjoyable film, efficiently made and featuring a strong young cast and some clever references to its cinematic forefathers. The most obvious influence is the aforementioned Rear Window, but to call it a &#8220;remake&#8221; is to miss the more contemporary influence of Tom Holland&#8217;s brilliant 1985 scarefest Fright Night, which is one of the best vampire movies ever made (and which itself owes a lot to Hitchcock&#8217;s film). The premise—a guy stuck in his house thinks his neighbor is a murderer—is straight out of the Hitchcock film, but the details are borrowed heavily from the Holland film.A year after his father&#8217;s tragic death in a horrific opening-scene car accident, sullen Kale (Shia LaBeouf) punches his Spanish teacher (one might argue that the teacher deserved it, but it&#8217;s probably not a good idea to act on these impulses) and is sentenced to house arrest. He can&#8217;t go farther than 100 feet from the kitchen, where the transmitter is located, and after his mom (Carrie-Anne Moss, looking sad to be so far from Trinity) cuts off his Xbox and iTunes accounts, his world is as constrained as James Stewart&#8217;s was in Rear Window. But he&#8217;s got the advantage of living in the early 21st century, so he has dozens of technological gewgaws that help him spy on his neighbors, including videocameras with night-vision lenses and fancy binoculars. One neighbor cheats on his wife with the maid; a trio of preadolescents play ding-dong-ditch and watch porn when their mom isn&#8217;t around; his pretty new neighbor Ashley (Sarah Roemer) undresses with the lights on and her shades up; and his quiet neighbor Turner (David Morse) just might be a serial killer. Of course, nobody will believe him, so Kale, his annoying sidekick Ronnie (Aaron Yoo), and Ashley decide to do some investigating of their own, eventually establishing that Turner is not just a serial killer, he&#8217;s a serial killer who knows they&#8217;ve been watching. Cue the Bernard Hermann-influenced horror-movie music.A lot of the film&#8217;s success is due to Shia LaBeouf, who used to be a potentially great actor. He&#8217;s got loads of affable, stammery charm, which director D.J. Caruso smartly lets him display; he&#8217;s best in a scene where he has to explain to Ashley that his pseudo-stalking behavior is in fact charming and kiss-worthy, a point she acknowledges when she observes that he&#8217;s either incredibly sweet or incredibly creepy (but why can&#8217;t he be both?). If there&#8217;s one thing he can&#8217;t sell, it&#8217;s the MO: he&#8217;s supposed to turn to voyeurism out of desperated boredom, but he seems too well-adjusted to convince us. Thankfully the film mostly eschews clunky psychological motivations. The cast&#8217;s biggest letdown is David Morse as Turner, the friendly neighborhood serial killer. Maybe it&#8217;s because I was stuck on the Fright Night comparisons, but he just didn&#8217;t bring the necessary levels of charm and dangerous attractiveness. Because I was comparing him to Chris Sarandon, who was never again as good as he was as the bisexual vampire Jerry Dandridge, Morse just wasn&#8217;t convincing. He&#8217;s imposing, yes, and he manages to ramp up the creepiness during the scene when he obliquely threatens Ashley, but for the most part he&#8217;s just a stock baddie, his menace depending on the ominous soundtrack more than on anything in him.Let me expound on my Fright Night theory. Both main characters have an annoying sidekick and a pretty girlfriend who&#8217;s menaced by the bad guy. The murderer is a serial killer whom the protagonist links to a series of disappearances. There&#8217;s a scene where the sidekick pretends to be dead to frighten the main character; later, the sidekick is the first one of the trio the bad guy attacks. There&#8217;s an ominous visit by the murderer to flirt with the main character&#8217;s mother; the dialogue even sounded the same, although it&#8217;s been a while since I saw Fright Night. The protagonist&#8217;s concrete proof comes as an unwelcome interruption to a makeout session with his girlfriend. Maybe I should make a table comparing the influences. Maybe you should run out and rent the film.Cinematic progenitors aside, Disturbia is a smart, efficient little thriller that wears its heredity proudly; I was especially charmed by Geoff Zanelli&#8217;s score, which inserts clever shades of Bernard Hermann compositions into the scary scenes—I couldn&#8217;t identify specific influences, but the feel was spot-on. The film fades a bit toward the end into overly excitable horror-movie tropes and an emphasis on gore that was absent during the rest of the film, and Morse proves unable to rise above the inexorable laws of cinema that force him to stalk around, stonefaced, with a butcher knife. Still, for most of its running time it was a solid entry in the genre.</p>\n				</div>\n			</div> <!-- .et_pb_text -->\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row -->\n				\n				\n			</div> <!-- .et_pb_section --></p>\n'),(1055,394,'_et_pb_ab_stats_refresh_interval','hourly'),(1056,394,'_et_pb_old_content',''),(1057,394,'_et_pb_enable_shortcode_tracking',''),(1058,394,'_et_pb_custom_css',''),(1059,394,'_et_pb_gutter_width','3'),(1061,399,'_edit_lock','1564868081:1'),(1062,400,'_wp_attached_file','2019/08/dracdaughter.jpg'),(1063,400,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1280;s:6:\"height\";i:720;s:4:\"file\";s:24:\"2019/08/dracdaughter.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"dracdaughter-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"dracdaughter-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:24:\"dracdaughter-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:25:\"dracdaughter-1024x576.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:24:\"dracdaughter-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:25:\"dracdaughter-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:24:\"dracdaughter-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:24:\"dracdaughter-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:25:\"dracdaughter-1080x608.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:608;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:24:\"dracdaughter-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1064,401,'_wp_attached_file','2019/08/dracdaughter-1.jpg'),(1065,401,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1280;s:6:\"height\";i:720;s:4:\"file\";s:26:\"2019/08/dracdaughter-1.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"dracdaughter-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"dracdaughter-1-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:26:\"dracdaughter-1-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:27:\"dracdaughter-1-1024x576.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:26:\"dracdaughter-1-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:27:\"dracdaughter-1-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:26:\"dracdaughter-1-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:26:\"dracdaughter-1-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:27:\"dracdaughter-1-1080x608.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:608;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:26:\"dracdaughter-1-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1066,399,'_thumbnail_id','401'),(1084,404,'_edit_last','1'),(1068,399,'_et_post_bg_color','#ffffff'),(1069,399,'_et_post_bg_layout','light'),(1070,399,'_et_pb_show_title','off'),(1071,399,'_et_pb_post_hide_nav','default'),(1072,399,'_et_pb_page_layout','et_no_sidebar'),(1073,399,'_et_pb_side_nav','off'),(1074,399,'_et_pb_use_builder','on'),(1075,399,'_et_builder_version','BB|Divi|3.26.3'),(1076,399,'_et_pb_show_page_creation','on'),(1077,399,'_et_pb_first_image',''),(1078,399,'_et_pb_truncate_post','<p><div class=\"et_pb_section et_pb_section_11 et_section_regular\">\n				\n				\n				\n				\n					<div class=\"et_pb_row et_pb_row_4\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_4  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_module et_pb_image et_pb_image_4\">\n				\n				\n				<a href=\"http://itcamefrombeyondpulp.com\"><span class=\"et_pb_image_wrap \"><img src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/header.jpg\" alt=\"\" /></span></a>\n			</div>\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row -->\n				\n				\n			</div> <!-- .et_pb_section --><div class=\"et_pb_section et_pb_section_13 et_pb_fullwidth_section et_section_regular\">\n				\n				\n				\n				\n					<div class=\"et_pb_with_border et_pb_module et_pb_fullwidth_menu et_pb_fullwidth_menu_2 et_pb_bg_layout_dark  et_pb_text_align_center et_dropdown_animation_fade\">\n				\n				\n				<div class=\"et_pb_row clearfix\">\n					<nav class=\"fullwidth-menu-nav\"><ul class=\"fullwidth-menu nav downwards\">\n					<li class=\"page_item page-item-33\"><a href=\"http://itcamefrombeyondpulp.com/books/\">Books</a></li>\n<li class=\"page_item page-item-45\"><a href=\"http://itcamefrombeyondpulp.com/movies/\">Movies</a></li>\n<li class=\"page_item page-item-59\"><a href=\"http://itcamefrombeyondpulp.com/sales/\">Sales</a></li>\n</ul></nav>\n					<div class=\"et_mobile_nav_menu\">\n						<a href=\"#\" class=\"mobile_nav closed\">\n							<span class=\"mobile_menu_bar\"></span>\n						</a>\n					</div>\n				</div>\n			</div>\n				\n				\n			</div> <!-- .et_pb_section --><div class=\"et_pb_section et_pb_section_14 et_pb_with_background et_section_regular\">\n				\n				\n				\n				\n					<div class=\"et_pb_with_border et_pb_row et_pb_row_5\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_5  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_module et_pb_image et_pb_image_5\">\n				\n				\n				<span class=\"et_pb_image_wrap \"><img src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/08/dracdaughter.jpg\" alt=\"\" /></span>\n			</div><div class=\"et_pb_module et_pb_text et_pb_text_2 et_pb_bg_layout_light  et_pb_text_align_left\">\n				\n				\n				<div class=\"et_pb_text_inner\">\n					<p>Dracula&#8217;s Daughter (Lambert Hillyer, 1936, 71 min.)&#8221;Why should Cecil B. DeMille have a monopoly on the great box office values of torture and cruelty?&#8221; asked John Balderton, the writer of a first draft of this long-delayed sequel to Dracula, the iconic, if somewhat tepid, 1931 version of Bram Stoker&#8217;s famous novel. Balderton envisioned a grisly horror film, full of the shrieks and cries of the damned, but his version didn&#8217;t make the cut. Instead, this version, based on one of Stoker&#8217;s stories, finally hit the screens in 1936, heavy on atmosphere and shocking (for its time) sexuality. Although it is a marked improvement on the original film, it&#8217;s still a bit of a snooze, relying too much on forced comedy and not enough on suspense or fright.The film picks up exactly where the first film left off. Von Helsing (Edward Van Sloan), who was Van Helsing in the first film, has just offed Dracula, and Whitby constables stumble on the scene and arrest him as a murderer. The constable in charge is faced with quite a decision: try Von Helsing for murder and likely hang him, put him in the looney bin because of all his talk about vampires, or believe him. Von Helsing implores him to call on one of his former students, the renowned psychologist Dr. Garth (Otto Kruger), to help clear him.Meanwhile, before things can get underway, a mysterious woman steals Dracula&#8217;s body and destroys it. Gloria Holden is Countess Zaleska, the titular daughter. She thinks that destroying her father&#8217;s corpse will free her from her vampiric curse, but it doesn&#8217;t work, as is obvious as soon as she returns to London and starts ogling the necks of dapper young men. It doesn&#8217;t help that her helper Sandor (Irving Pichel, who co-directed the great action film The Most Dangerous Game) keeps taunting her about how much she needs blood. The film treats vampirism as more of an addiction than an evil curse, and it&#8217;s fitting that she keeps an enabler around to sabotage her efforts to get clean.After meeting Dr. Garth at a party, she decides that his experiments in hypnosis will help her. She attempts to seduce him, but he&#8217;s wary, especially as the body count in London starts to rise, as victims with strange puncture wounds on their necks start turning up. In the centerpiece of the film, as Zaleska attempts to do some painting to distract her from her need for blood, she enlists Sandor to bring her a model, Lili (Nan Grey). The sight of Lili&#8217;s lily-white neck proves too much for her, and in a sexually charged scene, Zaleska slowly moves toward the frightened young girl; at the last moment, the camera tilts up to record a smug-looking tribal mask, obviously enjoying the lesbian encounter below.Any suspense is constantly broken up by the allegedly playful, flirting banter between Dr. Garth and his assistant, the heiress Janet Blake (Marguerite Churchill). He plays the stodgy older man to her uninhibited younger woman, and although there&#8217;s probably supposed to be a romantic spark there, all I felt was annoyance. Churchill&#8217;s character seems to really exist only to be put in peril so that her brave protector can save the day.The film makes the most of Holden&#8217;s almost patrician face and admittedly hypnotic eyes. She&#8217;s no beauty by most standards, but as the scion of a vampiric Count, she&#8217;s exactly right. The menace and erotic interest she arouses would have been absent, had the filmmakers gone with a more typical Hollywood pretty face. She has a good match in Irving Pichel as her savant Sandor, whose glowering, mocking eyes push her toward evil. Sadly, the good guys don&#8217;t have much personality. Kruger, as Garth, has a demeanor that says &#8220;annoyed&#8221; more than anything. Edward Van Sloan—although the events of the previous film make it quite clear that he&#8217;s not crazy—seems a little off, and I wondered whether the film was trying to make some observation about his single-minded pursuit of vampires.Zaleska wasn&#8217;t the only one who was cursed: the film was late and over budget, and during filming, a heavy lamp fell onto director Lambert Hillyer&#8217;s head, putting him in the hospital. It was supposed to save Universal, but it failed; Carl Laemmle had to sell the studio before the film even opened. The film is a middle-level entry in Universal&#8217;s stable of horror films, certainly better than its predecessor, but certainly not up with Bride of Frankenstein.</p>\n				</div>\n			</div> <!-- .et_pb_text -->\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row -->\n				\n				\n			</div> <!-- .et_pb_section --></p>\n'),(1079,399,'_et_pb_ab_stats_refresh_interval','hourly'),(1080,399,'_et_pb_old_content',''),(1081,399,'_et_pb_enable_shortcode_tracking',''),(1082,399,'_et_pb_custom_css',''),(1083,399,'_et_pb_gutter_width','3'),(1085,404,'_edit_lock','1564868684:1'),(1086,405,'_wp_attached_file','2019/08/witchhouse.jpg'),(1087,405,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1280;s:6:\"height\";i:720;s:4:\"file\";s:22:\"2019/08/witchhouse.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"witchhouse-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"witchhouse-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:22:\"witchhouse-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:23:\"witchhouse-1024x576.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:22:\"witchhouse-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:23:\"witchhouse-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:22:\"witchhouse-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:22:\"witchhouse-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:23:\"witchhouse-1080x608.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:608;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:22:\"witchhouse-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1088,404,'_thumbnail_id','405'),(1106,408,'_edit_last','1'),(1090,404,'_et_post_bg_color','#ffffff'),(1091,404,'_et_post_bg_layout','light'),(1092,404,'_et_pb_show_title','off'),(1093,404,'_et_pb_post_hide_nav','default'),(1094,404,'_et_pb_page_layout','et_no_sidebar'),(1095,404,'_et_pb_side_nav','off'),(1096,404,'_et_pb_use_builder','on'),(1097,404,'_et_builder_version','BB|Divi|3.26.3'),(1098,404,'_et_pb_show_page_creation','on'),(1099,404,'_et_pb_first_image',''),(1100,404,'_et_pb_truncate_post','<p><div class=\"et_pb_section et_pb_section_6 et_section_regular\">\n				\n				\n				\n				\n					<div class=\"et_pb_row et_pb_row_2\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_2  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_module et_pb_image et_pb_image_2\">\n				\n				\n				<a href=\"http://itcamefrombeyondpulp.com\"><span class=\"et_pb_image_wrap \"><img src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/header.jpg\" alt=\"\" /></span></a>\n			</div>\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row -->\n				\n				\n			</div> <!-- .et_pb_section --><div class=\"et_pb_section et_pb_section_8 et_pb_fullwidth_section et_section_regular\">\n				\n				\n				\n				\n					<div class=\"et_pb_with_border et_pb_module et_pb_fullwidth_menu et_pb_fullwidth_menu_1 et_pb_bg_layout_dark  et_pb_text_align_center et_dropdown_animation_fade\">\n				\n				\n				<div class=\"et_pb_row clearfix\">\n					<nav class=\"fullwidth-menu-nav\"><ul class=\"fullwidth-menu nav downwards\">\n					<li class=\"page_item page-item-33\"><a href=\"http://itcamefrombeyondpulp.com/books/\">Books</a></li>\n<li class=\"page_item page-item-45\"><a href=\"http://itcamefrombeyondpulp.com/movies/\">Movies</a></li>\n<li class=\"page_item page-item-59\"><a href=\"http://itcamefrombeyondpulp.com/sales/\">Sales</a></li>\n</ul></nav>\n					<div class=\"et_mobile_nav_menu\">\n						<a href=\"#\" class=\"mobile_nav closed\">\n							<span class=\"mobile_menu_bar\"></span>\n						</a>\n					</div>\n				</div>\n			</div>\n				\n				\n			</div> <!-- .et_pb_section --><div class=\"et_pb_section et_pb_section_9 et_pb_with_background et_section_regular\">\n				\n				\n				\n				\n					<div class=\"et_pb_with_border et_pb_row et_pb_row_3\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_3  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_module et_pb_image et_pb_image_3\">\n				\n				\n				<span class=\"et_pb_image_wrap \"><img src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/08/witchhouse.jpg\" alt=\"\" /></span>\n			</div><div class=\"et_pb_module et_pb_text et_pb_text_1 et_pb_bg_layout_light  et_pb_text_align_left\">\n				\n				\n				<div class=\"et_pb_text_inner\">\n					<p>Masters of Horror: Dreams in the Witch-House (Stuart Gordon, 2005, 55 min.)Horror-film director Stuart Gordon has attempted, more than anyone, to bring the stories of H.P. Lovecraft to the screen. That all of his previous attempts have been unsuccessful isn&#8217;t a surprise, as no one has been able to translate Lovecraft&#8217;s particular brand of horror into film. The surprise is that this short film, part of Showtime&#8217;s groundbreaking &#8220;Masters of Horror&#8221; series, is probably the closest anyone has come to succeeding. It&#8217;s not perfect, and its early comedic tone, as dark as it might be, isn&#8217;t right, but its midsection and stunning finale are worthy of being called Lovecraftian. (This, even if most Lovecraft lovers admit that the story itself is pretty weak.)Graduate student Walter Gilman (Ezra Godden) is unfortunate enough to be studying string theory at Miskatonic University. He takes a room in a creepy old seventeenth-century house so he can get some quiet study time, but as soon as he moves in he&#8217;s distracted: by the crazy old codger on the first floor who does ritual penance by chanting and banging his head on a desk; by the screams of his hot neighbor Frances (Chelah Hordal) because a rat is attacking her baby; and by visits from a shape-shifting witch who seems to want to involve him in some nefarious ritual. He doesn&#8217;t get much studying done.Given the limited budget of a TV series, it&#8217;s surprising how great this looks. One of my favorite Lovecraft characters is resurrected here, and faithfully: the rat-creature Brown Jenkin. Lovecraft describes him, &#8220;it had long hair and the shape of a rat, but that its sharp-toothed, bearded face was evilly human while its paws were like tiny human hands.&#8221; And the makeup crew delivers just that. The blood effects are realistic, there&#8217;s ingenious use of colored lights behind wallpaper screens to illustrate the gate between universes, and the sets are all incredibly, authentically bedraggled. I especially like the construction of that particular corner of Walter&#8217;s room, where Euclidian geometry fails and allows a bridge between worlds.The story is updated, and I think improved, with the setting limited to the house and the characters drastically reduced, both on the human and the non-human sides. Gordon smartly updates Walter&#8217;s particular kind of science but doesn&#8217;t stray at all from the spirit of Lovecraft: the story was inspired by a lecture by Dutch mathematician Willem de Sitter (a colleague of Einstein) who posited what came to be known as dark matter, and this film updates it to string theory, which, in a scene that&#8217;s both amusing and accurate, makes Walter sound like a nutcase when he tries to explain it to a psychiatrist. Anyone trying to explain string theory in a loud voice would sound like a lunatic.Sure, the comedy isn&#8217;t Lovecraft—old H.P. didn&#8217;t have a sense of humor as far as I could tell—but otherwise this film seems to get him like no others I can remember. There are some nice references to other Lovecraft works, especially when Walter exclaims &#8220;This house is infested with rats—I can hear them in the walls,&#8221; summoning one of Lovecraft&#8217;s best stories, &#8220;The Rats in the Walls.&#8221; And most importantly, there&#8217;s the horrible mystery of the darkness that surrounds us, a universe or universes that contain things we can&#8217;t begin to understand, where our mathematics and our explanations break down. They might come in the form of a standard-issue witch and a rat with a human face, but those are just avatars for something a lot more awful. Gordon succeeds because this film suggests that horror.</p>\n				</div>\n			</div> <!-- .et_pb_text -->\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row -->\n				\n				\n			</div> <!-- .et_pb_section --></p>\n'),(1101,404,'_et_pb_ab_stats_refresh_interval','hourly'),(1102,404,'_et_pb_old_content',''),(1103,404,'_et_pb_enable_shortcode_tracking',''),(1104,404,'_et_pb_custom_css',''),(1105,404,'_et_pb_gutter_width','3'),(1107,408,'_edit_lock','1564868900:1'),(1108,409,'_wp_attached_file','2019/08/homecoming.jpg'),(1109,409,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1200;s:6:\"height\";i:720;s:4:\"file\";s:22:\"2019/08/homecoming.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"homecoming-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"homecoming-300x180.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:22:\"homecoming-768x461.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:461;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:23:\"homecoming-1024x614.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:614;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:22:\"homecoming-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:23:\"homecoming-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:22:\"homecoming-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:22:\"homecoming-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:23:\"homecoming-1080x648.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:648;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:22:\"homecoming-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1110,408,'_thumbnail_id','409'),(1112,408,'_et_post_bg_color','#ffffff'),(1113,408,'_et_post_bg_layout','light'),(1114,408,'_et_pb_show_title','off'),(1115,408,'_et_pb_post_hide_nav','default'),(1116,408,'_et_pb_page_layout','et_no_sidebar'),(1117,408,'_et_pb_side_nav','off'),(1118,408,'_et_pb_use_builder','on'),(1119,408,'_et_builder_version','BB|Divi|3.26.3'),(1120,408,'_et_pb_show_page_creation','on'),(1121,408,'_et_pb_first_image',''),(1122,408,'_et_pb_truncate_post','<p><div class=\"et_pb_section et_pb_section_1 et_section_regular\">\n				\n				\n				\n				\n					<div class=\"et_pb_row et_pb_row_0\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_0  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_module et_pb_image et_pb_image_0\">\n				\n				\n				<a href=\"http://itcamefrombeyondpulp.com\"><span class=\"et_pb_image_wrap \"><img src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/header.jpg\" alt=\"\" /></span></a>\n			</div>\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row -->\n				\n				\n			</div> <!-- .et_pb_section --><div class=\"et_pb_section et_pb_section_3 et_pb_fullwidth_section et_section_regular\">\n				\n				\n				\n				\n					<div class=\"et_pb_with_border et_pb_module et_pb_fullwidth_menu et_pb_fullwidth_menu_0 et_pb_bg_layout_dark  et_pb_text_align_center et_dropdown_animation_fade\">\n				\n				\n				<div class=\"et_pb_row clearfix\">\n					<nav class=\"fullwidth-menu-nav\"><ul class=\"fullwidth-menu nav downwards\">\n					<li class=\"page_item page-item-33\"><a href=\"http://itcamefrombeyondpulp.com/books/\">Books</a></li>\n<li class=\"page_item page-item-45\"><a href=\"http://itcamefrombeyondpulp.com/movies/\">Movies</a></li>\n<li class=\"page_item page-item-59\"><a href=\"http://itcamefrombeyondpulp.com/sales/\">Sales</a></li>\n</ul></nav>\n					<div class=\"et_mobile_nav_menu\">\n						<a href=\"#\" class=\"mobile_nav closed\">\n							<span class=\"mobile_menu_bar\"></span>\n						</a>\n					</div>\n				</div>\n			</div>\n				\n				\n			</div> <!-- .et_pb_section --><div class=\"et_pb_section et_pb_section_4 et_pb_with_background et_section_regular\">\n				\n				\n				\n				\n					<div class=\"et_pb_with_border et_pb_row et_pb_row_1\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_1  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_module et_pb_image et_pb_image_1\">\n				\n				\n				<span class=\"et_pb_image_wrap \"><img src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/08/homecoming.jpg\" alt=\"\" /></span>\n			</div><div class=\"et_pb_module et_pb_text et_pb_text_0 et_pb_bg_layout_light  et_pb_text_align_left\">\n				\n				\n				<div class=\"et_pb_text_inner\">\n					<p>Masters of Horror: Homecoming (Joe Dante, 2005, 57 min.)In an appearance on a political talk show, political strategist David Murch (Jon Tenney), while confronting a bereaved mother (a Cindy Sheehan stand-in) whose son died in &#8220;the war,&#8221; says that he wishes her dead son could come back and tell the world . . . that he was proud to have served his country. Well, he gets his wish when hundreds of dead soldiers rise from their flag-draped coffins, shambling toward the traditional mouthpiece of American citizenship: the voting booth. In Joe Dante&#8217;s over-the-top political satire-cum-zombie movie, we get an outspoken and unimpeachable criticism of the Iraq war and the Bush administration. As far as I know, it&#8217;s the only mainstream film to deal specifically with the costs of the Iraq war. As Dante said in Turin when the film premiered, &#8220;This pitiful zombie movie, this fucking B movie, is the only thing anybody&#8217;s done about this issue that&#8217;s killed 2,000 Americans and untold numbers of Iraqis? It&#8217;s fucking sick.&#8221;I&#8217;m not obsessed with politics and pundits enough to know what real-life political whore David Murch is supposed to represent, but the other two main characters are unmistakeable. Jane Cleaver (Thea Gill) is a leather-miniskirted reactionary sexpot explicitly modeled on Ann Coulter, while Kurt Rand (Robert Picardo) is obviously Karl Rove, the spin-meister who runs the show, passing decisions up the pike to &#8220;potus&#8221; (Bush&#8217;s name is never mentioned, but it&#8217;s clear that Dante and company understand that the president isn&#8217;t the one with the power). At first, the right wingers, symbolized on that same talk show by a Jerry Falwell type and Cleaver, praise the patriotism of the returning soldiers, praise God for blessing the administration in such a way, and guarantee that the dead will retain their rights. The beautiful thing is that the zombies are not your typical brain-munching mindless dead; they&#8217;re peaceful protestors, and it becomes clear that all they want is their constitutional right to vote against the president—at which point the right wing turns on them, decrying them as a public menace and locking them up in a Guantanamo-like prison. There&#8217;s not a lot of subtlety involved, but listen to the Falwell character&#8217;s about-face, where he decrees that the zombies are the judgment of an angry God against our sinful society. One could argue that he&#8217;s partly right: lying is a sin, and perhaps letting liars get away with it is judgment-worthy.Dante bluntly drops his film in the middle of one of the controversies over Bush&#8217;s handling of the war: the off-limits coffins of dead American soldiers at Dover Air Force Base. Those zombies bursting out of their coffins, American flags enveloping their outstretched arms and muffling their groans, provide a stunning image that I&#8217;d like to see on protest signs—talk about the return of the repressed. The genius of this film is that it literalizes the metaphor: these zombie soldiers aren&#8217;t symbols of some larger issue, they&#8217;re literally the costs of Bush&#8217;s war. The film draws a not-so-subtle comparison to antiwar Vietnam vets when, in flashback, one character&#8217;s mother says that her son &#8220;came back different.&#8221; It also manages to implicate us in the mess: in reminding us of Florida in 2000 and Ohio in 2004, the film is essentially saying that we are the zombies being disenfranchised—we let it happen without much complaining. At least the zombies in this film get a form of revenge, which puts them one step ahead of us.The film is part of Showtime&#8217;s &#8220;Masters of Horror&#8221; series, in which big-name (and no-name) horror directors were offered a budget and no network interference to create their own one-hour horror film. Dante, whose eccentric career has included gems like The Howling and Gremlins, took their offer and created one of the best films of 2005.</p>\n				</div>\n			</div> <!-- .et_pb_text -->\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row -->\n				\n				\n			</div> <!-- .et_pb_section --></p>\n'),(1123,408,'_et_pb_ab_stats_refresh_interval','hourly'),(1124,408,'_et_pb_old_content',''),(1125,408,'_et_pb_enable_shortcode_tracking',''),(1126,408,'_et_pb_custom_css',''),(1127,408,'_et_pb_gutter_width','3'),(1128,413,'_edit_last','1'),(1129,413,'_edit_lock','1566180741:1'),(1130,414,'_wp_attached_file','2019/08/dancer.jpg'),(1131,414,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:382;s:6:\"height\";i:640;s:4:\"file\";s:18:\"2019/08/dancer.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"dancer-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"dancer-179x300.jpg\";s:5:\"width\";i:179;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:18:\"dancer-382x250.jpg\";s:5:\"width\";i:382;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:18:\"dancer-382x284.jpg\";s:5:\"width\";i:382;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:18:\"dancer-382x382.jpg\";s:5:\"width\";i:382;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:18:\"dancer-382x516.jpg\";s:5:\"width\";i:382;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1132,413,'_thumbnail_id','414'),(1134,413,'_et_post_bg_color','#ffffff'),(1135,413,'_et_post_bg_layout','light'),(1136,413,'_et_pb_show_title','off'),(1137,413,'_et_pb_post_hide_nav','default'),(1138,413,'_et_pb_page_layout','et_no_sidebar'),(1139,413,'_et_pb_side_nav','off'),(1140,413,'_et_pb_use_builder','on'),(1141,413,'_et_builder_version','BB|Divi|3.26.3'),(1142,413,'_et_pb_show_page_creation','on'),(1143,413,'_et_pb_first_image',''),(1144,413,'_et_pb_truncate_post','<p><div class=\"et_pb_section et_pb_section_1 et_section_regular\">\n				\n				\n				\n				\n					<div class=\"et_pb_row et_pb_row_0\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_0  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_module et_pb_image et_pb_image_0\">\n				\n				\n				<a href=\"http://itcamefrombeyondpulp.com\"><span class=\"et_pb_image_wrap \"><img src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/header.jpg\" alt=\"\" /></span></a>\n			</div>\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row -->\n				\n				\n			</div> <!-- .et_pb_section --><div class=\"et_pb_section et_pb_section_3 et_pb_fullwidth_section et_section_regular\">\n				\n				\n				\n				\n					<div class=\"et_pb_with_border et_pb_module et_pb_fullwidth_menu et_pb_fullwidth_menu_0 et_pb_bg_layout_dark  et_pb_text_align_center et_dropdown_animation_fade\">\n				\n				\n				<div class=\"et_pb_row clearfix\">\n					<nav class=\"fullwidth-menu-nav\"><ul class=\"fullwidth-menu nav downwards\">\n					<li class=\"page_item page-item-33\"><a href=\"http://itcamefrombeyondpulp.com/books/\">Books</a></li>\n<li class=\"page_item page-item-45\"><a href=\"http://itcamefrombeyondpulp.com/movies/\">Movies</a></li>\n<li class=\"page_item page-item-59\"><a href=\"http://itcamefrombeyondpulp.com/sales/\">Sales</a></li>\n</ul></nav>\n					<div class=\"et_mobile_nav_menu\">\n						<a href=\"#\" class=\"mobile_nav closed\">\n							<span class=\"mobile_menu_bar\"></span>\n						</a>\n					</div>\n				</div>\n			</div>\n				\n				\n			</div> <!-- .et_pb_section --><div class=\"et_pb_section et_pb_section_4 et_pb_with_background et_section_regular\">\n				\n				\n				\n				\n					<div class=\"et_pb_with_border et_pb_row et_pb_row_1\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_1  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_0 et_pb_bg_layout_light  et_pb_text_align_left\">\n				\n				\n				<div class=\"et_pb_text_inner\">\n					<p>The Dancer from Atlantis (Poul Anderson, 1972)Poul Anderson (1926-2001) was among the most lauded science fiction and fantasy writers, winning seven Hugo Awards and three Nebula Awards. I absolutely hated the other novel-length Anderson outing I read, Tau Zero, aka the longest story problem in history. I didn’t think he could write a believable human character, nor could he integrate his math problems with his narrative. I understand that it’s considered a classic of hard science fiction, and readers, you will not find much praise for hard sci-fi in this column. But my Spreadsheet of Destiny decreed that I read The Dancer from Atlantis, and so I did. And it’s pretty darned good! More on that in a minute.Twentieth-century American architect Duncan Reid, medieval Russian rancher Oleg, fourth-century Hun raider Uldin, and fourth millennium BCE Atlantean bull-dancing priestess Erissa are swept along through time by a damaged time machine and deposited on the Mediterranean coast of Egypt a scant few months before a volcanic eruption is due to obliterate her homeland of Atlantis and destroy the Minoan stranglehold on Mediterranean trade. Erissa is a survivor of that eruption, and as a teenage priestess she loved a god named Duncan Reid, who fathered a child before disappearing in a puff of smoke. The four integrate themselves into Cretan society, interact with Theseus, introduce cavalry and other weapons and methods of war, and try to figure out how to get back home, while Duncan and Erissa try to figure out how to save her civilization from destruction.There’s no math, which is good. There are also a couple of believable characters who have human interactions, something that was missing from Tau Zero. I’m especially surprised and satisfied by how Anderson handles Duncan Reid’s double romance of Erissa—both as the middle-aged mystic he encounters first, then the teenage version of her he encounters on Atlantis. It could have been creepy in any number of ways, but it wasn’t. But the best thing about it is the copious amounts of research that Anderson obviously did—about people as diverse as medieval Russians and the fourth century Huns, but also about the intricately connected, overlapping, and contradictory mythology and archaeology of the ancient Mediterranean. Let me rephrase that, because lots of authors do a lot of research, and their books are terrible. Anderson synthesizes this research and integrates it smoothly into his narrative, using his imagination where necessary and keeping the page-length explanations to a minimum. This is something that, say, Umberto Eco, in his wretched The Name of the Rose, demonstrates that he doesn’t understand.Anderson also shows a deft hand at describing large-scale destruction, as the chapters that take place in the aftermath of the volcanic eruption are harrowing and economical. He can sketch in a few sentences a kind of detailed chaos that lesser (or perhaps more sadistic) writers would dwell on. Honestly, he shows a deft hand at all of the things that he seemed incapable of in Tau Zero, so I think I’ve suddenly become a fan.</p>\n				</div>\n			</div> <!-- .et_pb_text -->\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row -->\n				\n				\n			</div> <!-- .et_pb_section --></p>\n'),(1145,413,'_et_pb_ab_stats_refresh_interval','hourly'),(1146,413,'_et_pb_old_content',''),(1147,413,'_et_pb_enable_shortcode_tracking',''),(1148,413,'_et_pb_custom_css',''),(1149,413,'_et_pb_gutter_width','3');
/*!40000 ALTER TABLE `wp6h_postmeta` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp6h_posts`
--

DROP TABLE IF EXISTS `wp6h_posts`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp6h_posts` (
  `ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `post_author` bigint(20) unsigned NOT NULL DEFAULT 0,
  `post_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `post_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `post_content` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
  `post_title` text COLLATE utf8mb4_unicode_ci NOT NULL,
  `post_excerpt` text COLLATE utf8mb4_unicode_ci NOT NULL,
  `post_status` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'publish',
  `comment_status` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'open',
  `ping_status` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'open',
  `post_password` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `post_name` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `to_ping` text COLLATE utf8mb4_unicode_ci NOT NULL,
  `pinged` text COLLATE utf8mb4_unicode_ci NOT NULL,
  `post_modified` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `post_modified_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `post_content_filtered` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
  `post_parent` bigint(20) unsigned NOT NULL DEFAULT 0,
  `guid` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `menu_order` int(11) NOT NULL DEFAULT 0,
  `post_type` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'post',
  `post_mime_type` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `comment_count` bigint(20) NOT NULL DEFAULT 0,
  PRIMARY KEY (`ID`),
  KEY `post_name` (`post_name`(191)),
  KEY `type_status_date` (`post_type`,`post_status`,`post_date`,`ID`),
  KEY `post_parent` (`post_parent`),
  KEY `post_author` (`post_author`)
) ENGINE=MyISAM AUTO_INCREMENT=418 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp6h_posts`
--

LOCK TABLES `wp6h_posts` WRITE;
/*!40000 ALTER TABLE `wp6h_posts` DISABLE KEYS */;
INSERT INTO `wp6h_posts` VALUES (13,1,'2019-07-21 22:52:29','2019-07-21 22:52:29','/* Hide the Header and Logo */\r\n#main-header {\r\n    display: none !important;\r\n}','Divi','','publish','closed','closed','','divi','','','2019-07-26 19:05:08','2019-07-26 19:05:08','',0,'http://itcamefrombeyondpulp.com/uncategorized/divi/',0,'custom_css','',0),(14,1,'2019-07-21 22:52:29','2019-07-21 22:52:29','','Divi','','inherit','closed','closed','','13-revision-v1','','','2019-07-21 22:52:29','2019-07-21 22:52:29','',13,'http://itcamefrombeyondpulp.com/uncategorized/13-revision-v1/',0,'revision','',0),(16,1,'2019-07-21 22:57:16','2019-07-21 22:57:16','','itfbp header','','inherit','closed','closed','','itfbp-header','','','2019-07-21 22:57:16','2019-07-21 22:57:16','',0,'http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/itfbp-header.jpg',0,'attachment','image/jpeg',0),(17,1,'2019-07-21 23:05:24','2019-07-21 23:05:24','[et_pb_section fb_built=\"1\" _builder_version=\"3.26.3\" custom_margin=\"||11px|||\" custom_padding=\"0px|||||\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" global_module=\"74\"][et_pb_row custom_padding=\"0px||0px|||\" custom_margin=\"|auto|-66px|auto||\" _builder_version=\"3.26.3\"][et_pb_column type=\"4_4\" _builder_version=\"3.26.3\"][et_pb_image src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/header.jpg\" url=\"http://itcamefrombeyondpulp.com\" _builder_version=\"3.26.3\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.26.3\" width=\"1080px\" module_alignment=\"center\" inner_module_alignment=\"center\" custom_padding=\"0px||0px||false|false\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" global_module=\"175\"][et_pb_fullwidth_menu menu_id=\"2\" submenu_direction=\"downwards\" fullwidth_menu=\"off\" dropdown_menu_text_color=\"#ffffff\" _builder_version=\"3.26.3\" menu_font=\"|800||on|||||\" menu_text_color=\"#ffffff\" menu_font_size=\"22px\" menu_letter_spacing=\"5px\" background_color=\"#e02b20\" border_width_bottom=\"5px\" text_orientation=\"center\" background_layout=\"dark\" custom_margin=\"0px||||false|false\" custom_padding=\"1px||0px||false|false\" z_index_tablet=\"500\" menu_text_shadow_horizontal_length_tablet=\"0px\" menu_text_shadow_vertical_length_tablet=\"0px\" menu_text_shadow_blur_strength_tablet=\"1px\" border_width_bottom_tablet=\"5px\" border_width_bottom_phone=\"5px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\"][/et_pb_fullwidth_menu][/et_pb_section]','','','publish','closed','closed','','17-2','','','2019-07-24 23:03:11','2019-07-24 23:03:11','',0,'http://itcamefrombeyondpulp.com/?page_id=17',0,'page','',0),(18,1,'2019-07-21 22:58:32','2019-07-21 22:58:32','<!-- wp:divi/placeholder /-->','','','inherit','closed','closed','','17-revision-v1','','','2019-07-21 22:58:32','2019-07-21 22:58:32','',17,'http://itcamefrombeyondpulp.com/uncategorized/17-revision-v1/',0,'revision','',0),(22,1,'2019-07-21 23:16:49','2019-07-21 23:16:49','','11','','inherit','closed','closed','','11','','','2019-07-21 23:16:49','2019-07-21 23:16:49','',0,'http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/11.jpg',0,'attachment','image/jpeg',0),(343,1,'2019-07-30 02:31:47','2019-07-30 02:31:47','[et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" custom_padding=\"0px|||||\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" custom_margin=\"||11px|||\" next_background_color=\"#000000\" global_module=\"74\"][et_pb_row global_parent=\"74\" custom_padding=\"0px||0px|||\" custom_margin=\"|auto|-66px|auto||\" _builder_version=\"3.26.3\"][et_pb_column type=\"4_4\" global_parent=\"74\" _builder_version=\"3.26.3\"][et_pb_image global_parent=\"74\" src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/header.jpg\" url=\"http://itcamefrombeyondpulp.com\" _builder_version=\"3.26.3\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.26.3\" width=\"1080px\" width_tablet=\"100%\" width_last_edited=\"on|phone\" module_alignment=\"center\" inner_module_alignment=\"center\" custom_padding=\"0px||0px||false|false\" z_index_tablet=\"500\" hover_enabled=\"0\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" prev_background_color=\"#000000\" next_background_color=\"#e02b20\" global_module=\"175\"][et_pb_fullwidth_menu global_parent=\"175\" menu_id=\"2\" submenu_direction=\"downwards\" fullwidth_menu=\"off\" dropdown_menu_text_color=\"#ffffff\" _builder_version=\"3.26.3\" menu_font=\"|800||on|||||\" menu_text_color=\"#ffffff\" menu_font_size=\"22px\" menu_letter_spacing=\"5px\" background_color=\"#e02b20\" border_width_bottom=\"5px\" text_orientation=\"center\" background_layout=\"dark\" custom_margin=\"0px||||false|false\" custom_padding=\"1px||0px||false|false\" z_index_tablet=\"500\" menu_text_shadow_horizontal_length_tablet=\"0px\" menu_text_shadow_vertical_length_tablet=\"0px\" menu_text_shadow_blur_strength_tablet=\"1px\" border_width_bottom_tablet=\"5px\" border_width_bottom_phone=\"5px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" /][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" background_color=\"#e02b20\" width=\"1080px\" module_alignment=\"center\" custom_padding=\"10px||0px|||\" prev_background_color=\"#ffffff\"][et_pb_row _builder_version=\"3.26.3\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" background_color=\"#ffffff\" custom_padding=\"10px|10px||10px|false|false\" border_width_bottom=\"5px\" border_color_bottom=\"#e02b20\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image _builder_version=\"3.26.3\" src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/pearl.jpg\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\" /][et_pb_text _builder_version=\"3.26.3\" z_index_tablet=\"500\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" text_text_shadow_horizontal_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_vertical_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_blur_strength=\"text_text_shadow_style,%91object Object%93\" link_text_shadow_horizontal_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_vertical_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_blur_strength=\"link_text_shadow_style,%91object Object%93\" ul_text_shadow_horizontal_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_vertical_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_blur_strength=\"ul_text_shadow_style,%91object Object%93\" ol_text_shadow_horizontal_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_vertical_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_blur_strength=\"ol_text_shadow_style,%91object Object%93\" quote_text_shadow_horizontal_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_vertical_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_blur_strength=\"quote_text_shadow_style,%91object Object%93\" header_text_shadow_horizontal_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_vertical_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_blur_strength=\"header_text_shadow_style,%91object Object%93\" header_2_text_shadow_horizontal_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_vertical_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_blur_strength=\"header_2_text_shadow_style,%91object Object%93\" header_3_text_shadow_horizontal_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_vertical_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_blur_strength=\"header_3_text_shadow_style,%91object Object%93\" header_4_text_shadow_horizontal_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_vertical_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_blur_strength=\"header_4_text_shadow_style,%91object Object%93\" header_5_text_shadow_horizontal_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_vertical_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_blur_strength=\"header_5_text_shadow_style,%91object Object%93\" header_6_text_shadow_horizontal_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_vertical_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_blur_strength=\"header_6_text_shadow_style,%91object Object%93\"]\r\n\r\n<h3 style=\"text-align: center;\"><strong><em>The Pearl of Death</em> (Roy William Neill, 1944, 69 min.)</strong></h3><p>The Sherlock Holmes story \"The Adventure of the Six Napoleons\" is the source for not one, but two entries in the Basil Rathbone/Nigel Bruce series of Holmes films produced by Universal. This film is a very close adaptation of the story, while Dressed to Kill, produced two years later at the end of the series, is more of an \"inspired by\" situation. The basic idea is the same: there\'s a secret hidden in one of several identical knick-knacks, and bad guys are willing to murder to get ahold of it. Here, as in Sir Arthur Conan Doyle\'s original story, the thing is the Borgia Pearl, a gem with a long history of bringing misfortune and death to those who possess it.</p><p>We meet up with Holmes in disguise as an elderly priest. He\'s riding a boat to Dover, and he\'s befriended a young woman (Evelyn Ankers) who is actually a minion of the legendary criminal Giles Conover (Miles Mander). She\'s there to steal the Borgia Pearl from the guard transporting it to London. She unwittingly lets Holmes take possession of the pearl, and now Conover is desperate to get it back. The pearl is placed in a museum, and although Holmes warns them that Conover will attempt to steal it, the curator places it on display. Holmes attempts to demonstrate why the security measures they\'ve taken are insufficient, leading to what might be the first time that Holmes\'s legendary arrogance was the direct cause of a crime. On several occasions, he\'s knowingly placed people in harm\'s way, sometimes—as in <em>Terror by Night</em>—being responsible for their deaths. Here, he\'s directly responsible for the theft of the Borgia Pearl; while he\'s demonstrating the flaws in a museum\'s security system by disconnecting it, Conover dashes off with the pearl. He\'s quickly located, but the pearl is gone. Now Holmes has to find it to regain his reputation. Holmes learns of a series of seemingly unconnected murders—or at least the bumbling Lestrade (Dennis Hoey) thinks they\'re unconnected, despite the fact that all of them were killed in the same manner and that the murderer then smashed all of their china.</p><p>This film would have been a perfect place to use Holmes\'s arch-nemesis, Professor Moriarty. If I have one consistent complaint about this series of films, it\'s that Moriarty doesn\'t appear often enough: he\'s in only three of them, and in only one (<em>The Woman in Green</em>) is he really effective. Instead, we get second-rate villains, like Conover here or Colonel Sebastian Moran in <em>Terror by Night</em>. However, we do meet a memorable villain, the Hoxton Creeper, played by the acromegalic actor Rondo Hatton. The Creeper, unseen except in silhouette for most of the film, murders by breaking the backs of his victims. I could be picky and say that his preferred method, breaking the third lumbar vertebra, is unlikely to produce instant death as it does in the film, but he\'s creepy enough to make me not give a hoot. The Creeper was such a hit in this film that Universal brought him back for two horror films in 1946, <em>House of Horror</em> and <em>The Brute Man</em>, before Hatton died of complications from his acromelagy.</p><p>Aside from the Creeper, there\'s not a lot to distinguish this film. Rathbone is good as always, and he\'s allowed a tiny bit of character devlopment when he so royally screws up. Poor Nigel Bruce has only one substantial scene, and it\'s of Watson acting like a buffoon. It\'s certainly not the worst film in the series, but it\'s pretty weak.</p><p><b>Baker Street Regulars</b> (actors who appeared in more than two films in the series as different characters):</p><p>Wilson Benge, 2nd of 5 appearances (playing second steward) <br />Harry Cording, 5th of 8 (George Gelder) <br />Harold De Becker, 3rd of 4 (boss) <br />Leslie Denison, 4th of 6 (Police Sergeant Murdock) <br />Holmes Herbert, 4th of 6 (James Goodram) <br />Leyland Hogdson, 5th of 7 (Customs officer) <br />Arthur Stenning, 2nd of 3 (first steward) <br />David Thursby, 2nd of 3 (unknown) <br />Eric Wilton, 3rd of 3 (Conover\'s chauffeur) <br />Ian Wolfe, 3rd of 4 (Amos Hodder)</p>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','The Pearl of Death (1944)','','publish','closed','closed','','the-pearl-of-death-1944','','','2019-07-30 02:31:47','2019-07-30 02:31:47','',0,'http://itcamefrombeyondpulp.com/?p=343',0,'post','',0),(20,1,'2019-07-21 23:05:24','2019-07-21 23:05:24','[et_pb_section fb_built=\"1\" _builder_version=\"3.26.3\" custom_padding=\"0px|||||\"][et_pb_row _builder_version=\"3.26.3\" custom_padding=\"0px||0px|||\" custom_margin=\"|auto|-66px|auto||\"][et_pb_column _builder_version=\"3.26.3\" type=\"4_4\"][et_pb_image src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/itfbp-header.jpg\" _builder_version=\"3.26.3\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.26.3\"][et_pb_row _builder_version=\"3.26.3\" custom_margin=\"-27px|auto||auto||\"][et_pb_column _builder_version=\"3.26.3\" type=\"4_4\"][et_pb_text _builder_version=\"3.26.3\"]<h2 style=\"text-align: center;\">Reviews of classic science fiction books and movies. Coming soon.</h2>\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','','','inherit','closed','closed','','17-revision-v1','','','2019-07-21 23:05:24','2019-07-21 23:05:24','',17,'http://itcamefrombeyondpulp.com/uncategorized/17-revision-v1/',0,'revision','',0),(28,1,'2019-07-21 23:34:43','2019-07-21 23:34:43','[et_pb_section fb_built=\"1\" _builder_version=\"3.26.3\" custom_padding=\"0px|||||\"][et_pb_row custom_padding=\"0px||0px|||\" custom_margin=\"|auto|-66px|auto||\" _builder_version=\"3.26.3\"][et_pb_column type=\"4_4\" _builder_version=\"3.26.3\"][et_pb_image src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/itfbp-header.jpg\" _builder_version=\"3.26.3\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.26.3\" background_color=\"#e02b20\" width=\"1080px\" module_alignment=\"center\" custom_padding=\"69px||0px|||\"][et_pb_row custom_margin=\"-65px|auto||auto||\" _builder_version=\"3.26.3\" column_structure=\"1_3,1_3,1_3\" min_height=\"62px\" custom_padding=\"39px|||||\"][et_pb_column type=\"1_3\" _builder_version=\"3.26.3\"][et_pb_text _builder_version=\"3.26.3\" header_text_color=\"#ffffff\"]<h1 style=\"text-align: center;\"><strong>MOVIE REVIEWS</strong></h1>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.26.3\"][et_pb_text _builder_version=\"3.26.3\" header_text_color=\"#ffffff\"]<h1 style=\"text-align: center;\"><strong>BOOK REVIEWS</strong></h1>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.26.3\"][et_pb_text _builder_version=\"3.26.3\" header_text_color=\"#ffffff\"]<h1 style=\"text-align: center;\"><strong>SALES</strong></h1>\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','','','inherit','closed','closed','','17-revision-v1','','','2019-07-21 23:34:43','2019-07-21 23:34:43','',17,'http://itcamefrombeyondpulp.com/uncategorized/17-revision-v1/',0,'revision','',0),(33,1,'2019-07-22 00:44:06','2019-07-22 00:44:06','[et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" custom_padding=\"0px|||||\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" custom_margin=\"||11px|||\" next_background_color=\"#000000\" global_module=\"74\"][et_pb_row global_parent=\"74\" custom_padding=\"0px||0px|||\" custom_margin=\"|auto|-66px|auto||\" _builder_version=\"3.26.3\"][et_pb_column type=\"4_4\" global_parent=\"74\" _builder_version=\"3.26.3\"][et_pb_image global_parent=\"74\" src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/header.jpg\" url=\"http://itcamefrombeyondpulp.com\" _builder_version=\"3.26.3\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.26.3\" width=\"1080px\" width_tablet=\"100%\" width_last_edited=\"on|phone\" module_alignment=\"center\" inner_module_alignment=\"center\" custom_padding=\"0px||0px||false|false\" z_index_tablet=\"500\" hover_enabled=\"0\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" prev_background_color=\"#000000\" next_background_color=\"#e02b20\" global_module=\"175\"][et_pb_fullwidth_menu global_parent=\"175\" menu_id=\"2\" submenu_direction=\"downwards\" fullwidth_menu=\"off\" dropdown_menu_text_color=\"#ffffff\" _builder_version=\"3.26.3\" menu_font=\"|800||on|||||\" menu_text_color=\"#ffffff\" menu_font_size=\"22px\" menu_letter_spacing=\"5px\" background_color=\"#e02b20\" border_width_bottom=\"5px\" text_orientation=\"center\" background_layout=\"dark\" custom_margin=\"0px||||false|false\" custom_padding=\"1px||0px||false|false\" z_index_tablet=\"500\" menu_text_shadow_horizontal_length_tablet=\"0px\" menu_text_shadow_vertical_length_tablet=\"0px\" menu_text_shadow_blur_strength_tablet=\"1px\" border_width_bottom_tablet=\"5px\" border_width_bottom_phone=\"5px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" /][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" background_color=\"#e02b20\" width=\"1080px\" module_alignment=\"center\" custom_padding=\"10px||0px|||\" prev_background_color=\"#ffffff\"][et_pb_row custom_padding=\"10px|10px||\" _builder_version=\"3.26.3\" background_color=\"#ffffff\" border_width_bottom=\"5px\" border_color_bottom=\"#e02b20\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.26.3\" z_index_tablet=\"500\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" text_text_shadow_horizontal_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_vertical_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_blur_strength=\"text_text_shadow_style,%91object Object%93\" link_text_shadow_horizontal_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_vertical_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_blur_strength=\"link_text_shadow_style,%91object Object%93\" ul_text_shadow_horizontal_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_vertical_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_blur_strength=\"ul_text_shadow_style,%91object Object%93\" ol_text_shadow_horizontal_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_vertical_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_blur_strength=\"ol_text_shadow_style,%91object Object%93\" quote_text_shadow_horizontal_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_vertical_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_blur_strength=\"quote_text_shadow_style,%91object Object%93\" header_text_shadow_horizontal_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_vertical_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_blur_strength=\"header_text_shadow_style,%91object Object%93\" header_2_text_shadow_horizontal_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_vertical_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_blur_strength=\"header_2_text_shadow_style,%91object Object%93\" header_3_text_shadow_horizontal_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_vertical_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_blur_strength=\"header_3_text_shadow_style,%91object Object%93\" header_4_text_shadow_horizontal_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_vertical_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_blur_strength=\"header_4_text_shadow_style,%91object Object%93\" header_5_text_shadow_horizontal_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_vertical_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_blur_strength=\"header_5_text_shadow_style,%91object Object%93\" header_6_text_shadow_horizontal_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_vertical_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_blur_strength=\"header_6_text_shadow_style,%91object Object%93\"]\r\n\r\n<h1 style=\"text-align: center;\">Book Reviews</h1>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.26.3\" background_color=\"#ffffff\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\" border_width_bottom=\"5px\" border_color_bottom=\"#e02b20\"][et_pb_column type=\"1_3\" custom_padding__hover=\"|||\" custom_padding=\"|||\"][et_pb_text _builder_version=\"3.26.3\" text_text_shadow_horizontal_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\"]\r\n\r\n<h3 style=\"text-align: center;\"><strong>Sci-Fi/Fantasy</strong></h3><p style=\"text-align: center;\"><a href=\"http://itcamefrombeyondpulp.com/books/the-fallen-country-1986/\"><strong>The Fallen Country</strong></a><br /><strong>(Somtow Sucharitkul, 1986)<br /><a href=\"http://itcamefrombeyondpulp.com/books/the-dancer-from-atlantis-1972/\">The Dancer from Atlantis</a><br />(Poul Anderson, 1972)</strong></p>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" custom_padding__hover=\"|||\" custom_padding=\"|||\"][et_pb_text _builder_version=\"3.26.3\" text_text_shadow_horizontal_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\"]\r\n\r\n<h3 style=\"text-align: center;\"><strong>Horror</strong></h3>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" custom_padding__hover=\"|||\" custom_padding=\"|||\"][et_pb_text _builder_version=\"3.26.3\" text_text_shadow_horizontal_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\"]\r\n\r\n<h3 style=\"text-align: center;\"><strong>Whatnot</strong></h3>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Books','','publish','closed','closed','','books','','','2019-08-19 02:15:37','2019-08-19 02:15:37','',0,'http://itcamefrombeyondpulp.com/?page_id=33',0,'page','',0),(39,1,'2019-07-22 00:48:02','2019-07-22 00:48:02','[et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" custom_padding=\"0px|||||\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" custom_margin=\"||11px|||\" next_background_color=\"#000000\" global_module=\"74\"][et_pb_row global_parent=\"74\" custom_padding=\"0px||0px|||\" custom_margin=\"|auto|-66px|auto||\" _builder_version=\"3.26.3\"][et_pb_column type=\"4_4\" global_parent=\"74\" _builder_version=\"3.26.3\"][et_pb_image global_parent=\"74\" src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/header.jpg\" url=\"http://itcamefrombeyondpulp.com\" _builder_version=\"3.26.3\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.26.3\" width=\"1080px\" inner_module_alignment=\"center\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" module_alignment=\"center\" custom_padding=\"0px||0px||false|false\" next_background_color=\"#e02b20\" global_module=\"175\" prev_background_color=\"#000000\"][et_pb_fullwidth_menu menu_id=\"2\" submenu_direction=\"downwards\" fullwidth_menu=\"off\" dropdown_menu_text_color=\"#ffffff\" _builder_version=\"3.26.3\" menu_font=\"|800||on|||||\" menu_text_color=\"#ffffff\" menu_font_size=\"22px\" menu_letter_spacing=\"5px\" background_color=\"#e02b20\" border_width_bottom=\"5px\" text_orientation=\"center\" background_layout=\"dark\" custom_padding=\"1px||0px||false|false\" z_index_tablet=\"500\" menu_text_shadow_horizontal_length_tablet=\"0px\" menu_text_shadow_vertical_length_tablet=\"0px\" menu_text_shadow_blur_strength_tablet=\"1px\" border_width_bottom_tablet=\"5px\" border_width_bottom_phone=\"5px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" custom_margin=\"0px||||false|false\" /][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" background_color=\"#e02b20\" width=\"1080px\" module_alignment=\"center\" custom_padding=\"10px||0px|||\" prev_background_color=\"#ffffff\"][et_pb_row _builder_version=\"3.26.3\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" background_color=\"#ffffff\" custom_padding=\"10px|10px||10px|false|false\" border_width_bottom=\"5px\" border_color_bottom=\"#e02b20\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image _builder_version=\"3.26.3\" src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/serenity.jpg\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\" /][et_pb_text _builder_version=\"3.26.3\" z_index_tablet=\"500\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\"]\r\n\r\n<h3 style=\"text-align: center;\"><strong><em>Serenity</em> (Joss Whedon, 2005, 119 min.)</strong></h3>\r\n<p>Joss Whedon\'s short-lived <i>Firefly</i> was one of the best science fiction shows ever made. It lasted 14 episodes, three of which never aired. Fox did everything it could to destroy it, airing the episodes out of order before finally pulling the plug. Out of Whedon\'s canon—the other shows being <i>Buffy the Vampire Slayer</i> and its spinoff <i>Angel</i>—<i>Firefly</i> showed the most potential for long-term story arcs and character developments. There were ample signs that Whedon hadn\'t even gotten started on all of the themes he wanted to explore, which is a bad idea if you\'re making a cult television show. The very things that made it a slowly building masterpiece likely doomed it: trigger-happy TV execs didn\'t see it going anywhere, so they offed it. The show had a cult following, though, and perhaps their efforts had something to do with Whedon getting the green light to go ahead on a culmination of sorts. The film has most of the qualities that made the show so wonderful, including the most important one: the feeling that it\'s not enough.</p>\r\n<p>The film is not perfect: the necessary scenes that clue newcomers in to the story, and the rather abrupt ending, leave a little to be desired. But the film contains sustained, masterful sequences, a surprise plot development that\'s like a kick in the teeth, and a memorable bad guy in Chiwetel Ejiofor. Also, and most importantly, it contains the things that make Joss Whedon\'s creations memorable: the interaction between characters who feel like they\'re real, who have histories that don\'t come across as plot points, who we can imagine existing before and after the film\'s events. There\'s comedy, there\'s tragedy, there\'s emotion, and Whedon is a master at balancing it all.</p>\r\n<p>Some backstory: it\'s around 500 years in the future, and around six years since the galactic Alliance has put down a rebellion by independent planets. The captain of the spaceship Serenity, Malcolm \"Mal\" Reynolds (Nathan Fillion), and his first mate Zoe (Gina Torres), fought on the side of the rebels. Since the war, they\'ve existed on the periphery, taking legal shipping jobs and illegal smuggling jobs. Slowly, they pieced together a crew: the snarky pilot Wash (Alan Tudyk), who is now Zoe\'s husband; the meatheaded, trigger-happy Jayne (Adam Baldwin); and the genius mechanic Kaylee (Jewel Staite). A little less than a year ago, they picked up Simon (Sean Maher), a doctor, and River (Summer Glau), his psychic/psychotic sister. The Alliance had been performing experiments on River, Simon rescued her, and now they\'re on the run. Although Mal pretends to be a hardened criminal, he has a heroic streak a mile wide, so he and the rest of the crew hide and protect Simon and River, as the Alliance comes closer and closer to finding them. That gets us to the beginning of the film.</p>\r\n<p>The plot involves a journey to the edge of the galaxy through the territory inhabited by Reavers, horrific men who murder and rape their way through the galaxy, to a mysterious planet where they discover a horrible secret that I wouldn\'t dream of divulging here. In the series, the Alliance sent various bounty hunters and operatives to attempt to kidnap River. Now there\'s someone new coming after her: an unnamed operative (Chiwetel Ejiofor), who has the serenity and sureness of a mad priest. It\'s his job to get River back, and he\'s capable of doing anything it takes to do so, including killing everyone in his path with a scary calm. He\'s doing it all in the name of a future without strife. He\'s scary because he\'s not angry or upset, or happy or eager. He\'s not doing it for reward; he doesn\'t think there\'s any place like him in the future he\'s working toward. I saw strong parallels between him and suicide bombers, except that he\'s sure that he can do more damage for the cause alive than dead.</p>\r\n<p>The film is Whedon\'s patented genre mash-up: science fiction, westerns, horror, martial arts—there\'s a place for everything in his universe. Sometimes there are gaps in the logic, though: the second language of space is Chinese, which is usually used to curse, but there\'s nary an Asian person to be seen. It\'s a matter of convenience that most of the planets in this galaxy, although \"terraformed,\" look like the dusty sets of a thousand oaters, because what Whedon most wanted to make here is an old-fashioned Western, complete with chases on horses, revolvers (which are space-age because they make electronic sounds before firing), funky 19th-century dress, and a sometimes amusingly anachronistic dialect that favors double negatives. Don\'t think for a minute that Whedon isn\'t chuckling along with us at some of it, though: he\'s one of the best writers of understated comedy and surprise laughs in the business.</p>\r\n<p>As I said, the ending feels false: it involves a seismic shift in a certain character\'s worldview, one that seems highly unlikely given the way that character was developed up to that point. It\'s a nice thought, a sort of shiny \"the truth will set you free\" twist, but it doesn\'t fit. However, it\'s the only real miscue in the film. Fans of the series will find everything they were hoping for, and people unfamiliar with it will likely find a rousing two hours of old-fashioned entertainment.</p>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Serenity (2005)','Joss Whedon\'s extension of <i>Firefly</i> has everything the show had, including the feeling that it\'s not enough.','publish','closed','closed','','serenity-2005','','','2019-07-25 20:53:35','2019-07-25 20:53:35','',0,'http://itcamefrombeyondpulp.com/?p=39',0,'post','',0),(38,1,'2019-07-22 00:44:06','2019-07-22 00:44:06','[et_pb_section fb_built=\"1\" _builder_version=\"3.26.3\" custom_padding=\"0px|||||\"][et_pb_row custom_padding=\"0px||0px|||\" custom_margin=\"|auto|-66px|auto||\" _builder_version=\"3.26.3\"][et_pb_column type=\"4_4\" _builder_version=\"3.26.3\"][et_pb_image src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/itfbp-header.jpg\" _builder_version=\"3.26.3\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.26.3\" background_color=\"#e02b20\" width=\"1080px\" module_alignment=\"center\" custom_padding=\"10px||0px|||\"][et_pb_row _builder_version=\"3.26.3\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.26.3\" text_font=\"|800|||||||\" text_text_color=\"#ffffff\" background_color=\"#e02b20\" z_index_tablet=\"500\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" header_font=\"|800|||||||\" header_text_color=\"#ffffff\"]<h1 style=\"text-align: center;\">MOVIE REVIEWS</h1>\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Book Reviews','','inherit','closed','closed','','33-revision-v1','','','2019-07-22 00:44:06','2019-07-22 00:44:06','',33,'http://itcamefrombeyondpulp.com/uncategorized/33-revision-v1/',0,'revision','',0),(36,1,'2019-07-22 00:36:58','2019-07-22 00:36:58','[et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" custom_padding=\"0px|||||\" next_background_color=\"#e02b20\"][et_pb_row custom_padding=\"0px||0px|||\" custom_margin=\"|auto|-66px|auto||\" _builder_version=\"3.26.3\"][et_pb_column type=\"4_4\" _builder_version=\"3.26.3\"][et_pb_image src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/itfbp-header.jpg\" _builder_version=\"3.26.3\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" background_color=\"#e02b20\" width=\"1080px\" module_alignment=\"center\" custom_padding=\"69px||0px|||\" prev_background_color=\"#ffffff\"][et_pb_row _builder_version=\"3.26.3\"][et_pb_column type=\"4_4\"][et_pb_text _builder_version=\"3.26.3\" text_font=\"|800|||||||\" text_text_color=\"#ffffff\" text_text_shadow_horizontal_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\" background_color=\"#e02b20\"]\r\n\r\n<h1 style=\"text-align: center;\">MOVIE REVIEWS</h1>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Book Reviews','','inherit','closed','closed','','33-revision-v1','','','2019-07-22 00:36:58','2019-07-22 00:36:58','',33,'http://itcamefrombeyondpulp.com/uncategorized/33-revision-v1/',0,'revision','',0),(40,1,'2019-07-22 00:48:02','2019-07-22 00:48:02','[et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" custom_padding=\"0px|||||\" next_background_color=\"#e02b20\"][et_pb_row custom_padding=\"0px||0px|||\" custom_margin=\"|auto|-66px|auto||\" _builder_version=\"3.26.3\"][et_pb_column type=\"4_4\" _builder_version=\"3.26.3\"][et_pb_image src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/itfbp-header.jpg\" _builder_version=\"3.26.3\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" background_color=\"#e02b20\" width=\"1080px\" module_alignment=\"center\" custom_padding=\"10px||0px|||\" prev_background_color=\"#ffffff\"][et_pb_row _builder_version=\"3.26.3\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.26.3\" text_font=\"|800|||||||\" text_text_color=\"#ffffff\" background_color=\"#e02b20\" z_index_tablet=\"500\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" header_font=\"|800|||||||\" header_text_color=\"#ffffff\" text_text_shadow_horizontal_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_vertical_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_blur_strength=\"text_text_shadow_style,%91object Object%93\" link_text_shadow_horizontal_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_vertical_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_blur_strength=\"link_text_shadow_style,%91object Object%93\" ul_text_shadow_horizontal_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_vertical_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_blur_strength=\"ul_text_shadow_style,%91object Object%93\" ol_text_shadow_horizontal_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_vertical_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_blur_strength=\"ol_text_shadow_style,%91object Object%93\" quote_text_shadow_horizontal_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_vertical_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_blur_strength=\"quote_text_shadow_style,%91object Object%93\" header_text_shadow_horizontal_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_vertical_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_blur_strength=\"header_text_shadow_style,%91object Object%93\" header_2_text_shadow_horizontal_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_vertical_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_blur_strength=\"header_2_text_shadow_style,%91object Object%93\" header_3_text_shadow_horizontal_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_vertical_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_blur_strength=\"header_3_text_shadow_style,%91object Object%93\" header_4_text_shadow_horizontal_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_vertical_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_blur_strength=\"header_4_text_shadow_style,%91object Object%93\" header_5_text_shadow_horizontal_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_vertical_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_blur_strength=\"header_5_text_shadow_style,%91object Object%93\" header_6_text_shadow_horizontal_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_vertical_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_blur_strength=\"header_6_text_shadow_style,%91object Object%93\"]\r\n\r\n<h1 style=\"text-align: center;\">MOVIE REVIEW<br /><em>Serenity</em> (2005)</h1>\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.26.3\" text_text_shadow_horizontal_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\"]\r\n\r\n<p><strong><em>Serenity</em> (Joss Whedon, 2005, 119 min.)</strong></p><p>Joss Whedon\'s short-lived <i>Firefly</i> was one of the best science fiction shows ever made. It lasted 14 episodes, three of which never aired. Fox did everything it could to destroy it, airing the episodes out of order before finally pulling the plug. Out of Whedon\'s canon—the other shows being <i>Buffy the Vampire Slayer</i> and its spinoff <i>Angel</i>—<i>Firefly</i> showed the most potential for long-term story arcs and character developments. There were ample signs that Whedon hadn\'t even gotten started on all of the themes he wanted to explore, which is a bad idea if you\'re making a cult television show. The very things that made it a slowly building masterpiece likely doomed it: trigger-happy TV execs didn\'t see it going anywhere, so they offed it. The show had a cult following, though, and perhaps their efforts had something to do with Whedon getting the green light to go ahead on a culmination of sorts. The film has most of the qualities that made the show so wonderful, including the most important one: the feeling that it\'s not enough.<br /><br />The film is not perfect: the necessary scenes that clue newcomers in to the story, and the rather abrupt ending, leave a little to be desired. But the film contains sustained, masterful sequences, a surprise plot development that\'s like a kick in the teeth, and a memorable bad guy in Chiwetel Ejiofor. Also, and most importantly, it contains the things that make Joss Whedon\'s creations memorable: the interaction between characters who feel like they\'re real, who have histories that don\'t come across as plot points, who we can imagine existing before and after the film\'s events. There\'s comedy, there\'s tragedy, there\'s emotion, and Whedon is a master at balancing it all.<br /><br />Some backstory: it\'s around 500 years in the future, and around six years since the galactic Alliance has put down a rebellion by independent planets. The captain of the spaceship Serenity, Malcolm \"Mal\" Reynolds (Nathan Fillion), and his first mate Zoe (Gina Torres), fought on the side of the rebels. Since the war, they\'ve existed on the periphery, taking legal shipping jobs and illegal smuggling jobs. Slowly, they pieced together a crew: the snarky pilot Wash (Alan Tudyk), who is now Zoe\'s husband; the meatheaded, trigger-happy Jayne (Adam Baldwin); and the genius mechanic Kaylee (Jewel Staite). A little less than a year ago, they picked up Simon (Sean Maher), a doctor, and River (Summer Glau), his psychic/psychotic sister. The Alliance had been performing experiments on River, Simon rescued her, and now they\'re on the run. Although Mal pretends to be a hardened criminal, he has a heroic streak a mile wide, so he and the rest of the crew hide and protect Simon and River, as the Alliance comes closer and closer to finding them. That gets us to the beginning of the film.<br /><br />The plot involves a journey to the edge of the galaxy through the territory inhabited by Reavers, horrific men who murder and rape their way through the galaxy, to a mysterious planet where they discover a horrible secret that I wouldn\'t dream of divulging here. In the series, the Alliance sent various bounty hunters and operatives to attempt to kidnap River. Now there\'s someone new coming after her: an unnamed operative (Chiwetel Ejiofor), who has the serenity and sureness of a mad priest. It\'s his job to get River back, and he\'s capable of doing anything it takes to do so, including killing everyone in his path with a scary calm. He\'s doing it all in the name of a future without strife. He\'s scary because he\'s not angry or upset, or happy or eager. He\'s not doing it for reward; he doesn\'t think there\'s any place like him in the future he\'s working toward. I saw strong parallels between him and suicide bombers, except that he\'s sure that he can do more damage for the cause alive than dead.<br /><br />The film is Whedon\'s patented genre mash-up: science fiction, westerns, horror, martial arts—there\'s a place for everything in his universe. Sometimes there are gaps in the logic, though: the second language of space is Chinese, which is usually used to curse, but there\'s nary an Asian person to be seen. It\'s a matter of convenience that most of the planets in this galaxy, although \"terraformed,\" look like the dusty sets of a thousand oaters, because what Whedon most wanted to make here is an old-fashioned Western, complete with chases on horses, revolvers (which are space-age because they make electronic sounds before firing), funky 19th-century dress, and a sometimes amusingly anachronistic dialect that favors double negatives. Don\'t think for a minute that Whedon isn\'t chuckling along with us at some of it, though: he\'s one of the best writers of understated comedy and surprise laughs in the business.<br /><br />As I said, the ending feels false: it involves a seismic shift in a certain character\'s worldview, one that seems highly unlikely given the way that character was developed up to that point. It\'s a nice thought, a sort of shiny \"the truth will set you free\" twist, but it doesn\'t fit. However, it\'s the only real miscue in the film. Fans of the series will find everything they were hoping for, and people unfamiliar with it will likely find a rousing two hours of old-fashioned entertainment.</p>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Movie Review: Serenity (2005)','','inherit','closed','closed','','39-revision-v1','','','2019-07-22 00:48:02','2019-07-22 00:48:02','',39,'http://itcamefrombeyondpulp.com/uncategorized/39-revision-v1/',0,'revision','',0),(43,1,'2019-07-22 00:52:22','2019-07-22 00:52:22','[et_pb_section fb_built=\"1\" _builder_version=\"3.26.3\" custom_padding=\"0px|||||\"][et_pb_row custom_padding=\"0px||0px|||\" custom_margin=\"|auto|-66px|auto||\" _builder_version=\"3.26.3\"][et_pb_column type=\"4_4\" _builder_version=\"3.26.3\"][et_pb_image src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/itfbp-header.jpg\" _builder_version=\"3.26.3\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.26.3\" background_color=\"#e02b20\" width=\"1080px\" module_alignment=\"center\" custom_padding=\"10px||0px|||\"][et_pb_row _builder_version=\"3.26.3\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.26.3\" text_font=\"|800|||||||\" text_text_color=\"#ffffff\" header_font=\"|800|||||||\" header_text_color=\"#ffffff\" background_color=\"#e02b20\" z_index_tablet=\"500\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\"]<h1 style=\"text-align: center;\">MOVIE REVIEWS</h1>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.26.3\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" background_color=\"#ffffff\" custom_padding=\"10px|10px||10px|false|false\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.26.3\" z_index_tablet=\"500\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\"]<h3 style=\"text-align: center;\"><strong><em>Serenity</em> (Joss Whedon, 2005, 119 min.)</strong></h3>\n<p>Joss Whedon\'s short-lived <i>Firefly</i> was one of the best science fiction shows ever made. It lasted 14 episodes, three of which never aired. Fox did everything it could to destroy it, airing the episodes out of order before finally pulling the plug. Out of Whedon\'s canon—the other shows being <i>Buffy the Vampire Slayer</i> and its spinoff <i>Angel</i>—<i>Firefly</i> showed the most potential for long-term story arcs and character developments. There were ample signs that Whedon hadn\'t even gotten started on all of the themes he wanted to explore, which is a bad idea if you\'re making a cult television show. The very things that made it a slowly building masterpiece likely doomed it: trigger-happy TV execs didn\'t see it going anywhere, so they offed it. The show had a cult following, though, and perhaps their efforts had something to do with Whedon getting the green light to go ahead on a culmination of sorts. The film has most of the qualities that made the show so wonderful, including the most important one: the feeling that it\'s not enough.</p>\n<p>The film is not perfect: the necessary scenes that clue newcomers in to the story, and the rather abrupt ending, leave a little to be desired. But the film contains sustained, masterful sequences, a surprise plot development that\'s like a kick in the teeth, and a memorable bad guy in Chiwetel Ejiofor. Also, and most importantly, it contains the things that make Joss Whedon\'s creations memorable: the interaction between characters who feel like they\'re real, who have histories that don\'t come across as plot points, who we can imagine existing before and after the film\'s events. There\'s comedy, there\'s tragedy, there\'s emotion, and Whedon is a master at balancing it all.</p>\n<p>Some backstory: it\'s around 500 years in the future, and around six years since the galactic Alliance has put down a rebellion by independent planets. The captain of the spaceship Serenity, Malcolm \"Mal\" Reynolds (Nathan Fillion), and his first mate Zoe (Gina Torres), fought on the side of the rebels. Since the war, they\'ve existed on the periphery, taking legal shipping jobs and illegal smuggling jobs. Slowly, they pieced together a crew: the snarky pilot Wash (Alan Tudyk), who is now Zoe\'s husband; the meatheaded, trigger-happy Jayne (Adam Baldwin); and the genius mechanic Kaylee (Jewel Staite). A little less than a year ago, they picked up Simon (Sean Maher), a doctor, and River (Summer Glau), his psychic/psychotic sister. The Alliance had been performing experiments on River, Simon rescued her, and now they\'re on the run. Although Mal pretends to be a hardened criminal, he has a heroic streak a mile wide, so he and the rest of the crew hide and protect Simon and River, as the Alliance comes closer and closer to finding them. That gets us to the beginning of the film.</p>\n<p>The plot involves a journey to the edge of the galaxy through the territory inhabited by Reavers, horrific men who murder and rape their way through the galaxy, to a mysterious planet where they discover a horrible secret that I wouldn\'t dream of divulging here. In the series, the Alliance sent various bounty hunters and operatives to attempt to kidnap River. Now there\'s someone new coming after her: an unnamed operative (Chiwetel Ejiofor), who has the serenity and sureness of a mad priest. It\'s his job to get River back, and he\'s capable of doing anything it takes to do so, including killing everyone in his path with a scary calm. He\'s doing it all in the name of a future without strife. He\'s scary because he\'s not angry or upset, or happy or eager. He\'s not doing it for reward; he doesn\'t think there\'s any place like him in the future he\'s working toward. I saw strong parallels between him and suicide bombers, except that he\'s sure that he can do more damage for the cause alive than dead.</p>\n<p>The film is Whedon\'s patented genre mash-up: science fiction, westerns, horror, martial arts—there\'s a place for everything in his universe. Sometimes there are gaps in the logic, though: the second language of space is Chinese, which is usually used to curse, but there\'s nary an Asian person to be seen. It\'s a matter of convenience that most of the planets in this galaxy, although \"terraformed,\" look like the dusty sets of a thousand oaters, because what Whedon most wanted to make here is an old-fashioned Western, complete with chases on horses, revolvers (which are space-age because they make electronic sounds before firing), funky 19th-century dress, and a sometimes amusingly anachronistic dialect that favors double negatives. Don\'t think for a minute that Whedon isn\'t chuckling along with us at some of it, though: he\'s one of the best writers of understated comedy and surprise laughs in the business.</p>\n<p>As I said, the ending feels false: it involves a seismic shift in a certain character\'s worldview, one that seems highly unlikely given the way that character was developed up to that point. It\'s a nice thought, a sort of shiny \"the truth will set you free\" twist, but it doesn\'t fit. However, it\'s the only real miscue in the film. Fans of the series will find everything they were hoping for, and people unfamiliar with it will likely find a rousing two hours of old-fashioned entertainment.</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Movie Review: Serenity (2005)','','inherit','closed','closed','','39-revision-v1','','','2019-07-22 00:52:22','2019-07-22 00:52:22','',39,'http://itcamefrombeyondpulp.com/uncategorized/39-revision-v1/',0,'revision','',0),(41,1,'2019-07-22 00:49:38','2019-07-22 00:49:38','[et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" custom_padding=\"0px|||||\" next_background_color=\"#e02b20\"][et_pb_row custom_padding=\"0px||0px|||\" custom_margin=\"|auto|-66px|auto||\" _builder_version=\"3.26.3\"][et_pb_column type=\"4_4\" _builder_version=\"3.26.3\"][et_pb_image src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/itfbp-header.jpg\" _builder_version=\"3.26.3\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" background_color=\"#e02b20\" width=\"1080px\" module_alignment=\"center\" custom_padding=\"10px||0px|||\" prev_background_color=\"#ffffff\"][et_pb_row _builder_version=\"3.26.3\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.26.3\" text_font=\"|800|||||||\" text_text_color=\"#ffffff\" background_color=\"#e02b20\" z_index_tablet=\"500\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" header_font=\"|800|||||||\" header_text_color=\"#ffffff\" text_text_shadow_horizontal_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_vertical_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_blur_strength=\"text_text_shadow_style,%91object Object%93\" link_text_shadow_horizontal_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_vertical_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_blur_strength=\"link_text_shadow_style,%91object Object%93\" ul_text_shadow_horizontal_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_vertical_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_blur_strength=\"ul_text_shadow_style,%91object Object%93\" ol_text_shadow_horizontal_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_vertical_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_blur_strength=\"ol_text_shadow_style,%91object Object%93\" quote_text_shadow_horizontal_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_vertical_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_blur_strength=\"quote_text_shadow_style,%91object Object%93\" header_text_shadow_horizontal_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_vertical_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_blur_strength=\"header_text_shadow_style,%91object Object%93\" header_2_text_shadow_horizontal_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_vertical_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_blur_strength=\"header_2_text_shadow_style,%91object Object%93\" header_3_text_shadow_horizontal_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_vertical_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_blur_strength=\"header_3_text_shadow_style,%91object Object%93\" header_4_text_shadow_horizontal_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_vertical_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_blur_strength=\"header_4_text_shadow_style,%91object Object%93\" header_5_text_shadow_horizontal_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_vertical_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_blur_strength=\"header_5_text_shadow_style,%91object Object%93\" header_6_text_shadow_horizontal_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_vertical_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_blur_strength=\"header_6_text_shadow_style,%91object Object%93\"]\r\n\r\n<h1 style=\"text-align: center;\">MOVIE REVIEW<br /><em>Serenity</em> (2005)</h1>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text _builder_version=\"3.26.3\" text_text_shadow_horizontal_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\"]\r\n\r\n<p><strong><em>Serenity</em> (Joss Whedon, 2005, 119 min.)</strong></p>\r\n<p>Joss Whedon\'s short-lived <i>Firefly</i> was one of the best science fiction shows ever made. It lasted 14 episodes, three of which never aired. Fox did everything it could to destroy it, airing the episodes out of order before finally pulling the plug. Out of Whedon\'s canon—the other shows being <i>Buffy the Vampire Slayer</i> and its spinoff <i>Angel</i>—<i>Firefly</i> showed the most potential for long-term story arcs and character developments. There were ample signs that Whedon hadn\'t even gotten started on all of the themes he wanted to explore, which is a bad idea if you\'re making a cult television show. The very things that made it a slowly building masterpiece likely doomed it: trigger-happy TV execs didn\'t see it going anywhere, so they offed it. The show had a cult following, though, and perhaps their efforts had something to do with Whedon getting the green light to go ahead on a culmination of sorts. The film has most of the qualities that made the show so wonderful, including the most important one: the feeling that it\'s not enough.</p>\r\n<p>The film is not perfect: the necessary scenes that clue newcomers in to the story, and the rather abrupt ending, leave a little to be desired. But the film contains sustained, masterful sequences, a surprise plot development that\'s like a kick in the teeth, and a memorable bad guy in Chiwetel Ejiofor. Also, and most importantly, it contains the things that make Joss Whedon\'s creations memorable: the interaction between characters who feel like they\'re real, who have histories that don\'t come across as plot points, who we can imagine existing before and after the film\'s events. There\'s comedy, there\'s tragedy, there\'s emotion, and Whedon is a master at balancing it all.</p>\r\n<p>Some backstory: it\'s around 500 years in the future, and around six years since the galactic Alliance has put down a rebellion by independent planets. The captain of the spaceship Serenity, Malcolm \"Mal\" Reynolds (Nathan Fillion), and his first mate Zoe (Gina Torres), fought on the side of the rebels. Since the war, they\'ve existed on the periphery, taking legal shipping jobs and illegal smuggling jobs. Slowly, they pieced together a crew: the snarky pilot Wash (Alan Tudyk), who is now Zoe\'s husband; the meatheaded, trigger-happy Jayne (Adam Baldwin); and the genius mechanic Kaylee (Jewel Staite). A little less than a year ago, they picked up Simon (Sean Maher), a doctor, and River (Summer Glau), his psychic/psychotic sister. The Alliance had been performing experiments on River, Simon rescued her, and now they\'re on the run. Although Mal pretends to be a hardened criminal, he has a heroic streak a mile wide, so he and the rest of the crew hide and protect Simon and River, as the Alliance comes closer and closer to finding them. That gets us to the beginning of the film.</p>\r\n<p>The plot involves a journey to the edge of the galaxy through the territory inhabited by Reavers, horrific men who murder and rape their way through the galaxy, to a mysterious planet where they discover a horrible secret that I wouldn\'t dream of divulging here. In the series, the Alliance sent various bounty hunters and operatives to attempt to kidnap River. Now there\'s someone new coming after her: an unnamed operative (Chiwetel Ejiofor), who has the serenity and sureness of a mad priest. It\'s his job to get River back, and he\'s capable of doing anything it takes to do so, including killing everyone in his path with a scary calm. He\'s doing it all in the name of a future without strife. He\'s scary because he\'s not angry or upset, or happy or eager. He\'s not doing it for reward; he doesn\'t think there\'s any place like him in the future he\'s working toward. I saw strong parallels between him and suicide bombers, except that he\'s sure that he can do more damage for the cause alive than dead.</p>\r\n<p>The film is Whedon\'s patented genre mash-up: science fiction, westerns, horror, martial arts—there\'s a place for everything in his universe. Sometimes there are gaps in the logic, though: the second language of space is Chinese, which is usually used to curse, but there\'s nary an Asian person to be seen. It\'s a matter of convenience that most of the planets in this galaxy, although \"terraformed,\" look like the dusty sets of a thousand oaters, because what Whedon most wanted to make here is an old-fashioned Western, complete with chases on horses, revolvers (which are space-age because they make electronic sounds before firing), funky 19th-century dress, and a sometimes amusingly anachronistic dialect that favors double negatives. Don\'t think for a minute that Whedon isn\'t chuckling along with us at some of it, though: he\'s one of the best writers of understated comedy and surprise laughs in the business.</p>\r\n<p>As I said, the ending feels false: it involves a seismic shift in a certain character\'s worldview, one that seems highly unlikely given the way that character was developed up to that point. It\'s a nice thought, a sort of shiny \"the truth will set you free\" twist, but it doesn\'t fit. However, it\'s the only real miscue in the film. Fans of the series will find everything they were hoping for, and people unfamiliar with it will likely find a rousing two hours of old-fashioned entertainment.</p>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Movie Review: Serenity (2005)','','inherit','closed','closed','','39-revision-v1','','','2019-07-22 00:49:38','2019-07-22 00:49:38','',39,'http://itcamefrombeyondpulp.com/uncategorized/39-revision-v1/',0,'revision','',0),(45,1,'2019-07-22 15:41:31','2019-07-22 15:41:31','[et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" custom_padding=\"0px|||||\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" custom_margin=\"||11px|||\" next_background_color=\"#000000\" global_module=\"74\"][et_pb_row global_parent=\"74\" custom_padding=\"0px||0px|||\" custom_margin=\"|auto|-66px|auto||\" _builder_version=\"3.26.3\"][et_pb_column type=\"4_4\" global_parent=\"74\" _builder_version=\"3.26.3\"][et_pb_image global_parent=\"74\" src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/header.jpg\" url=\"http://itcamefrombeyondpulp.com\" _builder_version=\"3.26.3\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.26.3\" width=\"1080px\" width_tablet=\"100%\" width_last_edited=\"on|phone\" module_alignment=\"center\" inner_module_alignment=\"center\" custom_padding=\"0px||0px||false|false\" z_index_tablet=\"500\" hover_enabled=\"0\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" prev_background_color=\"#000000\" next_background_color=\"#e02b20\" global_module=\"175\"][et_pb_fullwidth_menu global_parent=\"175\" menu_id=\"2\" submenu_direction=\"downwards\" fullwidth_menu=\"off\" dropdown_menu_text_color=\"#ffffff\" _builder_version=\"3.26.3\" menu_font=\"|800||on|||||\" menu_text_color=\"#ffffff\" menu_font_size=\"22px\" menu_letter_spacing=\"5px\" background_color=\"#e02b20\" border_width_bottom=\"5px\" text_orientation=\"center\" background_layout=\"dark\" custom_margin=\"0px||||false|false\" custom_padding=\"1px||0px||false|false\" z_index_tablet=\"500\" menu_text_shadow_horizontal_length_tablet=\"0px\" menu_text_shadow_vertical_length_tablet=\"0px\" menu_text_shadow_blur_strength_tablet=\"1px\" border_width_bottom_tablet=\"5px\" border_width_bottom_phone=\"5px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" /][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" background_color=\"#e02b20\" width=\"1080px\" module_alignment=\"center\" custom_padding=\"10px||0px|||\" hover_enabled=\"0\" width_last_edited=\"on|tablet\" width_phone=\"100%\" width_tablet=\"100%\" prev_background_color=\"#ffffff\"][et_pb_row custom_padding=\"10px|10px||\" _builder_version=\"3.26.3\" background_color=\"#ffffff\" border_width_bottom=\"5px\" border_color_bottom=\"#e02b20\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.26.3\" z_index_tablet=\"500\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\"]\r\n\r\n<h1 style=\"text-align: center;\">Movies &amp; TV Reviews</h1>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.26.3\" background_color=\"#ffffff\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" column_structure=\"1_3,1_3,1_3\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.26.3\" z_index_tablet=\"500\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\"]\r\n\r\n<h3 style=\"text-align: center;\">Sci-Fi</h3>\r\n<p style=\"text-align: center;\"><strong><a href=\"http://itcamefrombeyondpulp.com/movies/children-of-men-2006/\">Children of Men (2006)</a><br /></strong><strong><a href=\"http://itcamefrombeyondpulp.com/movies/cloverfield-2008/\">Cloverfield (2008)</a><br /><a href=\"http://itcamefrombeyondpulp.com/movies/the-dark-knight-2008/\">The Dark Knight (2008)</a><br /><a href=\"http://itcamefrombeyondpulp.com/movies/the-fountain-2006/\">The Fountain (2006)</a><br /><a href=\"http://itcamefrombeyondpulp.com/movies/hardware-1990/\">Hardware (1990)</a><br /><a href=\"http://itcamefrombeyondpulp.com/movies/harry-potter-and-the-chamber-of-secrets-2002/\">Harry Potter and the Chamber of Secrets (2002)</a><br /><a href=\"http://itcamefrombeyondpulp.com/movies/harry-potter-and-the-sorcerers-stone-2001/\">Harry Potter and the Sorcerer\'s Stone (2001)</a><br /><a href=\"http://itcamefrombeyondpulp.com/movies/maniac-1934/\">Maniac (1934)</a><br /><a href=\"http://itcamefrombeyondpulp.com/movies/the-phantom-planet-1961/\">The Phantom Planet (1961)</a><br /><a href=\"http://itcamefrombeyondpulp.com/movies/predator-1987/\">Predator (1987)</a><br /></strong><a href=\"http://itcamefrombeyondpulp.com/movies/serenity-2005/\"><strong>Serenity (2005)</strong></a><br /><a href=\"http://itcamefrombeyondpulp.com/movies/x-men-the-last-stand-2006/\"><strong>X-Men: The Last Stand (2006)</strong></a></p>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.26.3\" z_index_tablet=\"500\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" text_text_shadow_horizontal_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_vertical_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_blur_strength=\"text_text_shadow_style,%91object Object%93\" link_text_shadow_horizontal_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_vertical_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_blur_strength=\"link_text_shadow_style,%91object Object%93\" ul_text_shadow_horizontal_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_vertical_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_blur_strength=\"ul_text_shadow_style,%91object Object%93\" ol_text_shadow_horizontal_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_vertical_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_blur_strength=\"ol_text_shadow_style,%91object Object%93\" quote_text_shadow_horizontal_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_vertical_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_blur_strength=\"quote_text_shadow_style,%91object Object%93\" header_text_shadow_horizontal_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_vertical_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_blur_strength=\"header_text_shadow_style,%91object Object%93\" header_2_text_shadow_horizontal_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_vertical_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_blur_strength=\"header_2_text_shadow_style,%91object Object%93\" header_3_text_shadow_horizontal_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_vertical_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_blur_strength=\"header_3_text_shadow_style,%91object Object%93\" header_4_text_shadow_horizontal_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_vertical_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_blur_strength=\"header_4_text_shadow_style,%91object Object%93\" header_5_text_shadow_horizontal_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_vertical_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_blur_strength=\"header_5_text_shadow_style,%91object Object%93\" header_6_text_shadow_horizontal_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_vertical_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_blur_strength=\"header_6_text_shadow_style,%91object Object%93\"]\r\n\r\n<h3 style=\"text-align: center;\">Horror</h3><p style=\"text-align: center;\"><a href=\"http://itcamefrombeyondpulp.com/movies/bloodrayne-2-deliverance-2007/\"><strong>BloodRayne 2: Deliverance (2007)</strong></a><br /><a href=\"http://itcamefrombeyondpulp.com/movies/the-cat-and-the-canary-1927/\"><strong>The Cat and the Canary (1927)</strong></a><br /><a href=\"http://itcamefrombeyondpulp.com/movies/the-children-1980/\"><strong>The Children (1980)</strong></a><br /><strong><a href=\"http://itcamefrombeyondpulp.com/movies/colin-2008/\">Colin (2008)</a></strong><br /><strong><a href=\"http://itcamefrombeyondpulp.com/movies/dark-water-2005/\">Dark Water (2005)</a></strong><br /><strong><a href=\"http://itcamefrombeyondpulp.com/movies/the-devils-daughter-1973/\">The Devil\'s Daughter (1973)</a><br /><a href=\"http://itcamefrombeyondpulp.com/movies/disturbia-2007/\">Disturbia (2007)</a></strong><br /><a href=\"http://itcamefrombeyondpulp.com/movies/masters-of-horror-the-black-cat-2007/\"><strong>Masters of Horror: The Black Cat (2007)</strong></a><br /><a href=\"http://itcamefrombeyondpulp.com/movies/masters-of-horror-dreams-in-the-witch-house-2005/\"><strong>Masters of Horror: Dreams in the Witch-House (2005)</strong></a><br /><a href=\"http://itcamefrombeyondpulp.com/movies/masters-of-horror-homecoming-2005/\"><strong>Masters of Horror: Homecoming (2005)</strong></a></p>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.26.3\" z_index_tablet=\"500\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" text_text_shadow_horizontal_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_vertical_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_blur_strength=\"text_text_shadow_style,%91object Object%93\" link_text_shadow_horizontal_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_vertical_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_blur_strength=\"link_text_shadow_style,%91object Object%93\" ul_text_shadow_horizontal_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_vertical_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_blur_strength=\"ul_text_shadow_style,%91object Object%93\" ol_text_shadow_horizontal_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_vertical_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_blur_strength=\"ol_text_shadow_style,%91object Object%93\" quote_text_shadow_horizontal_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_vertical_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_blur_strength=\"quote_text_shadow_style,%91object Object%93\" header_text_shadow_horizontal_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_vertical_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_blur_strength=\"header_text_shadow_style,%91object Object%93\" header_2_text_shadow_horizontal_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_vertical_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_blur_strength=\"header_2_text_shadow_style,%91object Object%93\" header_3_text_shadow_horizontal_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_vertical_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_blur_strength=\"header_3_text_shadow_style,%91object Object%93\" header_4_text_shadow_horizontal_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_vertical_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_blur_strength=\"header_4_text_shadow_style,%91object Object%93\" header_5_text_shadow_horizontal_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_vertical_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_blur_strength=\"header_5_text_shadow_style,%91object Object%93\" header_6_text_shadow_horizontal_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_vertical_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_blur_strength=\"header_6_text_shadow_style,%91object Object%93\"]\r\n\r\n<h3 style=\"text-align: center;\">Whatnot</h3>\r\n<p style=\"text-align: center;\"><strong><em>Basil Rathbone/Nigel Bruce Sherlock Holmes Films</em></strong></p>\r\n<p style=\"text-align: center;\"><a href=\"http://itcamefrombeyondpulp.com/movies/the-adventures-of-sherlock-holmes-1939/\"><strong>The Adventures of Sherlock Holmes (1939)</strong></a><br /><a href=\"http://itcamefrombeyondpulp.com/movies/the-hound-of-the-baskervilles-1939/\"><strong>The Hound of the Baskervilles (1939)</strong></a><br /><a href=\"http://itcamefrombeyondpulp.com/movies/sherlock-holmes-and-the-voice-of-terror-1942/\"><strong>Sherlock Holmes and the Voice of Terror (1942)</strong></a><br /><strong><a href=\"http://itcamefrombeyondpulp.com/movies/sherlock-holmes-and-the-secret-weapon-1943/\">Sherlock Holmes and the Secret Weapon (1943)</a></strong><br /><strong><a href=\"http://itcamefrombeyondpulp.com/movies/sherlock-holmes-in-washington-1943/\">Sherlock Holmes in Washington (1943)</a><br /><a href=\"http://itcamefrombeyondpulp.com/movies/sherlock-holmes-faces-death-1943/\">Sherlock Holmes Faces Death (1943)</a><br /><a href=\"http://itcamefrombeyondpulp.com/movies/the-scarlet-claw-1944/\">The Scarlet Claw (1944)</a></strong><br /><strong><a href=\"http://itcamefrombeyondpulp.com/movies/the-pearl-of-death-1944/\">The Pearl of Death (1944)</a><br /><a href=\"http://itcamefrombeyondpulp.com/movies/the-spider-woman-1944/\">The Spider Woman (1944)</a></strong><br /><strong><a href=\"http://itcamefrombeyondpulp.com/movies/the-house-of-fear-1945/\">The House of Fear (1945)</a><br /><a href=\"http://itcamefrombeyondpulp.com/movies/the-woman-in-green-1945/\">The Woman in Green (1945)</a></strong><br /><strong><a href=\"http://itcamefrombeyondpulp.com/movies/pursuit-to-algiers-1945/\">Pursuit to Algiers (1945)</a><br /><a href=\"http://itcamefrombeyondpulp.com/movies/terror-by-night-1946/\">Terror by Night (1946)</a></strong><br /><strong><a href=\"http://itcamefrombeyondpulp.com/movies/dressed-to-kill-1946/\">Dressed to Kill (1946)</a></strong></p>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Movies','','publish','closed','closed','','movies','','','2019-08-03 21:53:52','2019-08-03 21:53:52','',0,'http://itcamefrombeyondpulp.com/?page_id=45',0,'page','',0),(46,1,'2019-07-22 12:16:29','2019-07-22 12:16:29','[et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" custom_padding=\"0px|||||\" next_background_color=\"#e02b20\"][et_pb_row custom_padding=\"0px||0px|||\" custom_margin=\"|auto|-66px|auto||\" _builder_version=\"3.26.3\"][et_pb_column type=\"4_4\" _builder_version=\"3.26.3\"][et_pb_image src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/itfbp-header.jpg\" _builder_version=\"3.26.3\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" background_color=\"#e02b20\" width=\"1080px\" module_alignment=\"center\" custom_padding=\"10px||0px|||\" prev_background_color=\"#ffffff\"][et_pb_row _builder_version=\"3.26.3\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.26.3\" text_font=\"|800|||||||\" text_text_color=\"#ffffff\" background_color=\"#e02b20\" z_index_tablet=\"500\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" header_font=\"|800|||||||\" header_text_color=\"#ffffff\" text_text_shadow_horizontal_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_vertical_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_blur_strength=\"text_text_shadow_style,%91object Object%93\" link_text_shadow_horizontal_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_vertical_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_blur_strength=\"link_text_shadow_style,%91object Object%93\" ul_text_shadow_horizontal_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_vertical_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_blur_strength=\"ul_text_shadow_style,%91object Object%93\" ol_text_shadow_horizontal_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_vertical_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_blur_strength=\"ol_text_shadow_style,%91object Object%93\" quote_text_shadow_horizontal_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_vertical_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_blur_strength=\"quote_text_shadow_style,%91object Object%93\" header_text_shadow_horizontal_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_vertical_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_blur_strength=\"header_text_shadow_style,%91object Object%93\" header_2_text_shadow_horizontal_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_vertical_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_blur_strength=\"header_2_text_shadow_style,%91object Object%93\" header_3_text_shadow_horizontal_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_vertical_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_blur_strength=\"header_3_text_shadow_style,%91object Object%93\" header_4_text_shadow_horizontal_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_vertical_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_blur_strength=\"header_4_text_shadow_style,%91object Object%93\" header_5_text_shadow_horizontal_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_vertical_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_blur_strength=\"header_5_text_shadow_style,%91object Object%93\" header_6_text_shadow_horizontal_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_vertical_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_blur_strength=\"header_6_text_shadow_style,%91object Object%93\"]\r\n\r\n<h1 style=\"text-align: center;\">MOVIE REVIEWS</h1>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Movie Reviews','','inherit','closed','closed','','45-revision-v1','','','2019-07-22 12:16:29','2019-07-22 12:16:29','',45,'http://itcamefrombeyondpulp.com/uncategorized/45-revision-v1/',0,'revision','',0),(47,1,'2019-07-22 12:19:00','2019-07-22 12:19:00','[et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" custom_padding=\"0px|||||\" next_background_color=\"#e02b20\"][et_pb_row custom_padding=\"0px||0px|||\" custom_margin=\"|auto|-66px|auto||\" _builder_version=\"3.26.3\"][et_pb_column type=\"4_4\" _builder_version=\"3.26.3\"][et_pb_image src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/itfbp-header.jpg\" _builder_version=\"3.26.3\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" background_color=\"#e02b20\" width=\"1080px\" module_alignment=\"center\" custom_padding=\"10px||0px|||\" prev_background_color=\"#ffffff\"][et_pb_row _builder_version=\"3.26.3\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.26.3\" text_font=\"|800|||||||\" text_text_color=\"#ffffff\" background_color=\"#e02b20\" z_index_tablet=\"500\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" header_font=\"|800|||||||\" header_text_color=\"#ffffff\" text_text_shadow_horizontal_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_vertical_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_blur_strength=\"text_text_shadow_style,%91object Object%93\" link_text_shadow_horizontal_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_vertical_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_blur_strength=\"link_text_shadow_style,%91object Object%93\" ul_text_shadow_horizontal_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_vertical_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_blur_strength=\"ul_text_shadow_style,%91object Object%93\" ol_text_shadow_horizontal_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_vertical_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_blur_strength=\"ol_text_shadow_style,%91object Object%93\" quote_text_shadow_horizontal_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_vertical_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_blur_strength=\"quote_text_shadow_style,%91object Object%93\" header_text_shadow_horizontal_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_vertical_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_blur_strength=\"header_text_shadow_style,%91object Object%93\" header_2_text_shadow_horizontal_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_vertical_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_blur_strength=\"header_2_text_shadow_style,%91object Object%93\" header_3_text_shadow_horizontal_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_vertical_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_blur_strength=\"header_3_text_shadow_style,%91object Object%93\" header_4_text_shadow_horizontal_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_vertical_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_blur_strength=\"header_4_text_shadow_style,%91object Object%93\" header_5_text_shadow_horizontal_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_vertical_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_blur_strength=\"header_5_text_shadow_style,%91object Object%93\" header_6_text_shadow_horizontal_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_vertical_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_blur_strength=\"header_6_text_shadow_style,%91object Object%93\"]\r\n\r\n<h1 style=\"text-align: center;\">MOVIE REVIEWS</h1>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_blog _builder_version=\"3.26.3\" posts_number=\"5\" include_categories=\"6\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" box_shadow_horizontal_image_tablet=\"0px\" box_shadow_vertical_image_tablet=\"0px\" box_shadow_blur_image_tablet=\"40px\" box_shadow_spread_image_tablet=\"0px\" text_shadow_horizontal_length=\"text_shadow_style,%91object Object%93\" text_shadow_horizontal_length_tablet=\"0px\" text_shadow_vertical_length=\"text_shadow_style,%91object Object%93\" text_shadow_vertical_length_tablet=\"0px\" text_shadow_blur_strength=\"text_shadow_style,%91object Object%93\" text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_blur_strength_tablet=\"1px\" body_text_shadow_horizontal_length=\"body_text_shadow_style,%91object Object%93\" body_text_shadow_horizontal_length_tablet=\"0px\" body_text_shadow_vertical_length=\"body_text_shadow_style,%91object Object%93\" body_text_shadow_vertical_length_tablet=\"0px\" body_text_shadow_blur_strength=\"body_text_shadow_style,%91object Object%93\" body_text_shadow_blur_strength_tablet=\"1px\" body_link_text_shadow_horizontal_length=\"body_link_text_shadow_style,%91object Object%93\" body_link_text_shadow_horizontal_length_tablet=\"0px\" body_link_text_shadow_vertical_length=\"body_link_text_shadow_style,%91object Object%93\" body_link_text_shadow_vertical_length_tablet=\"0px\" body_link_text_shadow_blur_strength=\"body_link_text_shadow_style,%91object Object%93\" body_link_text_shadow_blur_strength_tablet=\"1px\" body_ul_text_shadow_horizontal_length=\"body_ul_text_shadow_style,%91object Object%93\" body_ul_text_shadow_horizontal_length_tablet=\"0px\" body_ul_text_shadow_vertical_length=\"body_ul_text_shadow_style,%91object Object%93\" body_ul_text_shadow_vertical_length_tablet=\"0px\" body_ul_text_shadow_blur_strength=\"body_ul_text_shadow_style,%91object Object%93\" body_ul_text_shadow_blur_strength_tablet=\"1px\" body_ol_text_shadow_horizontal_length=\"body_ol_text_shadow_style,%91object Object%93\" body_ol_text_shadow_horizontal_length_tablet=\"0px\" body_ol_text_shadow_vertical_length=\"body_ol_text_shadow_style,%91object Object%93\" body_ol_text_shadow_vertical_length_tablet=\"0px\" body_ol_text_shadow_blur_strength=\"body_ol_text_shadow_style,%91object Object%93\" body_ol_text_shadow_blur_strength_tablet=\"1px\" body_quote_text_shadow_horizontal_length=\"body_quote_text_shadow_style,%91object Object%93\" body_quote_text_shadow_horizontal_length_tablet=\"0px\" body_quote_text_shadow_vertical_length=\"body_quote_text_shadow_style,%91object Object%93\" body_quote_text_shadow_vertical_length_tablet=\"0px\" body_quote_text_shadow_blur_strength=\"body_quote_text_shadow_style,%91object Object%93\" body_quote_text_shadow_blur_strength_tablet=\"1px\" meta_text_shadow_horizontal_length=\"meta_text_shadow_style,%91object Object%93\" meta_text_shadow_horizontal_length_tablet=\"0px\" meta_text_shadow_vertical_length=\"meta_text_shadow_style,%91object Object%93\" meta_text_shadow_vertical_length_tablet=\"0px\" meta_text_shadow_blur_strength=\"meta_text_shadow_style,%91object Object%93\" meta_text_shadow_blur_strength_tablet=\"1px\" read_more_text_shadow_horizontal_length=\"read_more_text_shadow_style,%91object Object%93\" read_more_text_shadow_horizontal_length_tablet=\"0px\" read_more_text_shadow_vertical_length=\"read_more_text_shadow_style,%91object Object%93\" read_more_text_shadow_vertical_length_tablet=\"0px\" read_more_text_shadow_blur_strength=\"read_more_text_shadow_style,%91object Object%93\" read_more_text_shadow_blur_strength_tablet=\"1px\" pagination_text_shadow_horizontal_length=\"pagination_text_shadow_style,%91object Object%93\" pagination_text_shadow_horizontal_length_tablet=\"0px\" pagination_text_shadow_vertical_length=\"pagination_text_shadow_style,%91object Object%93\" pagination_text_shadow_vertical_length_tablet=\"0px\" pagination_text_shadow_blur_strength=\"pagination_text_shadow_style,%91object Object%93\" pagination_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\" /][/et_pb_column][/et_pb_row][/et_pb_section]','Movie Reviews','','inherit','closed','closed','','45-revision-v1','','','2019-07-22 12:19:00','2019-07-22 12:19:00','',45,'http://itcamefrombeyondpulp.com/uncategorized/45-revision-v1/',0,'revision','',0),(48,1,'2019-07-22 12:20:37','2019-07-22 12:20:37','[et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" custom_padding=\"0px|||||\" next_background_color=\"#e02b20\"][et_pb_row custom_padding=\"0px||0px|||\" custom_margin=\"|auto|-66px|auto||\" _builder_version=\"3.26.3\"][et_pb_column type=\"4_4\" _builder_version=\"3.26.3\"][et_pb_image src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/itfbp-header.jpg\" _builder_version=\"3.26.3\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" background_color=\"#e02b20\" width=\"1080px\" module_alignment=\"center\" custom_padding=\"10px||0px|||\" prev_background_color=\"#ffffff\"][et_pb_row _builder_version=\"3.26.3\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.26.3\" text_font=\"|800|||||||\" text_text_color=\"#ffffff\" background_color=\"#e02b20\" z_index_tablet=\"500\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" header_font=\"|800|||||||\" header_text_color=\"#ffffff\" text_text_shadow_horizontal_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_vertical_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_blur_strength=\"text_text_shadow_style,%91object Object%93\" link_text_shadow_horizontal_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_vertical_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_blur_strength=\"link_text_shadow_style,%91object Object%93\" ul_text_shadow_horizontal_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_vertical_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_blur_strength=\"ul_text_shadow_style,%91object Object%93\" ol_text_shadow_horizontal_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_vertical_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_blur_strength=\"ol_text_shadow_style,%91object Object%93\" quote_text_shadow_horizontal_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_vertical_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_blur_strength=\"quote_text_shadow_style,%91object Object%93\" header_text_shadow_horizontal_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_vertical_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_blur_strength=\"header_text_shadow_style,%91object Object%93\" header_2_text_shadow_horizontal_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_vertical_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_blur_strength=\"header_2_text_shadow_style,%91object Object%93\" header_3_text_shadow_horizontal_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_vertical_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_blur_strength=\"header_3_text_shadow_style,%91object Object%93\" header_4_text_shadow_horizontal_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_vertical_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_blur_strength=\"header_4_text_shadow_style,%91object Object%93\" header_5_text_shadow_horizontal_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_vertical_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_blur_strength=\"header_5_text_shadow_style,%91object Object%93\" header_6_text_shadow_horizontal_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_vertical_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_blur_strength=\"header_6_text_shadow_style,%91object Object%93\"]\r\n\r\n<h1 style=\"text-align: center;\">MOVIE REVIEWS</h1>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.26.3\" background_color=\"#ffffff\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\"][et_pb_column type=\"4_4\"][et_pb_blog _builder_version=\"3.26.3\" posts_number=\"5\" include_categories=\"6\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" box_shadow_horizontal_image_tablet=\"0px\" box_shadow_vertical_image_tablet=\"0px\" box_shadow_blur_image_tablet=\"40px\" box_shadow_spread_image_tablet=\"0px\" text_shadow_horizontal_length=\"text_shadow_style,%91object Object%93\" text_shadow_horizontal_length_tablet=\"0px\" text_shadow_vertical_length=\"text_shadow_style,%91object Object%93\" text_shadow_vertical_length_tablet=\"0px\" text_shadow_blur_strength=\"text_shadow_style,%91object Object%93\" text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_blur_strength_tablet=\"1px\" body_text_shadow_horizontal_length=\"body_text_shadow_style,%91object Object%93\" body_text_shadow_horizontal_length_tablet=\"0px\" body_text_shadow_vertical_length=\"body_text_shadow_style,%91object Object%93\" body_text_shadow_vertical_length_tablet=\"0px\" body_text_shadow_blur_strength=\"body_text_shadow_style,%91object Object%93\" body_text_shadow_blur_strength_tablet=\"1px\" body_link_text_shadow_horizontal_length=\"body_link_text_shadow_style,%91object Object%93\" body_link_text_shadow_horizontal_length_tablet=\"0px\" body_link_text_shadow_vertical_length=\"body_link_text_shadow_style,%91object Object%93\" body_link_text_shadow_vertical_length_tablet=\"0px\" body_link_text_shadow_blur_strength=\"body_link_text_shadow_style,%91object Object%93\" body_link_text_shadow_blur_strength_tablet=\"1px\" body_ul_text_shadow_horizontal_length=\"body_ul_text_shadow_style,%91object Object%93\" body_ul_text_shadow_horizontal_length_tablet=\"0px\" body_ul_text_shadow_vertical_length=\"body_ul_text_shadow_style,%91object Object%93\" body_ul_text_shadow_vertical_length_tablet=\"0px\" body_ul_text_shadow_blur_strength=\"body_ul_text_shadow_style,%91object Object%93\" body_ul_text_shadow_blur_strength_tablet=\"1px\" body_ol_text_shadow_horizontal_length=\"body_ol_text_shadow_style,%91object Object%93\" body_ol_text_shadow_horizontal_length_tablet=\"0px\" body_ol_text_shadow_vertical_length=\"body_ol_text_shadow_style,%91object Object%93\" body_ol_text_shadow_vertical_length_tablet=\"0px\" body_ol_text_shadow_blur_strength=\"body_ol_text_shadow_style,%91object Object%93\" body_ol_text_shadow_blur_strength_tablet=\"1px\" body_quote_text_shadow_horizontal_length=\"body_quote_text_shadow_style,%91object Object%93\" body_quote_text_shadow_horizontal_length_tablet=\"0px\" body_quote_text_shadow_vertical_length=\"body_quote_text_shadow_style,%91object Object%93\" body_quote_text_shadow_vertical_length_tablet=\"0px\" body_quote_text_shadow_blur_strength=\"body_quote_text_shadow_style,%91object Object%93\" body_quote_text_shadow_blur_strength_tablet=\"1px\" meta_text_shadow_horizontal_length=\"meta_text_shadow_style,%91object Object%93\" meta_text_shadow_horizontal_length_tablet=\"0px\" meta_text_shadow_vertical_length=\"meta_text_shadow_style,%91object Object%93\" meta_text_shadow_vertical_length_tablet=\"0px\" meta_text_shadow_blur_strength=\"meta_text_shadow_style,%91object Object%93\" meta_text_shadow_blur_strength_tablet=\"1px\" read_more_text_shadow_horizontal_length=\"read_more_text_shadow_style,%91object Object%93\" read_more_text_shadow_horizontal_length_tablet=\"0px\" read_more_text_shadow_vertical_length=\"read_more_text_shadow_style,%91object Object%93\" read_more_text_shadow_vertical_length_tablet=\"0px\" read_more_text_shadow_blur_strength=\"read_more_text_shadow_style,%91object Object%93\" read_more_text_shadow_blur_strength_tablet=\"1px\" pagination_text_shadow_horizontal_length=\"pagination_text_shadow_style,%91object Object%93\" pagination_text_shadow_horizontal_length_tablet=\"0px\" pagination_text_shadow_vertical_length=\"pagination_text_shadow_style,%91object Object%93\" pagination_text_shadow_vertical_length_tablet=\"0px\" pagination_text_shadow_blur_strength=\"pagination_text_shadow_style,%91object Object%93\" pagination_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\" /][/et_pb_column][/et_pb_row][/et_pb_section]','Movie Reviews','','inherit','closed','closed','','45-revision-v1','','','2019-07-22 12:20:37','2019-07-22 12:20:37','',45,'http://itcamefrombeyondpulp.com/uncategorized/45-revision-v1/',0,'revision','',0),(49,1,'2019-07-22 12:21:24','2019-07-22 12:21:24','[et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" custom_padding=\"0px|||||\" next_background_color=\"#e02b20\"][et_pb_row custom_padding=\"0px||0px|||\" custom_margin=\"|auto|-66px|auto||\" _builder_version=\"3.26.3\"][et_pb_column type=\"4_4\" _builder_version=\"3.26.3\"][et_pb_image src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/itfbp-header.jpg\" _builder_version=\"3.26.3\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" background_color=\"#e02b20\" width=\"1080px\" module_alignment=\"center\" custom_padding=\"10px||0px|||\" prev_background_color=\"#ffffff\"][et_pb_row _builder_version=\"3.26.3\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.26.3\" text_font=\"|800|||||||\" text_text_color=\"#ffffff\" background_color=\"#e02b20\" z_index_tablet=\"500\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" header_font=\"|800|||||||\" header_text_color=\"#ffffff\" text_text_shadow_horizontal_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_vertical_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_blur_strength=\"text_text_shadow_style,%91object Object%93\" link_text_shadow_horizontal_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_vertical_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_blur_strength=\"link_text_shadow_style,%91object Object%93\" ul_text_shadow_horizontal_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_vertical_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_blur_strength=\"ul_text_shadow_style,%91object Object%93\" ol_text_shadow_horizontal_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_vertical_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_blur_strength=\"ol_text_shadow_style,%91object Object%93\" quote_text_shadow_horizontal_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_vertical_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_blur_strength=\"quote_text_shadow_style,%91object Object%93\" header_text_shadow_horizontal_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_vertical_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_blur_strength=\"header_text_shadow_style,%91object Object%93\" header_2_text_shadow_horizontal_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_vertical_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_blur_strength=\"header_2_text_shadow_style,%91object Object%93\" header_3_text_shadow_horizontal_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_vertical_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_blur_strength=\"header_3_text_shadow_style,%91object Object%93\" header_4_text_shadow_horizontal_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_vertical_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_blur_strength=\"header_4_text_shadow_style,%91object Object%93\" header_5_text_shadow_horizontal_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_vertical_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_blur_strength=\"header_5_text_shadow_style,%91object Object%93\" header_6_text_shadow_horizontal_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_vertical_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_blur_strength=\"header_6_text_shadow_style,%91object Object%93\"]\r\n\r\n<h1 style=\"text-align: center;\">MOVIE REVIEWS</h1>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.26.3\" background_color=\"#ffffff\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\" custom_padding=\"10px|10px||\"][et_pb_column type=\"4_4\"][et_pb_blog _builder_version=\"3.26.3\" posts_number=\"5\" include_categories=\"6\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" box_shadow_horizontal_image_tablet=\"0px\" box_shadow_vertical_image_tablet=\"0px\" box_shadow_blur_image_tablet=\"40px\" box_shadow_spread_image_tablet=\"0px\" text_shadow_horizontal_length=\"text_shadow_style,%91object Object%93\" text_shadow_horizontal_length_tablet=\"0px\" text_shadow_vertical_length=\"text_shadow_style,%91object Object%93\" text_shadow_vertical_length_tablet=\"0px\" text_shadow_blur_strength=\"text_shadow_style,%91object Object%93\" text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_blur_strength_tablet=\"1px\" body_text_shadow_horizontal_length=\"body_text_shadow_style,%91object Object%93\" body_text_shadow_horizontal_length_tablet=\"0px\" body_text_shadow_vertical_length=\"body_text_shadow_style,%91object Object%93\" body_text_shadow_vertical_length_tablet=\"0px\" body_text_shadow_blur_strength=\"body_text_shadow_style,%91object Object%93\" body_text_shadow_blur_strength_tablet=\"1px\" body_link_text_shadow_horizontal_length=\"body_link_text_shadow_style,%91object Object%93\" body_link_text_shadow_horizontal_length_tablet=\"0px\" body_link_text_shadow_vertical_length=\"body_link_text_shadow_style,%91object Object%93\" body_link_text_shadow_vertical_length_tablet=\"0px\" body_link_text_shadow_blur_strength=\"body_link_text_shadow_style,%91object Object%93\" body_link_text_shadow_blur_strength_tablet=\"1px\" body_ul_text_shadow_horizontal_length=\"body_ul_text_shadow_style,%91object Object%93\" body_ul_text_shadow_horizontal_length_tablet=\"0px\" body_ul_text_shadow_vertical_length=\"body_ul_text_shadow_style,%91object Object%93\" body_ul_text_shadow_vertical_length_tablet=\"0px\" body_ul_text_shadow_blur_strength=\"body_ul_text_shadow_style,%91object Object%93\" body_ul_text_shadow_blur_strength_tablet=\"1px\" body_ol_text_shadow_horizontal_length=\"body_ol_text_shadow_style,%91object Object%93\" body_ol_text_shadow_horizontal_length_tablet=\"0px\" body_ol_text_shadow_vertical_length=\"body_ol_text_shadow_style,%91object Object%93\" body_ol_text_shadow_vertical_length_tablet=\"0px\" body_ol_text_shadow_blur_strength=\"body_ol_text_shadow_style,%91object Object%93\" body_ol_text_shadow_blur_strength_tablet=\"1px\" body_quote_text_shadow_horizontal_length=\"body_quote_text_shadow_style,%91object Object%93\" body_quote_text_shadow_horizontal_length_tablet=\"0px\" body_quote_text_shadow_vertical_length=\"body_quote_text_shadow_style,%91object Object%93\" body_quote_text_shadow_vertical_length_tablet=\"0px\" body_quote_text_shadow_blur_strength=\"body_quote_text_shadow_style,%91object Object%93\" body_quote_text_shadow_blur_strength_tablet=\"1px\" meta_text_shadow_horizontal_length=\"meta_text_shadow_style,%91object Object%93\" meta_text_shadow_horizontal_length_tablet=\"0px\" meta_text_shadow_vertical_length=\"meta_text_shadow_style,%91object Object%93\" meta_text_shadow_vertical_length_tablet=\"0px\" meta_text_shadow_blur_strength=\"meta_text_shadow_style,%91object Object%93\" meta_text_shadow_blur_strength_tablet=\"1px\" read_more_text_shadow_horizontal_length=\"read_more_text_shadow_style,%91object Object%93\" read_more_text_shadow_horizontal_length_tablet=\"0px\" read_more_text_shadow_vertical_length=\"read_more_text_shadow_style,%91object Object%93\" read_more_text_shadow_vertical_length_tablet=\"0px\" read_more_text_shadow_blur_strength=\"read_more_text_shadow_style,%91object Object%93\" read_more_text_shadow_blur_strength_tablet=\"1px\" pagination_text_shadow_horizontal_length=\"pagination_text_shadow_style,%91object Object%93\" pagination_text_shadow_horizontal_length_tablet=\"0px\" pagination_text_shadow_vertical_length=\"pagination_text_shadow_style,%91object Object%93\" pagination_text_shadow_vertical_length_tablet=\"0px\" pagination_text_shadow_blur_strength=\"pagination_text_shadow_style,%91object Object%93\" pagination_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\" /][/et_pb_column][/et_pb_row][/et_pb_section]','Movie Reviews','','inherit','closed','closed','','45-revision-v1','','','2019-07-22 12:21:24','2019-07-22 12:21:24','',45,'http://itcamefrombeyondpulp.com/uncategorized/45-revision-v1/',0,'revision','',0),(50,1,'2019-07-22 15:33:39','2019-07-22 15:33:39','[et_pb_section fb_built=\"1\" _builder_version=\"3.26.3\" custom_padding=\"0px|||||\"][et_pb_row custom_padding=\"0px||0px|||\" custom_margin=\"|auto|-66px|auto||\" _builder_version=\"3.26.3\"][et_pb_column type=\"4_4\" _builder_version=\"3.26.3\"][et_pb_image src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/itfbp-header.jpg\" _builder_version=\"3.26.3\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.26.3\" background_color=\"#e02b20\" width=\"1080px\" module_alignment=\"center\" custom_padding=\"10px||0px|||\"][et_pb_row _builder_version=\"3.26.3\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.26.3\" text_font=\"|800|||||||\" text_text_color=\"#ffffff\" header_font=\"|800|||||||\" header_text_color=\"#ffffff\" background_color=\"#e02b20\" z_index_tablet=\"500\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\"]<h1 style=\"text-align: center;\">MOVIE REVIEWS</h1>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.26.3\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" background_color=\"#ffffff\" custom_padding=\"10px|10px||10px|false|false\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.26.3\" z_index_tablet=\"500\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\"]<h3 style=\"text-align: center;\"><strong><em>Serenity</em> (Joss Whedon, 2005, 119 min.)</strong></h3>\n<p>Joss Whedon\'s short-lived <i>Firefly</i> was one of the best science fiction shows ever made. It lasted 14 episodes, three of which never aired. Fox did everything it could to destroy it, airing the episodes out of order before finally pulling the plug. Out of Whedon\'s canon—the other shows being <i>Buffy the Vampire Slayer</i> and its spinoff <i>Angel</i>—<i>Firefly</i> showed the most potential for long-term story arcs and character developments. There were ample signs that Whedon hadn\'t even gotten started on all of the themes he wanted to explore, which is a bad idea if you\'re making a cult television show. The very things that made it a slowly building masterpiece likely doomed it: trigger-happy TV execs didn\'t see it going anywhere, so they offed it. The show had a cult following, though, and perhaps their efforts had something to do with Whedon getting the green light to go ahead on a culmination of sorts. The film has most of the qualities that made the show so wonderful, including the most important one: the feeling that it\'s not enough.</p>\n<p>The film is not perfect: the necessary scenes that clue newcomers in to the story, and the rather abrupt ending, leave a little to be desired. But the film contains sustained, masterful sequences, a surprise plot development that\'s like a kick in the teeth, and a memorable bad guy in Chiwetel Ejiofor. Also, and most importantly, it contains the things that make Joss Whedon\'s creations memorable: the interaction between characters who feel like they\'re real, who have histories that don\'t come across as plot points, who we can imagine existing before and after the film\'s events. There\'s comedy, there\'s tragedy, there\'s emotion, and Whedon is a master at balancing it all.</p>\n<p>Some backstory: it\'s around 500 years in the future, and around six years since the galactic Alliance has put down a rebellion by independent planets. The captain of the spaceship Serenity, Malcolm \"Mal\" Reynolds (Nathan Fillion), and his first mate Zoe (Gina Torres), fought on the side of the rebels. Since the war, they\'ve existed on the periphery, taking legal shipping jobs and illegal smuggling jobs. Slowly, they pieced together a crew: the snarky pilot Wash (Alan Tudyk), who is now Zoe\'s husband; the meatheaded, trigger-happy Jayne (Adam Baldwin); and the genius mechanic Kaylee (Jewel Staite). A little less than a year ago, they picked up Simon (Sean Maher), a doctor, and River (Summer Glau), his psychic/psychotic sister. The Alliance had been performing experiments on River, Simon rescued her, and now they\'re on the run. Although Mal pretends to be a hardened criminal, he has a heroic streak a mile wide, so he and the rest of the crew hide and protect Simon and River, as the Alliance comes closer and closer to finding them. That gets us to the beginning of the film.</p>\n<p>The plot involves a journey to the edge of the galaxy through the territory inhabited by Reavers, horrific men who murder and rape their way through the galaxy, to a mysterious planet where they discover a horrible secret that I wouldn\'t dream of divulging here. In the series, the Alliance sent various bounty hunters and operatives to attempt to kidnap River. Now there\'s someone new coming after her: an unnamed operative (Chiwetel Ejiofor), who has the serenity and sureness of a mad priest. It\'s his job to get River back, and he\'s capable of doing anything it takes to do so, including killing everyone in his path with a scary calm. He\'s doing it all in the name of a future without strife. He\'s scary because he\'s not angry or upset, or happy or eager. He\'s not doing it for reward; he doesn\'t think there\'s any place like him in the future he\'s working toward. I saw strong parallels between him and suicide bombers, except that he\'s sure that he can do more damage for the cause alive than dead.</p>\n<p>The film is Whedon\'s patented genre mash-up: science fiction, westerns, horror, martial arts—there\'s a place for everything in his universe. Sometimes there are gaps in the logic, though: the second language of space is Chinese, which is usually used to curse, but there\'s nary an Asian person to be seen. It\'s a matter of convenience that most of the planets in this galaxy, although \"terraformed,\" look like the dusty sets of a thousand oaters, because what Whedon most wanted to make here is an old-fashioned Western, complete with chases on horses, revolvers (which are space-age because they make electronic sounds before firing), funky 19th-century dress, and a sometimes amusingly anachronistic dialect that favors double negatives. Don\'t think for a minute that Whedon isn\'t chuckling along with us at some of it, though: he\'s one of the best writers of understated comedy and surprise laughs in the business.</p>\n<p>As I said, the ending feels false: it involves a seismic shift in a certain character\'s worldview, one that seems highly unlikely given the way that character was developed up to that point. It\'s a nice thought, a sort of shiny \"the truth will set you free\" twist, but it doesn\'t fit. However, it\'s the only real miscue in the film. Fans of the series will find everything they were hoping for, and people unfamiliar with it will likely find a rousing two hours of old-fashioned entertainment.</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Serenity (2005)','','inherit','closed','closed','','39-revision-v1','','','2019-07-22 15:33:39','2019-07-22 15:33:39','',39,'http://itcamefrombeyondpulp.com/uncategorized/39-revision-v1/',0,'revision','',0),(51,1,'2019-07-23 02:45:48','2019-07-23 02:45:48','[et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" custom_padding=\"0px|||||\" next_background_color=\"#e02b20\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\" global_module=\"74\"][et_pb_row global_parent=\"74\" custom_padding=\"0px||0px|||\" custom_margin=\"|auto|-66px|auto||\" _builder_version=\"3.26.3\"][et_pb_column type=\"4_4\" global_parent=\"74\" _builder_version=\"3.26.3\"][et_pb_image global_parent=\"74\" src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/itfbp-header.jpg\" _builder_version=\"3.26.3\" url=\"http://itcamefrombeyondpulp.com\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\"]\n\n</p>\n<p>\n\n[/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" background_color=\"#e02b20\" width=\"1080px\" module_alignment=\"center\" custom_padding=\"10px||0px|||\" prev_background_color=\"#ffffff\" border_width_bottom=\"5px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\" border_width_bottom_tablet=\"5px\" border_width_bottom_phone=\"5px\" next_background_color=\"#000000\" global_module=\"97\"][et_pb_row global_parent=\"97\" column_structure=\"1_3,1_3,1_3\" custom_padding=\"0px|0px|0px|0px\" custom_margin=\"0px|0px|0px|0px\" _builder_version=\"3.26.3\" min_height=\"0px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\" module_alignment=\"center\"][et_pb_column type=\"1_3\" global_parent=\"97\" _builder_version=\"3.26.3\"][et_pb_text global_parent=\"97\" _builder_version=\"3.26.3\" header_text_color=\"#ffffff\" z_index_tablet=\"500\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" text_text_shadow_horizontal_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_vertical_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_blur_strength=\"text_text_shadow_style,%91object Object%93\" link_text_shadow_horizontal_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_vertical_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_blur_strength=\"link_text_shadow_style,%91object Object%93\" ul_text_shadow_horizontal_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_vertical_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_blur_strength=\"ul_text_shadow_style,%91object Object%93\" ol_text_shadow_horizontal_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_vertical_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_blur_strength=\"ol_text_shadow_style,%91object Object%93\" quote_text_shadow_horizontal_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_vertical_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_blur_strength=\"quote_text_shadow_style,%91object Object%93\" header_text_shadow_horizontal_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_vertical_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_blur_strength=\"header_text_shadow_style,%91object Object%93\" header_2_text_shadow_horizontal_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_vertical_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_blur_strength=\"header_2_text_shadow_style,%91object Object%93\" header_3_text_shadow_horizontal_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_vertical_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_blur_strength=\"header_3_text_shadow_style,%91object Object%93\" header_4_text_shadow_horizontal_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_vertical_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_blur_strength=\"header_4_text_shadow_style,%91object Object%93\" header_5_text_shadow_horizontal_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_vertical_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_blur_strength=\"header_5_text_shadow_style,%91object Object%93\" header_6_text_shadow_horizontal_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_vertical_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_blur_strength=\"header_6_text_shadow_style,%91object Object%93\"]\n\n</p>\n<h1 style=\"text-align: center;\"><a href=\"http://itcamefrombeyondpulp.com/movies/\"><strong>MOVIES &amp; TV</strong></a></h1>\n<p>\n\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" global_parent=\"97\" _builder_version=\"3.26.3\"][et_pb_text global_parent=\"97\" _builder_version=\"3.26.3\" header_text_color=\"#ffffff\" z_index_tablet=\"500\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" text_text_shadow_horizontal_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_vertical_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_blur_strength=\"text_text_shadow_style,%91object Object%93\" link_text_shadow_horizontal_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_vertical_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_blur_strength=\"link_text_shadow_style,%91object Object%93\" ul_text_shadow_horizontal_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_vertical_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_blur_strength=\"ul_text_shadow_style,%91object Object%93\" ol_text_shadow_horizontal_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_vertical_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_blur_strength=\"ol_text_shadow_style,%91object Object%93\" quote_text_shadow_horizontal_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_vertical_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_blur_strength=\"quote_text_shadow_style,%91object Object%93\" header_text_shadow_horizontal_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_vertical_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_blur_strength=\"header_text_shadow_style,%91object Object%93\" header_2_text_shadow_horizontal_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_vertical_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_blur_strength=\"header_2_text_shadow_style,%91object Object%93\" header_3_text_shadow_horizontal_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_vertical_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_blur_strength=\"header_3_text_shadow_style,%91object Object%93\" header_4_text_shadow_horizontal_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_vertical_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_blur_strength=\"header_4_text_shadow_style,%91object Object%93\" header_5_text_shadow_horizontal_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_vertical_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_blur_strength=\"header_5_text_shadow_style,%91object Object%93\" header_6_text_shadow_horizontal_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_vertical_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_blur_strength=\"header_6_text_shadow_style,%91object Object%93\"]\n\n</p>\n<h1 style=\"text-align: center;\"><a href=\"http://itcamefrombeyondpulp.com/books/\"><strong>BOOKS</strong></a></h1>\n<p>\n\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" global_parent=\"97\" _builder_version=\"3.26.3\"][et_pb_text global_parent=\"97\" _builder_version=\"3.26.3\" header_text_color=\"#ffffff\" z_index_tablet=\"500\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" text_text_shadow_horizontal_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_vertical_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_blur_strength=\"text_text_shadow_style,%91object Object%93\" link_text_shadow_horizontal_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_vertical_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_blur_strength=\"link_text_shadow_style,%91object Object%93\" ul_text_shadow_horizontal_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_vertical_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_blur_strength=\"ul_text_shadow_style,%91object Object%93\" ol_text_shadow_horizontal_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_vertical_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_blur_strength=\"ol_text_shadow_style,%91object Object%93\" quote_text_shadow_horizontal_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_vertical_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_blur_strength=\"quote_text_shadow_style,%91object Object%93\" header_text_shadow_horizontal_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_vertical_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_blur_strength=\"header_text_shadow_style,%91object Object%93\" header_2_text_shadow_horizontal_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_vertical_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_blur_strength=\"header_2_text_shadow_style,%91object Object%93\" header_3_text_shadow_horizontal_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_vertical_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_blur_strength=\"header_3_text_shadow_style,%91object Object%93\" header_4_text_shadow_horizontal_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_vertical_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_blur_strength=\"header_4_text_shadow_style,%91object Object%93\" header_5_text_shadow_horizontal_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_vertical_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_blur_strength=\"header_5_text_shadow_style,%91object Object%93\" header_6_text_shadow_horizontal_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_vertical_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_blur_strength=\"header_6_text_shadow_style,%91object Object%93\"]\n\n</p>\n<h1 style=\"text-align: center;\"><a href=\"http://itcamefrombeyondpulp.com/sales/\"><strong>SALES</strong></a></h1>\n<p>\n\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" background_color=\"#e02b20\" width=\"1080px\" module_alignment=\"center\" custom_padding=\"10px||0px|||\" prev_background_color=\"#000000\"][et_pb_row _builder_version=\"3.26.3\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" background_color=\"#ffffff\" custom_padding=\"10px|10px||10px|false|false\" border_width_bottom=\"5px\" border_color_bottom=\"#e02b20\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image _builder_version=\"3.26.3\" src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/serenity.jpg\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\" /][et_pb_text _builder_version=\"3.26.3\" z_index_tablet=\"500\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\"]\n\n<h3 style=\"text-align: center;\"><strong><em>Serenity</em> (Joss Whedon, 2005, 119 min.)</strong></h3>\n<p>Joss Whedon\'s short-lived <i>Firefly</i> was one of the best science fiction shows ever made. It lasted 14 episodes, three of which never aired. Fox did everything it could to destroy it, airing the episodes out of order before finally pulling the plug. Out of Whedon\'s canon—the other shows being <i>Buffy the Vampire Slayer</i> and its spinoff <i>Angel</i>—<i>Firefly</i> showed the most potential for long-term story arcs and character developments. There were ample signs that Whedon hadn\'t even gotten started on all of the themes he wanted to explore, which is a bad idea if you\'re making a cult television show. The very things that made it a slowly building masterpiece likely doomed it: trigger-happy TV execs didn\'t see it going anywhere, so they offed it. The show had a cult following, though, and perhaps their efforts had something to do with Whedon getting the green light to go ahead on a culmination of sorts. The film has most of the qualities that made the show so wonderful, including the most important one: the feeling that it\'s not enough.</p>\n<p>The film is not perfect: the necessary scenes that clue newcomers in to the story, and the rather abrupt ending, leave a little to be desired. But the film contains sustained, masterful sequences, a surprise plot development that\'s like a kick in the teeth, and a memorable bad guy in Chiwetel Ejiofor. Also, and most importantly, it contains the things that make Joss Whedon\'s creations memorable: the interaction between characters who feel like they\'re real, who have histories that don\'t come across as plot points, who we can imagine existing before and after the film\'s events. There\'s comedy, there\'s tragedy, there\'s emotion, and Whedon is a master at balancing it all.</p>\n<p>Some backstory: it\'s around 500 years in the future, and around six years since the galactic Alliance has put down a rebellion by independent planets. The captain of the spaceship Serenity, Malcolm \"Mal\" Reynolds (Nathan Fillion), and his first mate Zoe (Gina Torres), fought on the side of the rebels. Since the war, they\'ve existed on the periphery, taking legal shipping jobs and illegal smuggling jobs. Slowly, they pieced together a crew: the snarky pilot Wash (Alan Tudyk), who is now Zoe\'s husband; the meatheaded, trigger-happy Jayne (Adam Baldwin); and the genius mechanic Kaylee (Jewel Staite). A little less than a year ago, they picked up Simon (Sean Maher), a doctor, and River (Summer Glau), his psychic/psychotic sister. The Alliance had been performing experiments on River, Simon rescued her, and now they\'re on the run. Although Mal pretends to be a hardened criminal, he has a heroic streak a mile wide, so he and the rest of the crew hide and protect Simon and River, as the Alliance comes closer and closer to finding them. That gets us to the beginning of the film.</p>\n<p>The plot involves a journey to the edge of the galaxy through the territory inhabited by Reavers, horrific men who murder and rape their way through the galaxy, to a mysterious planet where they discover a horrible secret that I wouldn\'t dream of divulging here. In the series, the Alliance sent various bounty hunters and operatives to attempt to kidnap River. Now there\'s someone new coming after her: an unnamed operative (Chiwetel Ejiofor), who has the serenity and sureness of a mad priest. It\'s his job to get River back, and he\'s capable of doing anything it takes to do so, including killing everyone in his path with a scary calm. He\'s doing it all in the name of a future without strife. He\'s scary because he\'s not angry or upset, or happy or eager. He\'s not doing it for reward; he doesn\'t think there\'s any place like him in the future he\'s working toward. I saw strong parallels between him and suicide bombers, except that he\'s sure that he can do more damage for the cause alive than dead.</p>\n<p>The film is Whedon\'s patented genre mash-up: science fiction, westerns, horror, martial arts—there\'s a place for everything in his universe. Sometimes there are gaps in the logic, though: the second language of space is Chinese, which is usually used to curse, but there\'s nary an Asian person to be seen. It\'s a matter of convenience that most of the planets in this galaxy, although \"terraformed,\" look like the dusty sets of a thousand oaters, because what Whedon most wanted to make here is an old-fashioned Western, complete with chases on horses, revolvers (which are space-age because they make electronic sounds before firing), funky 19th-century dress, and a sometimes amusingly anachronistic dialect that favors double negatives. Don\'t think for a minute that Whedon isn\'t chuckling along with us at some of it, though: he\'s one of the best writers of understated comedy and surprise laughs in the business.</p>\n<p>As I said, the ending feels false: it involves a seismic shift in a certain character\'s worldview, one that seems highly unlikely given the way that character was developed up to that point. It\'s a nice thought, a sort of shiny \"the truth will set you free\" twist, but it doesn\'t fit. However, it\'s the only real miscue in the film. Fans of the series will find everything they were hoping for, and people unfamiliar with it will likely find a rousing two hours of old-fashioned entertainment.</p>\n\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Serenity (2005)','Joss Whedon\'s extension of <i>Firefly</i> has everything the show had, including the feeling that it\'s not enough.','inherit','closed','closed','','39-autosave-v1','','','2019-07-23 02:45:48','2019-07-23 02:45:48','',39,'http://itcamefrombeyondpulp.com/uncategorized/39-autosave-v1/',0,'revision','',0),(52,1,'2019-07-22 15:37:07','2019-07-22 15:37:07','','serenity','','inherit','closed','closed','','serenity','','','2019-07-22 15:37:07','2019-07-22 15:37:07','',39,'http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/serenity.jpg',0,'attachment','image/jpeg',0),(53,1,'2019-07-22 15:37:33','2019-07-22 15:37:33','[et_pb_section fb_built=\"1\" _builder_version=\"3.26.3\" custom_padding=\"0px|||||\"][et_pb_row custom_padding=\"0px||0px|||\" custom_margin=\"|auto|-66px|auto||\" _builder_version=\"3.26.3\"][et_pb_column type=\"4_4\" _builder_version=\"3.26.3\"][et_pb_image src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/itfbp-header.jpg\" _builder_version=\"3.26.3\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.26.3\" background_color=\"#e02b20\" width=\"1080px\" module_alignment=\"center\" custom_padding=\"10px||0px|||\"][et_pb_row _builder_version=\"3.26.3\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.26.3\" text_font=\"|800|||||||\" text_text_color=\"#ffffff\" header_font=\"|800|||||||\" header_text_color=\"#ffffff\" background_color=\"#e02b20\" z_index_tablet=\"500\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\"]<h1 style=\"text-align: center;\">MOVIE REVIEWS</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.26.3\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" background_color=\"#ffffff\" custom_padding=\"10px|10px||10px|false|false\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.26.3\" z_index_tablet=\"500\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\"]<h3 style=\"text-align: center;\"><strong><em>Serenity</em> (Joss Whedon, 2005, 119 min.)</strong></h3>\r\n<p>Joss Whedon\'s short-lived <i>Firefly</i> was one of the best science fiction shows ever made. It lasted 14 episodes, three of which never aired. Fox did everything it could to destroy it, airing the episodes out of order before finally pulling the plug. Out of Whedon\'s canon—the other shows being <i>Buffy the Vampire Slayer</i> and its spinoff <i>Angel</i>—<i>Firefly</i> showed the most potential for long-term story arcs and character developments. There were ample signs that Whedon hadn\'t even gotten started on all of the themes he wanted to explore, which is a bad idea if you\'re making a cult television show. The very things that made it a slowly building masterpiece likely doomed it: trigger-happy TV execs didn\'t see it going anywhere, so they offed it. The show had a cult following, though, and perhaps their efforts had something to do with Whedon getting the green light to go ahead on a culmination of sorts. The film has most of the qualities that made the show so wonderful, including the most important one: the feeling that it\'s not enough.</p>\r\n<p>The film is not perfect: the necessary scenes that clue newcomers in to the story, and the rather abrupt ending, leave a little to be desired. But the film contains sustained, masterful sequences, a surprise plot development that\'s like a kick in the teeth, and a memorable bad guy in Chiwetel Ejiofor. Also, and most importantly, it contains the things that make Joss Whedon\'s creations memorable: the interaction between characters who feel like they\'re real, who have histories that don\'t come across as plot points, who we can imagine existing before and after the film\'s events. There\'s comedy, there\'s tragedy, there\'s emotion, and Whedon is a master at balancing it all.</p>\r\n<p>Some backstory: it\'s around 500 years in the future, and around six years since the galactic Alliance has put down a rebellion by independent planets. The captain of the spaceship Serenity, Malcolm \"Mal\" Reynolds (Nathan Fillion), and his first mate Zoe (Gina Torres), fought on the side of the rebels. Since the war, they\'ve existed on the periphery, taking legal shipping jobs and illegal smuggling jobs. Slowly, they pieced together a crew: the snarky pilot Wash (Alan Tudyk), who is now Zoe\'s husband; the meatheaded, trigger-happy Jayne (Adam Baldwin); and the genius mechanic Kaylee (Jewel Staite). A little less than a year ago, they picked up Simon (Sean Maher), a doctor, and River (Summer Glau), his psychic/psychotic sister. The Alliance had been performing experiments on River, Simon rescued her, and now they\'re on the run. Although Mal pretends to be a hardened criminal, he has a heroic streak a mile wide, so he and the rest of the crew hide and protect Simon and River, as the Alliance comes closer and closer to finding them. That gets us to the beginning of the film.</p>\r\n<p>The plot involves a journey to the edge of the galaxy through the territory inhabited by Reavers, horrific men who murder and rape their way through the galaxy, to a mysterious planet where they discover a horrible secret that I wouldn\'t dream of divulging here. In the series, the Alliance sent various bounty hunters and operatives to attempt to kidnap River. Now there\'s someone new coming after her: an unnamed operative (Chiwetel Ejiofor), who has the serenity and sureness of a mad priest. It\'s his job to get River back, and he\'s capable of doing anything it takes to do so, including killing everyone in his path with a scary calm. He\'s doing it all in the name of a future without strife. He\'s scary because he\'s not angry or upset, or happy or eager. He\'s not doing it for reward; he doesn\'t think there\'s any place like him in the future he\'s working toward. I saw strong parallels between him and suicide bombers, except that he\'s sure that he can do more damage for the cause alive than dead.</p>\r\n<p>The film is Whedon\'s patented genre mash-up: science fiction, westerns, horror, martial arts—there\'s a place for everything in his universe. Sometimes there are gaps in the logic, though: the second language of space is Chinese, which is usually used to curse, but there\'s nary an Asian person to be seen. It\'s a matter of convenience that most of the planets in this galaxy, although \"terraformed,\" look like the dusty sets of a thousand oaters, because what Whedon most wanted to make here is an old-fashioned Western, complete with chases on horses, revolvers (which are space-age because they make electronic sounds before firing), funky 19th-century dress, and a sometimes amusingly anachronistic dialect that favors double negatives. Don\'t think for a minute that Whedon isn\'t chuckling along with us at some of it, though: he\'s one of the best writers of understated comedy and surprise laughs in the business.</p>\r\n<p>As I said, the ending feels false: it involves a seismic shift in a certain character\'s worldview, one that seems highly unlikely given the way that character was developed up to that point. It\'s a nice thought, a sort of shiny \"the truth will set you free\" twist, but it doesn\'t fit. However, it\'s the only real miscue in the film. Fans of the series will find everything they were hoping for, and people unfamiliar with it will likely find a rousing two hours of old-fashioned entertainment.</p>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Serenity (2005)','Joss Whedon\'s extension of <i>Firefly</i> has everything the show had, including the feeling that it\'s not enough.','inherit','closed','closed','','39-revision-v1','','','2019-07-22 15:37:33','2019-07-22 15:37:33','',39,'http://itcamefrombeyondpulp.com/uncategorized/39-revision-v1/',0,'revision','',0),(56,1,'2019-07-22 15:47:32','2019-07-22 15:47:32','[et_pb_section fb_built=\"1\" _builder_version=\"3.26.3\" custom_padding=\"0px|||||\"][et_pb_row custom_padding=\"0px||0px|||\" custom_margin=\"|auto|-66px|auto||\" _builder_version=\"3.26.3\"][et_pb_column type=\"4_4\" _builder_version=\"3.26.3\"][et_pb_image src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/itfbp-header.jpg\" _builder_version=\"3.26.3\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.26.3\" background_color=\"#e02b20\" width=\"1080px\" module_alignment=\"center\" custom_padding=\"10px||0px|||\"][et_pb_row column_structure=\"1_3,1_3,1_3\" custom_padding=\"39px|||||\" custom_margin=\"-65px|auto||auto||\" _builder_version=\"3.26.3\" min_height=\"62px\"][et_pb_column type=\"1_3\" _builder_version=\"3.26.3\"][et_pb_text _builder_version=\"3.26.3\" header_text_color=\"#ffffff\" z_index_tablet=\"500\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\"]<h1 style=\"text-align: center;\"><strong>&gt;MOVIE REVIEWS</strong></h1>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.26.3\"][et_pb_text _builder_version=\"3.26.3\" header_text_color=\"#ffffff\"]<h1 style=\"text-align: center;\"><strong>BOOK REVIEWS</strong></h1>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.26.3\"][et_pb_text _builder_version=\"3.26.3\" header_text_color=\"#ffffff\"]<h1 style=\"text-align: center;\"><strong>SALES</strong></h1>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"10px|10px||\" _builder_version=\"3.26.3\" background_color=\"#ffffff\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.26.3\"]<p style=\"text-align: center;\"><a href=\"http://itcamefrombeyondpulp.com/movies/serenity-2005/\"><strong>Serenity (2005)</strong></a></p>\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Movie Reviews','','inherit','closed','closed','','45-revision-v1','','','2019-07-22 15:47:32','2019-07-22 15:47:32','',45,'http://itcamefrombeyondpulp.com/uncategorized/45-revision-v1/',0,'revision','',0),(54,1,'2019-07-22 15:41:31','2019-07-22 15:41:31','[et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" custom_padding=\"0px|||||\" next_background_color=\"#e02b20\"][et_pb_row custom_padding=\"0px||0px|||\" custom_margin=\"|auto|-66px|auto||\" _builder_version=\"3.26.3\"][et_pb_column type=\"4_4\" _builder_version=\"3.26.3\"][et_pb_image src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/itfbp-header.jpg\" _builder_version=\"3.26.3\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" background_color=\"#e02b20\" width=\"1080px\" module_alignment=\"center\" custom_padding=\"10px||0px|||\" prev_background_color=\"#ffffff\"][et_pb_row custom_margin=\"-65px|auto||auto||\" _builder_version=\"3.26.3\" column_structure=\"1_3,1_3,1_3\" min_height=\"62px\" custom_padding=\"39px|||||\"][et_pb_column type=\"1_3\" _builder_version=\"3.26.3\"][et_pb_text _builder_version=\"3.26.3\" header_text_color=\"#ffffff\" text_text_shadow_horizontal_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\"]\r\n\r\n<h1 style=\"text-align: center;\"><strong>&gt;MOVIE REVIEWS</strong></h1>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.26.3\"][et_pb_text _builder_version=\"3.26.3\" header_text_color=\"#ffffff\"]\r\n\r\n<h1 style=\"text-align: center;\"><strong>BOOK REVIEWS</strong></h1>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.26.3\"][et_pb_text _builder_version=\"3.26.3\" header_text_color=\"#ffffff\"]\r\n\r\n<h1 style=\"text-align: center;\"><strong>SALES</strong></h1>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.26.3\" background_color=\"#ffffff\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\" custom_padding=\"10px|10px||\"][et_pb_column type=\"4_4\" custom_padding__hover=\"|||\" custom_padding=\"|||\"][et_pb_blog _builder_version=\"3.26.3\" posts_number=\"5\" include_categories=\"6\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" box_shadow_horizontal_image_tablet=\"0px\" box_shadow_vertical_image_tablet=\"0px\" box_shadow_blur_image_tablet=\"40px\" box_shadow_spread_image_tablet=\"0px\" text_shadow_horizontal_length=\"text_shadow_style,%91object Object%93\" text_shadow_horizontal_length_tablet=\"0px\" text_shadow_vertical_length=\"text_shadow_style,%91object Object%93\" text_shadow_vertical_length_tablet=\"0px\" text_shadow_blur_strength=\"text_shadow_style,%91object Object%93\" text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_blur_strength_tablet=\"1px\" body_text_shadow_horizontal_length=\"body_text_shadow_style,%91object Object%93\" body_text_shadow_horizontal_length_tablet=\"0px\" body_text_shadow_vertical_length=\"body_text_shadow_style,%91object Object%93\" body_text_shadow_vertical_length_tablet=\"0px\" body_text_shadow_blur_strength=\"body_text_shadow_style,%91object Object%93\" body_text_shadow_blur_strength_tablet=\"1px\" body_link_text_shadow_horizontal_length=\"body_link_text_shadow_style,%91object Object%93\" body_link_text_shadow_horizontal_length_tablet=\"0px\" body_link_text_shadow_vertical_length=\"body_link_text_shadow_style,%91object Object%93\" body_link_text_shadow_vertical_length_tablet=\"0px\" body_link_text_shadow_blur_strength=\"body_link_text_shadow_style,%91object Object%93\" body_link_text_shadow_blur_strength_tablet=\"1px\" body_ul_text_shadow_horizontal_length=\"body_ul_text_shadow_style,%91object Object%93\" body_ul_text_shadow_horizontal_length_tablet=\"0px\" body_ul_text_shadow_vertical_length=\"body_ul_text_shadow_style,%91object Object%93\" body_ul_text_shadow_vertical_length_tablet=\"0px\" body_ul_text_shadow_blur_strength=\"body_ul_text_shadow_style,%91object Object%93\" body_ul_text_shadow_blur_strength_tablet=\"1px\" body_ol_text_shadow_horizontal_length=\"body_ol_text_shadow_style,%91object Object%93\" body_ol_text_shadow_horizontal_length_tablet=\"0px\" body_ol_text_shadow_vertical_length=\"body_ol_text_shadow_style,%91object Object%93\" body_ol_text_shadow_vertical_length_tablet=\"0px\" body_ol_text_shadow_blur_strength=\"body_ol_text_shadow_style,%91object Object%93\" body_ol_text_shadow_blur_strength_tablet=\"1px\" body_quote_text_shadow_horizontal_length=\"body_quote_text_shadow_style,%91object Object%93\" body_quote_text_shadow_horizontal_length_tablet=\"0px\" body_quote_text_shadow_vertical_length=\"body_quote_text_shadow_style,%91object Object%93\" body_quote_text_shadow_vertical_length_tablet=\"0px\" body_quote_text_shadow_blur_strength=\"body_quote_text_shadow_style,%91object Object%93\" body_quote_text_shadow_blur_strength_tablet=\"1px\" meta_text_shadow_horizontal_length=\"meta_text_shadow_style,%91object Object%93\" meta_text_shadow_horizontal_length_tablet=\"0px\" meta_text_shadow_vertical_length=\"meta_text_shadow_style,%91object Object%93\" meta_text_shadow_vertical_length_tablet=\"0px\" meta_text_shadow_blur_strength=\"meta_text_shadow_style,%91object Object%93\" meta_text_shadow_blur_strength_tablet=\"1px\" read_more_text_shadow_horizontal_length=\"read_more_text_shadow_style,%91object Object%93\" read_more_text_shadow_horizontal_length_tablet=\"0px\" read_more_text_shadow_vertical_length=\"read_more_text_shadow_style,%91object Object%93\" read_more_text_shadow_vertical_length_tablet=\"0px\" read_more_text_shadow_blur_strength=\"read_more_text_shadow_style,%91object Object%93\" read_more_text_shadow_blur_strength_tablet=\"1px\" pagination_text_shadow_horizontal_length=\"pagination_text_shadow_style,%91object Object%93\" pagination_text_shadow_horizontal_length_tablet=\"0px\" pagination_text_shadow_vertical_length=\"pagination_text_shadow_style,%91object Object%93\" pagination_text_shadow_vertical_length_tablet=\"0px\" pagination_text_shadow_blur_strength=\"pagination_text_shadow_style,%91object Object%93\" pagination_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\" /][/et_pb_column][/et_pb_row][/et_pb_section]','Movie Reviews','','inherit','closed','closed','','45-revision-v1','','','2019-07-22 15:41:31','2019-07-22 15:41:31','',45,'http://itcamefrombeyondpulp.com/uncategorized/45-revision-v1/',0,'revision','',0),(58,1,'2019-07-22 15:51:59','2019-07-22 15:51:59','[et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" custom_padding=\"0px|||||\" next_background_color=\"#e02b20\"][et_pb_row custom_padding=\"0px||0px|||\" custom_margin=\"|auto|-66px|auto||\" _builder_version=\"3.26.3\"][et_pb_column type=\"4_4\" _builder_version=\"3.26.3\"][et_pb_image src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/itfbp-header.jpg\" _builder_version=\"3.26.3\"]\r\n\r\n<br />\r\n\r\n[/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" background_color=\"#e02b20\" width=\"1080px\" module_alignment=\"center\" custom_padding=\"69px||0px|||\" prev_background_color=\"#ffffff\"][et_pb_row custom_margin=\"-65px|auto||auto||\" _builder_version=\"3.26.3\" column_structure=\"1_3,1_3,1_3\" min_height=\"62px\" custom_padding=\"39px|||||\"][et_pb_column type=\"1_3\" _builder_version=\"3.26.3\"][et_pb_text _builder_version=\"3.26.3\" header_text_color=\"#ffffff\" text_text_shadow_horizontal_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\"]\r\n\r\n<h1 style=\"text-align: center;\"><a href=\"http://itcamefrombeyondpulp.com/movie-reviews/\"><strong>MOVIE REVIEWS</strong></a></h1>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.26.3\"][et_pb_text _builder_version=\"3.26.3\" header_text_color=\"#ffffff\" text_text_shadow_horizontal_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\"]\r\n\r\n<h1 style=\"text-align: center;\"><a href=\"http://itcamefrombeyondpulp.com/book-reviews/\"><strong>BOOK REVIEWS</strong></a></h1>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.26.3\"][et_pb_text _builder_version=\"3.26.3\" header_text_color=\"#ffffff\"]\r\n\r\n<h1 style=\"text-align: center;\"><strong>SALES</strong></h1>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','','','inherit','closed','closed','','17-revision-v1','','','2019-07-22 15:51:59','2019-07-22 15:51:59','',17,'http://itcamefrombeyondpulp.com/uncategorized/17-revision-v1/',0,'revision','',0),(59,1,'2019-07-22 15:56:01','2019-07-22 15:56:01','[et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" custom_padding=\"0px|||||\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" custom_margin=\"||11px|||\" next_background_color=\"#000000\" global_module=\"74\"][et_pb_row global_parent=\"74\" custom_padding=\"0px||0px|||\" custom_margin=\"|auto|-66px|auto||\" _builder_version=\"3.26.3\"][et_pb_column type=\"4_4\" global_parent=\"74\" _builder_version=\"3.26.3\"][et_pb_image global_parent=\"74\" src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/header.jpg\" url=\"http://itcamefrombeyondpulp.com\" _builder_version=\"3.26.3\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.26.3\" width=\"1080px\" width_tablet=\"100%\" width_last_edited=\"on|phone\" module_alignment=\"center\" inner_module_alignment=\"center\" custom_padding=\"0px||0px||false|false\" z_index_tablet=\"500\" hover_enabled=\"0\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" prev_background_color=\"#000000\" next_background_color=\"#e02b20\" global_module=\"175\"][et_pb_fullwidth_menu global_parent=\"175\" menu_id=\"2\" submenu_direction=\"downwards\" fullwidth_menu=\"off\" dropdown_menu_text_color=\"#ffffff\" _builder_version=\"3.26.3\" menu_font=\"|800||on|||||\" menu_text_color=\"#ffffff\" menu_font_size=\"22px\" menu_letter_spacing=\"5px\" background_color=\"#e02b20\" border_width_bottom=\"5px\" text_orientation=\"center\" background_layout=\"dark\" custom_margin=\"0px||||false|false\" custom_padding=\"1px||0px||false|false\" z_index_tablet=\"500\" menu_text_shadow_horizontal_length_tablet=\"0px\" menu_text_shadow_vertical_length_tablet=\"0px\" menu_text_shadow_blur_strength_tablet=\"1px\" border_width_bottom_tablet=\"5px\" border_width_bottom_phone=\"5px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" /][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" background_color=\"#e02b20\" width=\"1080px\" module_alignment=\"center\" custom_padding=\"69px||0px|||\" prev_background_color=\"#ffffff\"][et_pb_row _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"2px|||||\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.26.3\" z_index_tablet=\"500\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" background_color=\"#ffffff\" text_text_shadow_horizontal_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_vertical_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_blur_strength=\"text_text_shadow_style,%91object Object%93\" link_text_shadow_horizontal_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_vertical_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_blur_strength=\"link_text_shadow_style,%91object Object%93\" ul_text_shadow_horizontal_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_vertical_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_blur_strength=\"ul_text_shadow_style,%91object Object%93\" ol_text_shadow_horizontal_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_vertical_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_blur_strength=\"ol_text_shadow_style,%91object Object%93\" quote_text_shadow_horizontal_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_vertical_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_blur_strength=\"quote_text_shadow_style,%91object Object%93\" header_text_shadow_horizontal_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_vertical_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_blur_strength=\"header_text_shadow_style,%91object Object%93\" header_2_text_shadow_horizontal_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_vertical_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_blur_strength=\"header_2_text_shadow_style,%91object Object%93\" header_3_text_shadow_horizontal_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_vertical_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_blur_strength=\"header_3_text_shadow_style,%91object Object%93\" header_4_text_shadow_horizontal_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_vertical_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_blur_strength=\"header_4_text_shadow_style,%91object Object%93\" header_5_text_shadow_horizontal_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_vertical_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_blur_strength=\"header_5_text_shadow_style,%91object Object%93\" header_6_text_shadow_horizontal_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_vertical_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_blur_strength=\"header_6_text_shadow_style,%91object Object%93\"]\r\n\r\n<h1 style=\"text-align: center;\">CURRENT SALES</h1>\r\n\r\n[/et_pb_text][et_pb_code _builder_version=\"3.26.3\" z_index_tablet=\"500\" background_color=\"#ffffff\" custom_padding=\"5px|5px|5px|5px\"][ebayfeedsforwordpress feed=\"http://rest.ebay.com/epn/v1/find/item.rss?keyword=book&sortOrder=BestMatch&programid=1&campaignid=5338571822&toolid=10039&listingType1=All&descriptionSearch=true&sellerId1=evil_spoon&feedType=rss&lgeo=1\" items=\"15\"][/et_pb_code][/et_pb_column][/et_pb_row][/et_pb_section]','Sales','','publish','closed','closed','','sales','','','2019-08-19 02:58:23','2019-08-19 02:58:23','',0,'http://itcamefrombeyondpulp.com/?page_id=59',0,'page','',0),(61,1,'2019-07-22 15:57:23','2019-07-22 15:57:23','[et_pb_section fb_built=\"1\" _builder_version=\"3.26.3\" custom_padding=\"0px|||||\"][et_pb_row custom_padding=\"0px||0px|||\" custom_margin=\"|auto|-66px|auto||\" _builder_version=\"3.26.3\"][et_pb_column type=\"4_4\" _builder_version=\"3.26.3\"][et_pb_image src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/itfbp-header.jpg\" _builder_version=\"3.26.3\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.26.3\" background_color=\"#e02b20\" width=\"1080px\" module_alignment=\"center\" custom_padding=\"69px||0px|||\"][et_pb_row column_structure=\"1_3,1_3,1_3\" custom_padding=\"39px|||||\" custom_margin=\"-65px|auto||auto||\" _builder_version=\"3.26.3\" min_height=\"62px\"][et_pb_column type=\"1_3\" _builder_version=\"3.26.3\"][et_pb_text _builder_version=\"3.26.3\" header_text_color=\"#ffffff\" z_index_tablet=\"500\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\"]<h1 style=\"text-align: center;\"><a href=\"http://itcamefrombeyondpulp.com/movie-reviews/\"><strong>MOVIE REVIEWS</strong></a></h1>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.26.3\"][et_pb_text _builder_version=\"3.26.3\" header_text_color=\"#ffffff\" z_index_tablet=\"500\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\"]<h1 style=\"text-align: center;\"><a href=\"http://itcamefrombeyondpulp.com/book-reviews/\"><strong>BOOK REVIEWS</strong></a></h1>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.26.3\"][et_pb_text _builder_version=\"3.26.3\" header_text_color=\"#ffffff\" z_index_tablet=\"500\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\"]<h1 style=\"text-align: center;\"><strong>&gt;SALES</strong></h1>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"2px|||||\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.26.3\" z_index_tablet=\"500\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" background_color=\"#ffffff\"]<h1 style=\"text-align: center;\">COMING SOON</h1>\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Sales','','inherit','closed','closed','','59-revision-v1','','','2019-07-22 15:57:23','2019-07-22 15:57:23','',59,'http://itcamefrombeyondpulp.com/uncategorized/59-revision-v1/',0,'revision','',0),(252,1,'2019-07-25 20:56:21','2019-07-25 20:56:21','[et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" custom_padding=\"0px|||||\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" custom_margin=\"||11px|||\" next_background_color=\"#e02b20\" template_type=\"section\"][et_pb_row custom_padding=\"0px||0px|||\" custom_margin=\"|auto|-66px|auto||\" _builder_version=\"3.26.3\"][et_pb_column type=\"4_4\" _builder_version=\"3.26.3\"][et_pb_image src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/header.jpg\" url=\"http://itcamefrombeyondpulp.com\" _builder_version=\"3.26.3\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" /][/et_pb_column][/et_pb_row][/et_pb_section]','header','','inherit','closed','closed','','74-revision-v1','','','2019-07-25 20:56:21','2019-07-25 20:56:21','',74,'http://itcamefrombeyondpulp.com/uncategorized/74-revision-v1/',0,'revision','',0),(60,1,'2019-07-22 15:56:01','2019-07-22 15:56:01','[et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" custom_padding=\"0px|||||\" next_background_color=\"#e02b20\"][et_pb_row custom_padding=\"0px||0px|||\" custom_margin=\"|auto|-66px|auto||\" _builder_version=\"3.26.3\"][et_pb_column type=\"4_4\" _builder_version=\"3.26.3\"][et_pb_image src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/itfbp-header.jpg\" _builder_version=\"3.26.3\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" background_color=\"#e02b20\" width=\"1080px\" module_alignment=\"center\" custom_padding=\"69px||0px|||\" prev_background_color=\"#ffffff\"][et_pb_row custom_margin=\"-65px|auto||auto||\" _builder_version=\"3.26.3\" column_structure=\"1_3,1_3,1_3\" min_height=\"62px\" custom_padding=\"39px|||||\"][et_pb_column type=\"1_3\" _builder_version=\"3.26.3\"][et_pb_text _builder_version=\"3.26.3\" header_text_color=\"#ffffff\" text_text_shadow_horizontal_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\"]\r\n\r\n<h1 style=\"text-align: center;\"><a href=\"http://itcamefrombeyondpulp.com/movie-reviews/\"><strong>MOVIE REVIEWS</strong></a></h1>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.26.3\"][et_pb_text _builder_version=\"3.26.3\" header_text_color=\"#ffffff\" text_text_shadow_horizontal_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\"]\r\n\r\n<h1 style=\"text-align: center;\"><a href=\"http://itcamefrombeyondpulp.com/book-reviews/\"><strong>BOOK REVIEWS</strong></a></h1>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.26.3\"][et_pb_text _builder_version=\"3.26.3\" header_text_color=\"#ffffff\" text_text_shadow_horizontal_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\"]\r\n\r\n<h1 style=\"text-align: center;\"><strong>&gt;SALES</strong></h1>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text _builder_version=\"3.26.3\" text_text_shadow_horizontal_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\"]\r\n\r\n<h1 style=\"text-align: center;\">COMING SOON</h1>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Sales','','inherit','closed','closed','','59-revision-v1','','','2019-07-22 15:56:01','2019-07-22 15:56:01','',59,'http://itcamefrombeyondpulp.com/uncategorized/59-revision-v1/',0,'revision','',0),(250,1,'2019-07-25 20:53:52','2019-07-25 20:53:52','[et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" custom_padding=\"0px|||||\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" custom_margin=\"||11px|||\" next_background_color=\"#000000\" template_type=\"section\"][et_pb_row custom_padding=\"0px||0px|||\" custom_margin=\"|auto|-66px|auto||\" _builder_version=\"3.26.3\"][et_pb_column type=\"4_4\" _builder_version=\"3.26.3\"][et_pb_image src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/header.jpg\" url=\"http://itcamefrombeyondpulp.com\" _builder_version=\"3.26.3\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" /][/et_pb_column][/et_pb_row][/et_pb_section]','header','','inherit','closed','closed','','74-revision-v1','','','2019-07-25 20:53:52','2019-07-25 20:53:52','',74,'http://itcamefrombeyondpulp.com/uncategorized/74-revision-v1/',0,'revision','',0),(251,1,'2019-07-25 21:03:19','2019-07-25 21:03:19','[et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" custom_padding=\"0px|||||\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" custom_margin=\"||11px|||\" next_background_color=\"#000000\" global_module=\"74\"][et_pb_row global_parent=\"74\" custom_padding=\"0px||0px|||\" custom_margin=\"|auto|-66px|auto||\" _builder_version=\"3.26.3\"][et_pb_column type=\"4_4\" global_parent=\"74\" _builder_version=\"3.26.3\"][et_pb_image global_parent=\"74\" src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/header.jpg\" url=\"http://itcamefrombeyondpulp.com\" _builder_version=\"3.26.3\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.26.3\" width=\"1080px\" inner_module_alignment=\"center\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" module_alignment=\"center\" custom_padding=\"0px||0px||false|false\" next_background_color=\"#e02b20\" global_module=\"175\" prev_background_color=\"#000000\"][et_pb_fullwidth_menu global_parent=\"175\" menu_id=\"2\" submenu_direction=\"downwards\" fullwidth_menu=\"off\" dropdown_menu_text_color=\"#ffffff\" _builder_version=\"3.26.3\" menu_font=\"|800||on|||||\" menu_text_color=\"#ffffff\" menu_font_size=\"22px\" menu_letter_spacing=\"5px\" background_color=\"#e02b20\" border_width_bottom=\"5px\" text_orientation=\"center\" background_layout=\"dark\" custom_padding=\"1px||0px||false|false\" z_index_tablet=\"500\" menu_text_shadow_horizontal_length_tablet=\"0px\" menu_text_shadow_vertical_length_tablet=\"0px\" menu_text_shadow_blur_strength_tablet=\"1px\" border_width_bottom_tablet=\"5px\" border_width_bottom_phone=\"5px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" custom_margin=\"0px||||false|false\" /][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" background_color=\"#e02b20\" width=\"1080px\" module_alignment=\"center\" custom_padding=\"10px||0px|||\" prev_background_color=\"#ffffff\"][et_pb_row _builder_version=\"3.26.3\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" background_color=\"#ffffff\" custom_padding=\"10px|10px||10px|false|false\" border_width_bottom=\"5px\" border_color_bottom=\"#e02b20\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image _builder_version=\"3.26.3\" src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/phantom.jpeg\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\" /][et_pb_text _builder_version=\"3.26.3\" z_index_tablet=\"500\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" text_text_shadow_horizontal_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_vertical_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_blur_strength=\"text_text_shadow_style,%91object Object%93\" link_text_shadow_horizontal_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_vertical_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_blur_strength=\"link_text_shadow_style,%91object Object%93\" ul_text_shadow_horizontal_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_vertical_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_blur_strength=\"ul_text_shadow_style,%91object Object%93\" ol_text_shadow_horizontal_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_vertical_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_blur_strength=\"ol_text_shadow_style,%91object Object%93\" quote_text_shadow_horizontal_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_vertical_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_blur_strength=\"quote_text_shadow_style,%91object Object%93\" header_text_shadow_horizontal_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_vertical_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_blur_strength=\"header_text_shadow_style,%91object Object%93\" header_2_text_shadow_horizontal_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_vertical_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_blur_strength=\"header_2_text_shadow_style,%91object Object%93\" header_3_text_shadow_horizontal_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_vertical_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_blur_strength=\"header_3_text_shadow_style,%91object Object%93\" header_4_text_shadow_horizontal_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_vertical_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_blur_strength=\"header_4_text_shadow_style,%91object Object%93\" header_5_text_shadow_horizontal_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_vertical_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_blur_strength=\"header_5_text_shadow_style,%91object Object%93\" header_6_text_shadow_horizontal_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_vertical_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_blur_strength=\"header_6_text_shadow_style,%91object Object%93\"]\r\n\r\n<h3 style=\"text-align: center;\"><strong><em>The Phantom Planet</em> (William Marshall, 1961, 82 min.)</strong></h3><p>In the year 1980, Pegasus rockets launched from the moon have been disappearing, so the US Government sends a crack team headed by Captain Frank Chapman (Dean Fredericks) to investigate. After a meteor shower (or is it?) disables his ship and kills his copilot, he crash-lands on the titular phantom planet, actually an asteroid that can flit through space and time. Upon breathing the asteroid\'s atmosphere, he shrinks down to HO scale and finds himself the prisoner of the little people who live there.</p><p>Their leader, Sessom (Francis X. Bushman), is happy to explain. They\'ve created a top-secret acceleration device of some sort—much of the film\'s dialog is expended on attempts to explain what, exactly, it is—that gives them the power to move their planet around. But in the wrong hands, it could be used for evil, so although strangers are welcome to become part of the society and even get their choice of hot chicks to shack up with, they\'re not allowed to leave. Also, there\'s a race of evil lizard people called the Solarites who really want the technology; Sessom and co. are holding one of them prisoner behind a force shield, and what could go wrong with that?</p><p>This film has been featured on <i>Mystery Science Theater 3000</i> and countless other bad-movie late-night TV shows; one internet reviewer commented on the host, a \"fat dude in a werewolf mask,\" making farting sounds throughout the film. Look, it\'s not <em>Citizen Kane</em>. There\'s only two or three sets, and some of the acting is wooden (especially Al Jarvis as the judge of the odd court that decides Chapman\'s fate when he arrives). But if you look at it in terms of what it\'s trying to achieve, it\'s actually quite compelling: a little cheaper-looking than average, but perhaps a little smarter. And despite having approximately a buck fifty to spend on effects, special effects whizzes Charles Duncan and Louis DeWitt deserved Oscars for their astounding miniatures and photographic effects, which outclass most big-budget films of the time.</p><p>The cast includes a couple of famous or would-be famous actors in the twilight of their careers. The stunningly beautiful Coleen Gray, who seemed poised for superstardom after early-career performances in <em>Red River</em>, <em>Nightmare Alley</em>, and <em>Kiss of Death</em>, only to have her contract dropped by Fox, still managed to make a few notable noirs like Phil Karlson\'s <em>Kansas City Confidential</em> and Stanley Kubrick\'s <em>The Killing</em>. She seems a little shell-shocked here, perhaps wondering what happened to her career, still statuesque but distracted. Although the handsome Herron (Anthony Dexter) wants her, she sets her dreamy eyes on the newcomer, although her apparent glee in informing him that he can never escape doesn\'t exactly win him over. She\'s upstaged by the mute Zetha (Dolores Faith), whose smoldering screen presence lasts as long as she remains mute, and is certainly aided when she writhes around on her marble bed.</p><p>And the \"King of Movies\" himself, Francis X. Bushman, plays Sessom, the leader of this tiny civilization. He\'s the focus of the film, and he brings every ounce of his gravitas, drawing on what must have been crushing disappointment with a late career that he never envisioned to make Sessom feel almost Shakespearean in his dignity and pathos. He\'s the tiny king who has control over a force that could transform the universe, only he must live as a vagabond to guard it from people who would misuse it, and meanwhile it\'s slowly destroying him and his people. And there are other surprising moments, like the genuine drama when Chapman\'s copilot is killed. Of course that complexity is presented in a bargain-basement setting, one whose limited budget encourages modern viewers—and probably contemporary viewers as well—to ignore its successes in favor of cackling unmercifully at its failures.</p>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','The Phantom Planet (1961)','','publish','closed','closed','','the-phantom-planet-1961','','','2019-07-25 21:03:19','2019-07-25 21:03:19','',0,'http://itcamefrombeyondpulp.com/?p=251',0,'post','',0),(67,1,'2019-07-23 01:05:51','2019-07-23 01:05:51','[et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" custom_padding=\"0px|||||\" next_background_color=\"#e02b20\"][et_pb_row custom_padding=\"0px||0px|||\" custom_margin=\"|auto|-66px|auto||\" _builder_version=\"3.26.3\"][et_pb_column type=\"4_4\" _builder_version=\"3.26.3\"][et_pb_image src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/itfbp-header.jpg\" _builder_version=\"3.26.3\" url=\"itcamefrombeyondpulp.com\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\"]\r\n\r\n<br />\r\n\r\n[/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" background_color=\"#e02b20\" width=\"1080px\" module_alignment=\"center\" custom_padding=\"10px||0px|||\" prev_background_color=\"#ffffff\"][et_pb_row column_structure=\"1_3,1_3,1_3\" custom_padding=\"39px|||||\" custom_margin=\"-65px|auto||auto||\" _builder_version=\"3.26.3\" min_height=\"62px\"][et_pb_column type=\"1_3\" _builder_version=\"3.26.3\"][et_pb_text _builder_version=\"3.26.3\" header_text_color=\"#ffffff\" z_index_tablet=\"500\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" text_text_shadow_horizontal_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_vertical_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_blur_strength=\"text_text_shadow_style,%91object Object%93\" link_text_shadow_horizontal_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_vertical_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_blur_strength=\"link_text_shadow_style,%91object Object%93\" ul_text_shadow_horizontal_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_vertical_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_blur_strength=\"ul_text_shadow_style,%91object Object%93\" ol_text_shadow_horizontal_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_vertical_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_blur_strength=\"ol_text_shadow_style,%91object Object%93\" quote_text_shadow_horizontal_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_vertical_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_blur_strength=\"quote_text_shadow_style,%91object Object%93\" header_text_shadow_horizontal_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_vertical_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_blur_strength=\"header_text_shadow_style,%91object Object%93\" header_2_text_shadow_horizontal_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_vertical_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_blur_strength=\"header_2_text_shadow_style,%91object Object%93\" header_3_text_shadow_horizontal_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_vertical_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_blur_strength=\"header_3_text_shadow_style,%91object Object%93\" header_4_text_shadow_horizontal_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_vertical_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_blur_strength=\"header_4_text_shadow_style,%91object Object%93\" header_5_text_shadow_horizontal_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_vertical_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_blur_strength=\"header_5_text_shadow_style,%91object Object%93\" header_6_text_shadow_horizontal_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_vertical_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_blur_strength=\"header_6_text_shadow_style,%91object Object%93\"]\r\n\r\n<h1 style=\"text-align: center;\"><a href=\"http://itcamefrombeyondpulp.com/movie-reviews/\"><strong>&gt;MOVIES</strong></a></h1>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.26.3\"][et_pb_text _builder_version=\"3.26.3\" header_text_color=\"#ffffff\" z_index_tablet=\"500\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" text_text_shadow_horizontal_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_vertical_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_blur_strength=\"text_text_shadow_style,%91object Object%93\" link_text_shadow_horizontal_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_vertical_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_blur_strength=\"link_text_shadow_style,%91object Object%93\" ul_text_shadow_horizontal_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_vertical_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_blur_strength=\"ul_text_shadow_style,%91object Object%93\" ol_text_shadow_horizontal_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_vertical_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_blur_strength=\"ol_text_shadow_style,%91object Object%93\" quote_text_shadow_horizontal_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_vertical_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_blur_strength=\"quote_text_shadow_style,%91object Object%93\" header_text_shadow_horizontal_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_vertical_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_blur_strength=\"header_text_shadow_style,%91object Object%93\" header_2_text_shadow_horizontal_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_vertical_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_blur_strength=\"header_2_text_shadow_style,%91object Object%93\" header_3_text_shadow_horizontal_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_vertical_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_blur_strength=\"header_3_text_shadow_style,%91object Object%93\" header_4_text_shadow_horizontal_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_vertical_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_blur_strength=\"header_4_text_shadow_style,%91object Object%93\" header_5_text_shadow_horizontal_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_vertical_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_blur_strength=\"header_5_text_shadow_style,%91object Object%93\" header_6_text_shadow_horizontal_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_vertical_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_blur_strength=\"header_6_text_shadow_style,%91object Object%93\"]\r\n\r\n<h1 style=\"text-align: center;\"><a href=\"http://itcamefrombeyondpulp.com/book-reviews/\"><strong>BOOKS</strong></a></h1>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.26.3\"][et_pb_text _builder_version=\"3.26.3\" header_text_color=\"#ffffff\" z_index_tablet=\"500\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" text_text_shadow_horizontal_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_vertical_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_blur_strength=\"text_text_shadow_style,%91object Object%93\" link_text_shadow_horizontal_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_vertical_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_blur_strength=\"link_text_shadow_style,%91object Object%93\" ul_text_shadow_horizontal_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_vertical_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_blur_strength=\"ul_text_shadow_style,%91object Object%93\" ol_text_shadow_horizontal_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_vertical_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_blur_strength=\"ol_text_shadow_style,%91object Object%93\" quote_text_shadow_horizontal_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_vertical_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_blur_strength=\"quote_text_shadow_style,%91object Object%93\" header_text_shadow_horizontal_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_vertical_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_blur_strength=\"header_text_shadow_style,%91object Object%93\" header_2_text_shadow_horizontal_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_vertical_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_blur_strength=\"header_2_text_shadow_style,%91object Object%93\" header_3_text_shadow_horizontal_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_vertical_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_blur_strength=\"header_3_text_shadow_style,%91object Object%93\" header_4_text_shadow_horizontal_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_vertical_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_blur_strength=\"header_4_text_shadow_style,%91object Object%93\" header_5_text_shadow_horizontal_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_vertical_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_blur_strength=\"header_5_text_shadow_style,%91object Object%93\" header_6_text_shadow_horizontal_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_vertical_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_blur_strength=\"header_6_text_shadow_style,%91object Object%93\"]\r\n\r\n<h1 style=\"text-align: center;\"><a href=\"http://itcamefrombeyondpulp.com/sales/\"><strong>SALES</strong></a></h1>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.26.3\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" background_color=\"#ffffff\" custom_padding=\"10px|10px||10px|false|false\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.26.3\" z_index_tablet=\"500\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\"]\r\n\r\n<h3 style=\"text-align: center;\"><strong><em>Serenity</em> (Joss Whedon, 2005, 119 min.)</strong></h3>\r\n<p>Joss Whedon\'s short-lived <i>Firefly</i> was one of the best science fiction shows ever made. It lasted 14 episodes, three of which never aired. Fox did everything it could to destroy it, airing the episodes out of order before finally pulling the plug. Out of Whedon\'s canon—the other shows being <i>Buffy the Vampire Slayer</i> and its spinoff <i>Angel</i>—<i>Firefly</i> showed the most potential for long-term story arcs and character developments. There were ample signs that Whedon hadn\'t even gotten started on all of the themes he wanted to explore, which is a bad idea if you\'re making a cult television show. The very things that made it a slowly building masterpiece likely doomed it: trigger-happy TV execs didn\'t see it going anywhere, so they offed it. The show had a cult following, though, and perhaps their efforts had something to do with Whedon getting the green light to go ahead on a culmination of sorts. The film has most of the qualities that made the show so wonderful, including the most important one: the feeling that it\'s not enough.</p>\r\n<p>The film is not perfect: the necessary scenes that clue newcomers in to the story, and the rather abrupt ending, leave a little to be desired. But the film contains sustained, masterful sequences, a surprise plot development that\'s like a kick in the teeth, and a memorable bad guy in Chiwetel Ejiofor. Also, and most importantly, it contains the things that make Joss Whedon\'s creations memorable: the interaction between characters who feel like they\'re real, who have histories that don\'t come across as plot points, who we can imagine existing before and after the film\'s events. There\'s comedy, there\'s tragedy, there\'s emotion, and Whedon is a master at balancing it all.</p>\r\n<p>Some backstory: it\'s around 500 years in the future, and around six years since the galactic Alliance has put down a rebellion by independent planets. The captain of the spaceship Serenity, Malcolm \"Mal\" Reynolds (Nathan Fillion), and his first mate Zoe (Gina Torres), fought on the side of the rebels. Since the war, they\'ve existed on the periphery, taking legal shipping jobs and illegal smuggling jobs. Slowly, they pieced together a crew: the snarky pilot Wash (Alan Tudyk), who is now Zoe\'s husband; the meatheaded, trigger-happy Jayne (Adam Baldwin); and the genius mechanic Kaylee (Jewel Staite). A little less than a year ago, they picked up Simon (Sean Maher), a doctor, and River (Summer Glau), his psychic/psychotic sister. The Alliance had been performing experiments on River, Simon rescued her, and now they\'re on the run. Although Mal pretends to be a hardened criminal, he has a heroic streak a mile wide, so he and the rest of the crew hide and protect Simon and River, as the Alliance comes closer and closer to finding them. That gets us to the beginning of the film.</p>\r\n<p>The plot involves a journey to the edge of the galaxy through the territory inhabited by Reavers, horrific men who murder and rape their way through the galaxy, to a mysterious planet where they discover a horrible secret that I wouldn\'t dream of divulging here. In the series, the Alliance sent various bounty hunters and operatives to attempt to kidnap River. Now there\'s someone new coming after her: an unnamed operative (Chiwetel Ejiofor), who has the serenity and sureness of a mad priest. It\'s his job to get River back, and he\'s capable of doing anything it takes to do so, including killing everyone in his path with a scary calm. He\'s doing it all in the name of a future without strife. He\'s scary because he\'s not angry or upset, or happy or eager. He\'s not doing it for reward; he doesn\'t think there\'s any place like him in the future he\'s working toward. I saw strong parallels between him and suicide bombers, except that he\'s sure that he can do more damage for the cause alive than dead.</p>\r\n<p>The film is Whedon\'s patented genre mash-up: science fiction, westerns, horror, martial arts—there\'s a place for everything in his universe. Sometimes there are gaps in the logic, though: the second language of space is Chinese, which is usually used to curse, but there\'s nary an Asian person to be seen. It\'s a matter of convenience that most of the planets in this galaxy, although \"terraformed,\" look like the dusty sets of a thousand oaters, because what Whedon most wanted to make here is an old-fashioned Western, complete with chases on horses, revolvers (which are space-age because they make electronic sounds before firing), funky 19th-century dress, and a sometimes amusingly anachronistic dialect that favors double negatives. Don\'t think for a minute that Whedon isn\'t chuckling along with us at some of it, though: he\'s one of the best writers of understated comedy and surprise laughs in the business.</p>\r\n<p>As I said, the ending feels false: it involves a seismic shift in a certain character\'s worldview, one that seems highly unlikely given the way that character was developed up to that point. It\'s a nice thought, a sort of shiny \"the truth will set you free\" twist, but it doesn\'t fit. However, it\'s the only real miscue in the film. Fans of the series will find everything they were hoping for, and people unfamiliar with it will likely find a rousing two hours of old-fashioned entertainment.</p>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Serenity (2005)','Joss Whedon\'s extension of <i>Firefly</i> has everything the show had, including the feeling that it\'s not enough.','inherit','closed','closed','','39-revision-v1','','','2019-07-23 01:05:51','2019-07-23 01:05:51','',39,'http://itcamefrombeyondpulp.com/uncategorized/39-revision-v1/',0,'revision','',0),(69,1,'2019-07-23 01:08:26','2019-07-23 01:08:26','[et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" custom_padding=\"0px|||||\" next_background_color=\"#e02b20\"][et_pb_row custom_padding=\"0px||0px|||\" custom_margin=\"|auto|-66px|auto||\" _builder_version=\"3.26.3\"][et_pb_column type=\"4_4\" _builder_version=\"3.26.3\"][et_pb_image src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/itfbp-header.jpg\" _builder_version=\"3.26.3\" url=\"itcamefrombeyondpulp.com\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\"]\r\n\r\n<p>\r\n</p>\r\n\r\n[/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" background_color=\"#e02b20\" width=\"1080px\" module_alignment=\"center\" custom_padding=\"10px||0px|||\" prev_background_color=\"#ffffff\"][et_pb_row column_structure=\"1_3,1_3,1_3\" custom_padding=\"39px|||||\" custom_margin=\"-65px|auto||auto||\" _builder_version=\"3.26.3\" min_height=\"62px\"][et_pb_column type=\"1_3\" _builder_version=\"3.26.3\"][et_pb_text _builder_version=\"3.26.3\" header_text_color=\"#ffffff\" z_index_tablet=\"500\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" text_text_shadow_horizontal_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_vertical_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_blur_strength=\"text_text_shadow_style,%91object Object%93\" link_text_shadow_horizontal_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_vertical_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_blur_strength=\"link_text_shadow_style,%91object Object%93\" ul_text_shadow_horizontal_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_vertical_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_blur_strength=\"ul_text_shadow_style,%91object Object%93\" ol_text_shadow_horizontal_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_vertical_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_blur_strength=\"ol_text_shadow_style,%91object Object%93\" quote_text_shadow_horizontal_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_vertical_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_blur_strength=\"quote_text_shadow_style,%91object Object%93\" header_text_shadow_horizontal_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_vertical_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_blur_strength=\"header_text_shadow_style,%91object Object%93\" header_2_text_shadow_horizontal_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_vertical_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_blur_strength=\"header_2_text_shadow_style,%91object Object%93\" header_3_text_shadow_horizontal_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_vertical_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_blur_strength=\"header_3_text_shadow_style,%91object Object%93\" header_4_text_shadow_horizontal_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_vertical_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_blur_strength=\"header_4_text_shadow_style,%91object Object%93\" header_5_text_shadow_horizontal_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_vertical_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_blur_strength=\"header_5_text_shadow_style,%91object Object%93\" header_6_text_shadow_horizontal_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_vertical_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_blur_strength=\"header_6_text_shadow_style,%91object Object%93\"]\r\n\r\n<h1 style=\"text-align: center;\"><a href=\"http://itcamefrombeyondpulp.com/movie-reviews/\"><strong>&gt;MOVIES</strong></a></h1>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.26.3\"][et_pb_text _builder_version=\"3.26.3\" header_text_color=\"#ffffff\" z_index_tablet=\"500\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" text_text_shadow_horizontal_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_vertical_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_blur_strength=\"text_text_shadow_style,%91object Object%93\" link_text_shadow_horizontal_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_vertical_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_blur_strength=\"link_text_shadow_style,%91object Object%93\" ul_text_shadow_horizontal_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_vertical_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_blur_strength=\"ul_text_shadow_style,%91object Object%93\" ol_text_shadow_horizontal_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_vertical_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_blur_strength=\"ol_text_shadow_style,%91object Object%93\" quote_text_shadow_horizontal_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_vertical_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_blur_strength=\"quote_text_shadow_style,%91object Object%93\" header_text_shadow_horizontal_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_vertical_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_blur_strength=\"header_text_shadow_style,%91object Object%93\" header_2_text_shadow_horizontal_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_vertical_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_blur_strength=\"header_2_text_shadow_style,%91object Object%93\" header_3_text_shadow_horizontal_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_vertical_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_blur_strength=\"header_3_text_shadow_style,%91object Object%93\" header_4_text_shadow_horizontal_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_vertical_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_blur_strength=\"header_4_text_shadow_style,%91object Object%93\" header_5_text_shadow_horizontal_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_vertical_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_blur_strength=\"header_5_text_shadow_style,%91object Object%93\" header_6_text_shadow_horizontal_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_vertical_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_blur_strength=\"header_6_text_shadow_style,%91object Object%93\"]\r\n\r\n<h1 style=\"text-align: center;\"><a href=\"http://itcamefrombeyondpulp.com/book-reviews/\"><strong>BOOKS</strong></a></h1>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.26.3\"][et_pb_text _builder_version=\"3.26.3\" header_text_color=\"#ffffff\" z_index_tablet=\"500\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" text_text_shadow_horizontal_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_vertical_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_blur_strength=\"text_text_shadow_style,%91object Object%93\" link_text_shadow_horizontal_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_vertical_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_blur_strength=\"link_text_shadow_style,%91object Object%93\" ul_text_shadow_horizontal_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_vertical_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_blur_strength=\"ul_text_shadow_style,%91object Object%93\" ol_text_shadow_horizontal_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_vertical_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_blur_strength=\"ol_text_shadow_style,%91object Object%93\" quote_text_shadow_horizontal_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_vertical_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_blur_strength=\"quote_text_shadow_style,%91object Object%93\" header_text_shadow_horizontal_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_vertical_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_blur_strength=\"header_text_shadow_style,%91object Object%93\" header_2_text_shadow_horizontal_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_vertical_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_blur_strength=\"header_2_text_shadow_style,%91object Object%93\" header_3_text_shadow_horizontal_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_vertical_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_blur_strength=\"header_3_text_shadow_style,%91object Object%93\" header_4_text_shadow_horizontal_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_vertical_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_blur_strength=\"header_4_text_shadow_style,%91object Object%93\" header_5_text_shadow_horizontal_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_vertical_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_blur_strength=\"header_5_text_shadow_style,%91object Object%93\" header_6_text_shadow_horizontal_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_vertical_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_blur_strength=\"header_6_text_shadow_style,%91object Object%93\"]\r\n\r\n<h1 style=\"text-align: center;\"><a href=\"http://itcamefrombeyondpulp.com/sales/\"><strong>SALES</strong></a></h1>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.26.3\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" background_color=\"#ffffff\" custom_padding=\"10px|10px||10px|false|false\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.26.3\" z_index_tablet=\"500\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\"]\r\n\r\n<h3 style=\"text-align: center;\"><strong><em>Serenity</em> (Joss Whedon, 2005, 119 min.)</strong></h3>\r\n<p>Joss Whedon\'s short-lived <i>Firefly</i> was one of the best science fiction shows ever made. It lasted 14 episodes, three of which never aired. Fox did everything it could to destroy it, airing the episodes out of order before finally pulling the plug. Out of Whedon\'s canon—the other shows being <i>Buffy the Vampire Slayer</i> and its spinoff <i>Angel</i>—<i>Firefly</i> showed the most potential for long-term story arcs and character developments. There were ample signs that Whedon hadn\'t even gotten started on all of the themes he wanted to explore, which is a bad idea if you\'re making a cult television show. The very things that made it a slowly building masterpiece likely doomed it: trigger-happy TV execs didn\'t see it going anywhere, so they offed it. The show had a cult following, though, and perhaps their efforts had something to do with Whedon getting the green light to go ahead on a culmination of sorts. The film has most of the qualities that made the show so wonderful, including the most important one: the feeling that it\'s not enough.</p>\r\n<p>The film is not perfect: the necessary scenes that clue newcomers in to the story, and the rather abrupt ending, leave a little to be desired. But the film contains sustained, masterful sequences, a surprise plot development that\'s like a kick in the teeth, and a memorable bad guy in Chiwetel Ejiofor. Also, and most importantly, it contains the things that make Joss Whedon\'s creations memorable: the interaction between characters who feel like they\'re real, who have histories that don\'t come across as plot points, who we can imagine existing before and after the film\'s events. There\'s comedy, there\'s tragedy, there\'s emotion, and Whedon is a master at balancing it all.</p>\r\n<p>Some backstory: it\'s around 500 years in the future, and around six years since the galactic Alliance has put down a rebellion by independent planets. The captain of the spaceship Serenity, Malcolm \"Mal\" Reynolds (Nathan Fillion), and his first mate Zoe (Gina Torres), fought on the side of the rebels. Since the war, they\'ve existed on the periphery, taking legal shipping jobs and illegal smuggling jobs. Slowly, they pieced together a crew: the snarky pilot Wash (Alan Tudyk), who is now Zoe\'s husband; the meatheaded, trigger-happy Jayne (Adam Baldwin); and the genius mechanic Kaylee (Jewel Staite). A little less than a year ago, they picked up Simon (Sean Maher), a doctor, and River (Summer Glau), his psychic/psychotic sister. The Alliance had been performing experiments on River, Simon rescued her, and now they\'re on the run. Although Mal pretends to be a hardened criminal, he has a heroic streak a mile wide, so he and the rest of the crew hide and protect Simon and River, as the Alliance comes closer and closer to finding them. That gets us to the beginning of the film.</p>\r\n<p>The plot involves a journey to the edge of the galaxy through the territory inhabited by Reavers, horrific men who murder and rape their way through the galaxy, to a mysterious planet where they discover a horrible secret that I wouldn\'t dream of divulging here. In the series, the Alliance sent various bounty hunters and operatives to attempt to kidnap River. Now there\'s someone new coming after her: an unnamed operative (Chiwetel Ejiofor), who has the serenity and sureness of a mad priest. It\'s his job to get River back, and he\'s capable of doing anything it takes to do so, including killing everyone in his path with a scary calm. He\'s doing it all in the name of a future without strife. He\'s scary because he\'s not angry or upset, or happy or eager. He\'s not doing it for reward; he doesn\'t think there\'s any place like him in the future he\'s working toward. I saw strong parallels between him and suicide bombers, except that he\'s sure that he can do more damage for the cause alive than dead.</p>\r\n<p>The film is Whedon\'s patented genre mash-up: science fiction, westerns, horror, martial arts—there\'s a place for everything in his universe. Sometimes there are gaps in the logic, though: the second language of space is Chinese, which is usually used to curse, but there\'s nary an Asian person to be seen. It\'s a matter of convenience that most of the planets in this galaxy, although \"terraformed,\" look like the dusty sets of a thousand oaters, because what Whedon most wanted to make here is an old-fashioned Western, complete with chases on horses, revolvers (which are space-age because they make electronic sounds before firing), funky 19th-century dress, and a sometimes amusingly anachronistic dialect that favors double negatives. Don\'t think for a minute that Whedon isn\'t chuckling along with us at some of it, though: he\'s one of the best writers of understated comedy and surprise laughs in the business.</p>\r\n<p>As I said, the ending feels false: it involves a seismic shift in a certain character\'s worldview, one that seems highly unlikely given the way that character was developed up to that point. It\'s a nice thought, a sort of shiny \"the truth will set you free\" twist, but it doesn\'t fit. However, it\'s the only real miscue in the film. Fans of the series will find everything they were hoping for, and people unfamiliar with it will likely find a rousing two hours of old-fashioned entertainment.</p>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Serenity (2005)','Joss Whedon\'s extension of <i>Firefly</i> has everything the show had, including the feeling that it\'s not enough.','inherit','closed','closed','','39-revision-v1','','','2019-07-23 01:08:26','2019-07-23 01:08:26','',39,'http://itcamefrombeyondpulp.com/uncategorized/39-revision-v1/',0,'revision','',0),(203,1,'2019-07-24 21:40:10','2019-07-24 21:40:10','[et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" custom_padding=\"0px|||||\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" custom_margin=\"||11px|||\" next_background_color=\"#000000\" template_type=\"section\"][et_pb_row custom_padding=\"0px||0px|||\" custom_margin=\"|auto|-66px|auto||\" _builder_version=\"3.26.3\"][et_pb_column type=\"4_4\" _builder_version=\"3.26.3\"][et_pb_image src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/itfbp-header.jpg\" url=\"http://itcamefrombeyondpulp.com\" _builder_version=\"3.26.3\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" /][/et_pb_column][/et_pb_row][/et_pb_section]','header','','inherit','closed','closed','','74-revision-v1','','','2019-07-24 21:40:10','2019-07-24 21:40:10','',74,'http://itcamefrombeyondpulp.com/uncategorized/74-revision-v1/',0,'revision','',0),(204,1,'2019-07-28 18:01:20','2019-07-28 18:01:20','[et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" custom_padding=\"0px|||||\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" custom_margin=\"||11px|||\" next_background_color=\"#000000\" global_module=\"74\"][et_pb_row global_parent=\"74\" custom_padding=\"0px||0px|||\" custom_margin=\"|auto|-66px|auto||\" _builder_version=\"3.26.3\"][et_pb_column type=\"4_4\" global_parent=\"74\" _builder_version=\"3.26.3\"][et_pb_image global_parent=\"74\" src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/header.jpg\" url=\"http://itcamefrombeyondpulp.com\" _builder_version=\"3.26.3\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.26.3\" width=\"1080px\" width_tablet=\"100%\" width_last_edited=\"on|phone\" module_alignment=\"center\" inner_module_alignment=\"center\" custom_padding=\"0px||0px||false|false\" z_index_tablet=\"500\" hover_enabled=\"0\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" prev_background_color=\"#000000\" next_background_color=\"#e02b20\" global_module=\"175\"][et_pb_fullwidth_menu global_parent=\"175\" menu_id=\"2\" submenu_direction=\"downwards\" fullwidth_menu=\"off\" dropdown_menu_text_color=\"#ffffff\" _builder_version=\"3.26.3\" menu_font=\"|800||on|||||\" menu_text_color=\"#ffffff\" menu_font_size=\"22px\" menu_letter_spacing=\"5px\" background_color=\"#e02b20\" border_width_bottom=\"5px\" text_orientation=\"center\" background_layout=\"dark\" custom_margin=\"0px||||false|false\" custom_padding=\"1px||0px||false|false\" z_index_tablet=\"500\" menu_text_shadow_horizontal_length_tablet=\"0px\" menu_text_shadow_vertical_length_tablet=\"0px\" menu_text_shadow_blur_strength_tablet=\"1px\" border_width_bottom_tablet=\"5px\" border_width_bottom_phone=\"5px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" /][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" background_color=\"#e02b20\" width=\"1080px\" module_alignment=\"center\" custom_padding=\"69px||0px|||\" prev_background_color=\"#ffffff\"][et_pb_row _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"2px|||||\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.26.3\" z_index_tablet=\"500\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" background_color=\"#ffffff\" text_text_shadow_horizontal_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_vertical_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_blur_strength=\"text_text_shadow_style,%91object Object%93\" link_text_shadow_horizontal_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_vertical_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_blur_strength=\"link_text_shadow_style,%91object Object%93\" ul_text_shadow_horizontal_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_vertical_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_blur_strength=\"ul_text_shadow_style,%91object Object%93\" ol_text_shadow_horizontal_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_vertical_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_blur_strength=\"ol_text_shadow_style,%91object Object%93\" quote_text_shadow_horizontal_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_vertical_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_blur_strength=\"quote_text_shadow_style,%91object Object%93\" header_text_shadow_horizontal_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_vertical_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_blur_strength=\"header_text_shadow_style,%91object Object%93\" header_2_text_shadow_horizontal_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_vertical_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_blur_strength=\"header_2_text_shadow_style,%91object Object%93\" header_3_text_shadow_horizontal_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_vertical_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_blur_strength=\"header_3_text_shadow_style,%91object Object%93\" header_4_text_shadow_horizontal_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_vertical_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_blur_strength=\"header_4_text_shadow_style,%91object Object%93\" header_5_text_shadow_horizontal_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_vertical_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_blur_strength=\"header_5_text_shadow_style,%91object Object%93\" header_6_text_shadow_horizontal_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_vertical_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_blur_strength=\"header_6_text_shadow_style,%91object Object%93\"]\n\n<h1 style=\"text-align: center;\">CURRENT SALES</h1>\n\n[/et_pb_text][et_pb_code _builder_version=\"3.26.3\" z_index_tablet=\"500\" background_color=\"#ffffff\"][ebayfeedsforwordpress feed=\"http://rest.ebay.com/epn/v1/find/item.rss?keyword=good&sortOrder=BestMatch&programid=1&campaignid=5338571822&toolid=10039&listingType1=All&descriptionSearch=true&sellerId1=evil_spoon&feedType=rss&lgeo=1\" items=\"5\"][/et_pb_code][/et_pb_column][/et_pb_row][/et_pb_section]','Sales','','inherit','closed','closed','','59-autosave-v1','','','2019-07-28 18:01:20','2019-07-28 18:01:20','',59,'http://itcamefrombeyondpulp.com/uncategorized/59-autosave-v1/',0,'revision','',0),(71,1,'2019-07-23 02:02:40','2019-07-23 02:02:40','[et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" custom_padding=\"0px|||||\" next_background_color=\"#e02b20\"][et_pb_row custom_padding=\"0px||0px|||\" custom_margin=\"|auto|-66px|auto||\" _builder_version=\"3.26.3\"][et_pb_column type=\"4_4\" _builder_version=\"3.26.3\"][et_pb_image src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/itfbp-header.jpg\" _builder_version=\"3.26.3\"]\r\n\r\n<br />\r\n\r\n[/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" background_color=\"#e02b20\" width=\"1080px\" module_alignment=\"center\" custom_padding=\"69px||0px|||\" prev_background_color=\"#ffffff\"][et_pb_row column_structure=\"1_3,1_3,1_3\" custom_padding=\"39px|||||\" custom_margin=\"-65px|auto||auto||\" _builder_version=\"3.26.3\" min_height=\"62px\"][et_pb_column type=\"1_3\" _builder_version=\"3.26.3\"][et_pb_text _builder_version=\"3.26.3\" header_text_color=\"#ffffff\" z_index_tablet=\"500\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" text_text_shadow_horizontal_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_vertical_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_blur_strength=\"text_text_shadow_style,%91object Object%93\" link_text_shadow_horizontal_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_vertical_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_blur_strength=\"link_text_shadow_style,%91object Object%93\" ul_text_shadow_horizontal_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_vertical_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_blur_strength=\"ul_text_shadow_style,%91object Object%93\" ol_text_shadow_horizontal_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_vertical_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_blur_strength=\"ol_text_shadow_style,%91object Object%93\" quote_text_shadow_horizontal_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_vertical_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_blur_strength=\"quote_text_shadow_style,%91object Object%93\" header_text_shadow_horizontal_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_vertical_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_blur_strength=\"header_text_shadow_style,%91object Object%93\" header_2_text_shadow_horizontal_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_vertical_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_blur_strength=\"header_2_text_shadow_style,%91object Object%93\" header_3_text_shadow_horizontal_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_vertical_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_blur_strength=\"header_3_text_shadow_style,%91object Object%93\" header_4_text_shadow_horizontal_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_vertical_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_blur_strength=\"header_4_text_shadow_style,%91object Object%93\" header_5_text_shadow_horizontal_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_vertical_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_blur_strength=\"header_5_text_shadow_style,%91object Object%93\" header_6_text_shadow_horizontal_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_vertical_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_blur_strength=\"header_6_text_shadow_style,%91object Object%93\"]\r\n\r\n<h1 style=\"text-align: center;\"><a href=\"http://itcamefrombeyondpulp.com/movie-reviews/\"><strong>MOVIES &amp; TV</strong></a></h1>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.26.3\"][et_pb_text _builder_version=\"3.26.3\" header_text_color=\"#ffffff\" z_index_tablet=\"500\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" text_text_shadow_horizontal_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_vertical_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_blur_strength=\"text_text_shadow_style,%91object Object%93\" link_text_shadow_horizontal_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_vertical_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_blur_strength=\"link_text_shadow_style,%91object Object%93\" ul_text_shadow_horizontal_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_vertical_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_blur_strength=\"ul_text_shadow_style,%91object Object%93\" ol_text_shadow_horizontal_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_vertical_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_blur_strength=\"ol_text_shadow_style,%91object Object%93\" quote_text_shadow_horizontal_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_vertical_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_blur_strength=\"quote_text_shadow_style,%91object Object%93\" header_text_shadow_horizontal_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_vertical_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_blur_strength=\"header_text_shadow_style,%91object Object%93\" header_2_text_shadow_horizontal_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_vertical_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_blur_strength=\"header_2_text_shadow_style,%91object Object%93\" header_3_text_shadow_horizontal_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_vertical_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_blur_strength=\"header_3_text_shadow_style,%91object Object%93\" header_4_text_shadow_horizontal_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_vertical_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_blur_strength=\"header_4_text_shadow_style,%91object Object%93\" header_5_text_shadow_horizontal_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_vertical_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_blur_strength=\"header_5_text_shadow_style,%91object Object%93\" header_6_text_shadow_horizontal_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_vertical_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_blur_strength=\"header_6_text_shadow_style,%91object Object%93\"]\r\n\r\n<h1 style=\"text-align: center;\"><a href=\"http://itcamefrombeyondpulp.com/book-reviews/\"><strong>BOOKS</strong></a></h1>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.26.3\"][et_pb_text _builder_version=\"3.26.3\" header_text_color=\"#ffffff\" z_index_tablet=\"500\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\"]\r\n\r\n<h1 style=\"text-align: center;\"><strong>&gt;SALES</strong></h1>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"2px|||||\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.26.3\" z_index_tablet=\"500\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" background_color=\"#ffffff\"]\r\n\r\n<h1 style=\"text-align: center;\">COMING SOON</h1>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Sales','','inherit','closed','closed','','59-revision-v1','','','2019-07-23 02:02:40','2019-07-23 02:02:40','',59,'http://itcamefrombeyondpulp.com/uncategorized/59-revision-v1/',0,'revision','',0),(72,1,'2019-08-19 02:16:51','2019-08-19 02:16:51','[et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" custom_padding=\"0px|||||\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" custom_margin=\"||11px|||\" next_background_color=\"#000000\" global_module=\"74\"][et_pb_row global_parent=\"74\" custom_padding=\"0px||0px|||\" custom_margin=\"|auto|-66px|auto||\" _builder_version=\"3.26.3\"][et_pb_column type=\"4_4\" global_parent=\"74\" _builder_version=\"3.26.3\"][et_pb_image global_parent=\"74\" src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/header.jpg\" url=\"http://itcamefrombeyondpulp.com\" _builder_version=\"3.26.3\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.26.3\" width=\"1080px\" width_tablet=\"100%\" width_last_edited=\"on|phone\" module_alignment=\"center\" inner_module_alignment=\"center\" custom_padding=\"0px||0px||false|false\" z_index_tablet=\"500\" hover_enabled=\"0\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" prev_background_color=\"#000000\" next_background_color=\"#e02b20\" global_module=\"175\"][et_pb_fullwidth_menu global_parent=\"175\" menu_id=\"2\" submenu_direction=\"downwards\" fullwidth_menu=\"off\" dropdown_menu_text_color=\"#ffffff\" _builder_version=\"3.26.3\" menu_font=\"|800||on|||||\" menu_text_color=\"#ffffff\" menu_font_size=\"22px\" menu_letter_spacing=\"5px\" background_color=\"#e02b20\" border_width_bottom=\"5px\" text_orientation=\"center\" background_layout=\"dark\" custom_margin=\"0px||||false|false\" custom_padding=\"1px||0px||false|false\" z_index_tablet=\"500\" menu_text_shadow_horizontal_length_tablet=\"0px\" menu_text_shadow_vertical_length_tablet=\"0px\" menu_text_shadow_blur_strength_tablet=\"1px\" border_width_bottom_tablet=\"5px\" border_width_bottom_phone=\"5px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" /][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" background_color=\"#e02b20\" width=\"1080px\" module_alignment=\"center\" custom_padding=\"10px||0px|||\" prev_background_color=\"#ffffff\"][et_pb_row custom_padding=\"10px|10px||\" _builder_version=\"3.26.3\" background_color=\"#ffffff\" border_width_bottom=\"5px\" border_color_bottom=\"#e02b20\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.26.3\" z_index_tablet=\"500\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" text_text_shadow_horizontal_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_vertical_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_blur_strength=\"text_text_shadow_style,%91object Object%93\" link_text_shadow_horizontal_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_vertical_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_blur_strength=\"link_text_shadow_style,%91object Object%93\" ul_text_shadow_horizontal_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_vertical_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_blur_strength=\"ul_text_shadow_style,%91object Object%93\" ol_text_shadow_horizontal_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_vertical_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_blur_strength=\"ol_text_shadow_style,%91object Object%93\" quote_text_shadow_horizontal_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_vertical_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_blur_strength=\"quote_text_shadow_style,%91object Object%93\" header_text_shadow_horizontal_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_vertical_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_blur_strength=\"header_text_shadow_style,%91object Object%93\" header_2_text_shadow_horizontal_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_vertical_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_blur_strength=\"header_2_text_shadow_style,%91object Object%93\" header_3_text_shadow_horizontal_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_vertical_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_blur_strength=\"header_3_text_shadow_style,%91object Object%93\" header_4_text_shadow_horizontal_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_vertical_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_blur_strength=\"header_4_text_shadow_style,%91object Object%93\" header_5_text_shadow_horizontal_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_vertical_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_blur_strength=\"header_5_text_shadow_style,%91object Object%93\" header_6_text_shadow_horizontal_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_vertical_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_blur_strength=\"header_6_text_shadow_style,%91object Object%93\"]\n\n<h1 style=\"text-align: center;\">Book Reviews</h1>\n\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.26.3\" background_color=\"#ffffff\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\" border_width_bottom=\"5px\" border_color_bottom=\"#e02b20\"][et_pb_column type=\"1_3\" custom_padding__hover=\"|||\" custom_padding=\"|||\"][et_pb_text _builder_version=\"3.26.3\" text_text_shadow_horizontal_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\"]\n\n<h3 style=\"text-align: center;\"><strong>Sci-Fi/Fantasy</strong></h3>\n<p style=\"text-align: center;\"><a href=\"http://itcamefrombeyondpulp.com/books/the-fallen-country-1986/\"><strong>The Fallen Country</strong></a><br /><strong>(Somtow Sucharitkul, 1986)<br /><a href=\"http://itcamefrombeyondpulp.com/books/the-dancer-from-atlantis-1972/\">The Dancer from Atlantis</a><br />(Poul Anderson, 1972)</strong></p>\n\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" custom_padding__hover=\"|||\" custom_padding=\"|||\"][et_pb_text _builder_version=\"3.26.3\" text_text_shadow_horizontal_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\"]\n\n<h3 style=\"text-align: center;\"><strong>Horror</strong></h3>\n\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" custom_padding__hover=\"|||\" custom_padding=\"|||\"][et_pb_text _builder_version=\"3.26.3\" text_text_shadow_horizontal_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\"]\n\n<h3 style=\"text-align: center;\"><strong>Whatnot</strong></h3>\n\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Books','','inherit','closed','closed','','33-autosave-v1','','','2019-08-19 02:16:51','2019-08-19 02:16:51','',33,'http://itcamefrombeyondpulp.com/uncategorized/33-autosave-v1/',0,'revision','',0),(205,1,'2019-07-24 21:48:49','2019-07-24 21:48:49','','header','','inherit','closed','closed','','header-2','','','2019-07-24 21:48:49','2019-07-24 21:48:49','',74,'http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/header.jpg',0,'attachment','image/jpeg',0),(206,1,'2019-07-24 21:49:01','2019-07-24 21:49:01','[et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" custom_padding=\"0px|||||\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" custom_margin=\"||11px|||\" template_type=\"section\"][et_pb_row custom_padding=\"0px||0px|||\" custom_margin=\"|auto|-66px|auto||\" _builder_version=\"3.26.3\"][et_pb_column type=\"4_4\" _builder_version=\"3.26.3\"][et_pb_image src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/header.jpg\" url=\"http://itcamefrombeyondpulp.com\" _builder_version=\"3.26.3\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" /][/et_pb_column][/et_pb_row][/et_pb_section]','header','','inherit','closed','closed','','74-revision-v1','','','2019-07-24 21:49:01','2019-07-24 21:49:01','',74,'http://itcamefrombeyondpulp.com/uncategorized/74-revision-v1/',0,'revision','',0),(208,1,'2019-07-24 21:50:21','2019-07-24 21:50:21','[et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" custom_padding=\"0px|||||\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" custom_margin=\"||11px|||\" next_background_color=\"#000000\" template_type=\"section\"][et_pb_row custom_padding=\"0px||0px|||\" custom_margin=\"|auto|-66px|auto||\" _builder_version=\"3.26.3\"][et_pb_column type=\"4_4\" _builder_version=\"3.26.3\"][et_pb_image src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/header.jpg\" url=\"http://itcamefrombeyondpulp.com\" _builder_version=\"3.26.3\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" /][/et_pb_column][/et_pb_row][/et_pb_section]','header','','inherit','closed','closed','','74-revision-v1','','','2019-07-24 21:50:21','2019-07-24 21:50:21','',74,'http://itcamefrombeyondpulp.com/uncategorized/74-revision-v1/',0,'revision','',0),(199,1,'2019-07-24 21:38:11','2019-07-24 21:38:11','[et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" custom_padding=\"0px|||||\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" custom_margin=\"||11px|||\" next_background_color=\"#000000\" template_type=\"section\"][et_pb_row custom_padding=\"0px||0px|||\" custom_margin=\"|auto|-66px|auto||\" _builder_version=\"3.26.3\"][et_pb_column type=\"4_4\" _builder_version=\"3.26.3\"][et_pb_image src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/itfbp-header.jpg\" url=\"http://itcamefrombeyondpulp.com\" _builder_version=\"3.26.3\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" /][/et_pb_column][/et_pb_row][/et_pb_section]','header','','inherit','closed','closed','','74-revision-v1','','','2019-07-24 21:38:11','2019-07-24 21:38:11','',74,'http://itcamefrombeyondpulp.com/uncategorized/74-revision-v1/',0,'revision','',0),(207,1,'2019-07-24 21:50:21','2019-07-24 21:50:21','[et_pb_section bb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.26.3\" width=\"1080px\" inner_module_alignment=\"center\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" module_alignment=\"center\" custom_padding=\"0px||0px||false|false\" prev_background_color=\"#000000\" template_type=\"section\"][et_pb_fullwidth_menu menu_id=\"2\" submenu_direction=\"downwards\" fullwidth_menu=\"off\" dropdown_menu_text_color=\"#ffffff\" _builder_version=\"3.26.3\" menu_font=\"|800||on|||||\" menu_text_color=\"#ffffff\" menu_font_size=\"22px\" menu_letter_spacing=\"5px\" background_color=\"#e02b20\" border_width_bottom=\"5px\" text_orientation=\"center\" background_layout=\"dark\" custom_padding=\"1px||0px||false|false\" z_index_tablet=\"500\" menu_text_shadow_horizontal_length_tablet=\"0px\" menu_text_shadow_vertical_length_tablet=\"0px\" menu_text_shadow_blur_strength_tablet=\"1px\" border_width_bottom_tablet=\"5px\" border_width_bottom_phone=\"5px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" custom_margin=\"0px||||false|false\" /][/et_pb_section]','nav bar','','inherit','closed','closed','','175-revision-v1','','','2019-07-24 21:50:21','2019-07-24 21:50:21','',175,'http://itcamefrombeyondpulp.com/uncategorized/175-revision-v1/',0,'revision','',0),(200,1,'2019-07-24 21:38:11','2019-07-24 21:38:11','[et_pb_section bb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.26.3\" width=\"1080px\" inner_module_alignment=\"center\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" module_alignment=\"center\" custom_padding=\"0px||0px||false|false\" prev_background_color=\"#000000\" next_background_color=\"#e02b20\" template_type=\"section\"][et_pb_fullwidth_menu menu_id=\"2\" submenu_direction=\"downwards\" fullwidth_menu=\"off\" dropdown_menu_text_color=\"#ffffff\" _builder_version=\"3.26.3\" menu_font=\"|800||on|||||\" menu_text_color=\"#ffffff\" menu_font_size=\"22px\" menu_letter_spacing=\"5px\" background_color=\"#e02b20\" border_width_bottom=\"5px\" text_orientation=\"center\" background_layout=\"dark\" custom_padding=\"1px||0px||false|false\" z_index_tablet=\"500\" menu_text_shadow_horizontal_length_tablet=\"0px\" menu_text_shadow_vertical_length_tablet=\"0px\" menu_text_shadow_blur_strength_tablet=\"1px\" border_width_bottom_tablet=\"5px\" border_width_bottom_phone=\"5px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" custom_margin=\"0px||||false|false\" /][/et_pb_section]','nav bar','','inherit','closed','closed','','175-revision-v1','','','2019-07-24 21:38:11','2019-07-24 21:38:11','',175,'http://itcamefrombeyondpulp.com/uncategorized/175-revision-v1/',0,'revision','',0),(73,1,'2019-07-23 02:05:48','2019-07-23 02:05:48','[et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" custom_padding=\"0px|||||\" next_background_color=\"#e02b20\"][et_pb_row custom_padding=\"0px||0px|||\" custom_margin=\"|auto|-66px|auto||\" _builder_version=\"3.26.3\"][et_pb_column type=\"4_4\" _builder_version=\"3.26.3\"][et_pb_image src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/itfbp-header.jpg\" _builder_version=\"3.26.3\" url=\"itcamefrombeyondpulp.com\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\"]\r\n\r\n<br />\r\n\r\n[/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" background_color=\"#e02b20\" width=\"1080px\" module_alignment=\"center\" custom_padding=\"10px||0px|||\" prev_background_color=\"#ffffff\"][et_pb_row column_structure=\"1_3,1_3,1_3\" custom_padding=\"39px|||||\" custom_margin=\"-65px|auto||auto||\" _builder_version=\"3.26.3\" min_height=\"62px\"][et_pb_column type=\"1_3\" _builder_version=\"3.26.3\"][et_pb_text _builder_version=\"3.26.3\" header_text_color=\"#ffffff\" z_index_tablet=\"500\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" text_text_shadow_horizontal_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_vertical_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_blur_strength=\"text_text_shadow_style,%91object Object%93\" link_text_shadow_horizontal_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_vertical_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_blur_strength=\"link_text_shadow_style,%91object Object%93\" ul_text_shadow_horizontal_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_vertical_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_blur_strength=\"ul_text_shadow_style,%91object Object%93\" ol_text_shadow_horizontal_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_vertical_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_blur_strength=\"ol_text_shadow_style,%91object Object%93\" quote_text_shadow_horizontal_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_vertical_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_blur_strength=\"quote_text_shadow_style,%91object Object%93\" header_text_shadow_horizontal_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_vertical_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_blur_strength=\"header_text_shadow_style,%91object Object%93\" header_2_text_shadow_horizontal_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_vertical_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_blur_strength=\"header_2_text_shadow_style,%91object Object%93\" header_3_text_shadow_horizontal_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_vertical_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_blur_strength=\"header_3_text_shadow_style,%91object Object%93\" header_4_text_shadow_horizontal_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_vertical_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_blur_strength=\"header_4_text_shadow_style,%91object Object%93\" header_5_text_shadow_horizontal_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_vertical_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_blur_strength=\"header_5_text_shadow_style,%91object Object%93\" header_6_text_shadow_horizontal_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_vertical_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_blur_strength=\"header_6_text_shadow_style,%91object Object%93\"]\r\n\r\n<h1 style=\"text-align: center;\"><a href=\"http://itcamefrombeyondpulp.com/movies/\"><strong>MOVIES &amp; TV</strong></a></h1>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.26.3\"][et_pb_text _builder_version=\"3.26.3\" header_text_color=\"#ffffff\" z_index_tablet=\"500\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" text_text_shadow_horizontal_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_vertical_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_blur_strength=\"text_text_shadow_style,%91object Object%93\" link_text_shadow_horizontal_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_vertical_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_blur_strength=\"link_text_shadow_style,%91object Object%93\" ul_text_shadow_horizontal_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_vertical_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_blur_strength=\"ul_text_shadow_style,%91object Object%93\" ol_text_shadow_horizontal_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_vertical_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_blur_strength=\"ol_text_shadow_style,%91object Object%93\" quote_text_shadow_horizontal_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_vertical_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_blur_strength=\"quote_text_shadow_style,%91object Object%93\" header_text_shadow_horizontal_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_vertical_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_blur_strength=\"header_text_shadow_style,%91object Object%93\" header_2_text_shadow_horizontal_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_vertical_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_blur_strength=\"header_2_text_shadow_style,%91object Object%93\" header_3_text_shadow_horizontal_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_vertical_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_blur_strength=\"header_3_text_shadow_style,%91object Object%93\" header_4_text_shadow_horizontal_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_vertical_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_blur_strength=\"header_4_text_shadow_style,%91object Object%93\" header_5_text_shadow_horizontal_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_vertical_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_blur_strength=\"header_5_text_shadow_style,%91object Object%93\" header_6_text_shadow_horizontal_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_vertical_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_blur_strength=\"header_6_text_shadow_style,%91object Object%93\"]\r\n\r\n<h1 style=\"text-align: center;\"><a href=\"http://itcamefrombeyondpulp.com/books/\"><strong>&gt;BOOKS</strong></a></h1>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.26.3\"][et_pb_text _builder_version=\"3.26.3\" header_text_color=\"#ffffff\" z_index_tablet=\"500\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" text_text_shadow_horizontal_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_vertical_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_blur_strength=\"text_text_shadow_style,%91object Object%93\" link_text_shadow_horizontal_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_vertical_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_blur_strength=\"link_text_shadow_style,%91object Object%93\" ul_text_shadow_horizontal_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_vertical_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_blur_strength=\"ul_text_shadow_style,%91object Object%93\" ol_text_shadow_horizontal_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_vertical_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_blur_strength=\"ol_text_shadow_style,%91object Object%93\" quote_text_shadow_horizontal_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_vertical_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_blur_strength=\"quote_text_shadow_style,%91object Object%93\" header_text_shadow_horizontal_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_vertical_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_blur_strength=\"header_text_shadow_style,%91object Object%93\" header_2_text_shadow_horizontal_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_vertical_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_blur_strength=\"header_2_text_shadow_style,%91object Object%93\" header_3_text_shadow_horizontal_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_vertical_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_blur_strength=\"header_3_text_shadow_style,%91object Object%93\" header_4_text_shadow_horizontal_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_vertical_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_blur_strength=\"header_4_text_shadow_style,%91object Object%93\" header_5_text_shadow_horizontal_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_vertical_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_blur_strength=\"header_5_text_shadow_style,%91object Object%93\" header_6_text_shadow_horizontal_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_vertical_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_blur_strength=\"header_6_text_shadow_style,%91object Object%93\"]\r\n\r\n<h1 style=\"text-align: center;\"><strong>SALES</strong></h1>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.26.3\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.26.3\" text_font=\"|800|||||||\" text_text_color=\"#ffffff\" background_color=\"#e02b20\" z_index_tablet=\"500\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" header_font=\"|800|||||||\" header_text_color=\"#ffffff\"]\r\n\r\n<h1 style=\"text-align: center;\">MOVIE REVIEWS</h1>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Books','','inherit','closed','closed','','33-revision-v1','','','2019-07-23 02:05:48','2019-07-23 02:05:48','',33,'http://itcamefrombeyondpulp.com/uncategorized/33-revision-v1/',0,'revision','',0),(74,1,'2019-07-23 02:09:10','2019-07-23 02:09:10','[et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" custom_padding=\"0px|||||\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" custom_margin=\"||11px|||\" next_background_color=\"#000000\" template_type=\"section\"][et_pb_row custom_padding=\"0px||0px|||\" custom_margin=\"|auto|-66px|auto||\" _builder_version=\"3.26.3\"][et_pb_column type=\"4_4\" _builder_version=\"3.26.3\"][et_pb_image src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/header.jpg\" url=\"http://itcamefrombeyondpulp.com\" _builder_version=\"3.26.3\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" /][/et_pb_column][/et_pb_row][/et_pb_section]','header','','publish','closed','closed','','header','','','2019-08-19 02:58:44','2019-08-19 02:58:44','',0,'http://itcamefrombeyondpulp.com/et_pb_layout/header/',0,'et_pb_layout','',0),(190,1,'2019-07-24 21:32:19','2019-07-24 21:32:19','[et_pb_section fb_built=\"1\" _builder_version=\"3.26.3\" custom_padding=\"0px|||||\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" global_module=\"74\" custom_margin=\"||11px|||\"][et_pb_row custom_padding=\"0px||0px|||\" custom_margin=\"|auto|-66px|auto||\" _builder_version=\"3.26.3\"][et_pb_column type=\"4_4\" _builder_version=\"3.26.3\"][et_pb_image src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/itfbp-header.jpg\" url=\"http://itcamefrombeyondpulp.com\" _builder_version=\"3.26.3\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.26.3\" width=\"1080px\" inner_module_alignment=\"center\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" global_module=\"175\" module_alignment=\"center\" custom_padding=\"0px||0px||false|false\"][et_pb_fullwidth_menu menu_id=\"2\" submenu_direction=\"downwards\" fullwidth_menu=\"off\" dropdown_menu_text_color=\"#ffffff\" _builder_version=\"3.26.3\" menu_font=\"|800||on|||||\" menu_text_color=\"#ffffff\" menu_font_size=\"22px\" menu_letter_spacing=\"5px\" background_color=\"#e02b20\" border_width_bottom=\"5px\" text_orientation=\"center\" background_layout=\"dark\" custom_padding=\"1px||0px||false|false\" z_index_tablet=\"500\" menu_text_shadow_horizontal_length_tablet=\"0px\" menu_text_shadow_vertical_length_tablet=\"0px\" menu_text_shadow_blur_strength_tablet=\"1px\" border_width_bottom_tablet=\"5px\" border_width_bottom_phone=\"5px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" custom_margin=\"0px||||false|false\"][/et_pb_fullwidth_menu][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.26.3\" background_color=\"#e02b20\" width=\"1080px\" module_alignment=\"center\" custom_padding=\"10px||0px|||\"][et_pb_row custom_padding=\"10px|10px||\" _builder_version=\"3.26.3\" background_color=\"#ffffff\" border_width_bottom=\"5px\" border_color_bottom=\"#e02b20\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.26.3\" z_index_tablet=\"500\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\"]<h1 style=\"text-align: center;\">Movies &amp; TV Reviews</h1>\r\n<p style=\"text-align: center;\"><strong><a href=\"http://itcamefrombeyondpulp.com/movies/children-of-men-2006/\">Children of Men (2006)</a><br /></strong><strong><a href=\"http://itcamefrombeyondpulp.com/movies/cloverfield-2008/\">Cloverfield (2008)</a><br /><a href=\"http://itcamefrombeyondpulp.com/movies/the-dark-knight-2008/\">The Dark Knight (2008)</a><br /><a href=\"http://itcamefrombeyondpulp.com/movies/the-fountain-2006/\">The Fountain (2006)</a><br /><a href=\"http://itcamefrombeyondpulp.com/movies/hardware-1990/\">Hardware (1990)</a><br /><a href=\"http://itcamefrombeyondpulp.com/movies/harry-potter-and-the-chamber-of-secrets-2002/\">Harry Potter and the Chamber of Secrets (2002)</a><br /><a href=\"http://itcamefrombeyondpulp.com/movies/harry-potter-and-the-sorcerers-stone-2001/\">Harry Potter and the Sorcerer\'s Stone (2001)</a><br /><a href=\"http://itcamefrombeyondpulp.com/movies/maniac-1934/\">Maniac (1934)</a><br /></strong><a href=\"http://itcamefrombeyondpulp.com/movies/serenity-2005/\"><strong>Serenity (2005)</strong></a></p>\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Movies','','inherit','closed','closed','','45-revision-v1','','','2019-07-24 21:32:19','2019-07-24 21:32:19','',45,'http://itcamefrombeyondpulp.com/uncategorized/45-revision-v1/',0,'revision','',0),(180,1,'2019-07-24 15:04:56','2019-07-24 15:04:56','[et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" custom_padding=\"0px|||||\" next_background_color=\"#000000\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\" template_type=\"section\"][et_pb_row custom_padding=\"0px||0px|||\" custom_margin=\"|auto|-66px|auto||\" _builder_version=\"3.26.3\"][et_pb_column type=\"4_4\" _builder_version=\"3.26.3\"][et_pb_image src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/itfbp-header.jpg\" _builder_version=\"3.26.3\" url=\"http://itcamefrombeyondpulp.com\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\" /][/et_pb_column][/et_pb_row][/et_pb_section]','header','','inherit','closed','closed','','74-revision-v1','','','2019-07-24 15:04:56','2019-07-24 15:04:56','',74,'http://itcamefrombeyondpulp.com/uncategorized/74-revision-v1/',0,'revision','',0),(181,1,'2019-07-24 15:04:56','2019-07-24 15:04:56','[et_pb_section bb_built=\"1\" fullwidth=\"on\" specialty=\"off\" prev_background_color=\"#000000\" next_background_color=\"#e02b20\" _builder_version=\"3.26.3\" inner_module_alignment=\"center\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\" width=\"80%\" template_type=\"section\"][et_pb_fullwidth_menu _builder_version=\"3.26.3\" menu_id=\"2\" background_color=\"#e02b20\" submenu_direction=\"downwards\" fullwidth_menu=\"off\" menu_text_shadow_horizontal_length=\"menu_text_shadow_style,%91object Object%93\" menu_text_shadow_horizontal_length_tablet=\"0px\" menu_text_shadow_vertical_length=\"menu_text_shadow_style,%91object Object%93\" menu_text_shadow_vertical_length_tablet=\"0px\" menu_text_shadow_blur_strength=\"menu_text_shadow_style,%91object Object%93\" menu_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\" dropdown_menu_text_color=\"#ffffff\" text_orientation=\"justified\" background_layout=\"dark\" menu_font=\"|800||on|||||\" menu_text_color=\"#ffffff\" menu_font_size=\"22px\" menu_letter_spacing=\"5px\" custom_padding=\"5px|||\" border_width_bottom=\"5px\" border_width_bottom_tablet=\"5px\" border_width_bottom_phone=\"5px\" /][/et_pb_section]','nav bar','','inherit','closed','closed','','175-revision-v1','','','2019-07-24 15:04:56','2019-07-24 15:04:56','',175,'http://itcamefrombeyondpulp.com/uncategorized/175-revision-v1/',0,'revision','',0),(75,1,'2019-07-23 02:09:27','2019-07-23 02:09:27','[et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" custom_padding=\"0px|||||\" next_background_color=\"#e02b20\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\" global_module=\"74\"][et_pb_row global_parent=\"74\" custom_padding=\"0px||0px|||\" custom_margin=\"|auto|-66px|auto||\" _builder_version=\"3.26.3\"][et_pb_column type=\"4_4\" global_parent=\"74\" _builder_version=\"3.26.3\"][et_pb_image global_parent=\"74\" src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/itfbp-header.jpg\" _builder_version=\"3.26.3\"]\r\n\r\n<br />\r\n\r\n[/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" background_color=\"#e02b20\" width=\"1080px\" module_alignment=\"center\" custom_padding=\"10px||0px|||\" prev_background_color=\"#ffffff\"][et_pb_row column_structure=\"1_3,1_3,1_3\" custom_padding=\"39px|||||\" custom_margin=\"-65px|auto||auto||\" _builder_version=\"3.26.3\" min_height=\"62px\"][et_pb_column type=\"1_3\" _builder_version=\"3.26.3\"][et_pb_text _builder_version=\"3.26.3\" header_text_color=\"#ffffff\" z_index_tablet=\"500\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" text_text_shadow_horizontal_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_vertical_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_blur_strength=\"text_text_shadow_style,%91object Object%93\" link_text_shadow_horizontal_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_vertical_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_blur_strength=\"link_text_shadow_style,%91object Object%93\" ul_text_shadow_horizontal_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_vertical_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_blur_strength=\"ul_text_shadow_style,%91object Object%93\" ol_text_shadow_horizontal_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_vertical_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_blur_strength=\"ol_text_shadow_style,%91object Object%93\" quote_text_shadow_horizontal_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_vertical_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_blur_strength=\"quote_text_shadow_style,%91object Object%93\" header_text_shadow_horizontal_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_vertical_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_blur_strength=\"header_text_shadow_style,%91object Object%93\" header_2_text_shadow_horizontal_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_vertical_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_blur_strength=\"header_2_text_shadow_style,%91object Object%93\" header_3_text_shadow_horizontal_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_vertical_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_blur_strength=\"header_3_text_shadow_style,%91object Object%93\" header_4_text_shadow_horizontal_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_vertical_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_blur_strength=\"header_4_text_shadow_style,%91object Object%93\" header_5_text_shadow_horizontal_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_vertical_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_blur_strength=\"header_5_text_shadow_style,%91object Object%93\" header_6_text_shadow_horizontal_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_vertical_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_blur_strength=\"header_6_text_shadow_style,%91object Object%93\"]\r\n\r\n<h1 style=\"text-align: center;\"><a href=\"http://itcamefrombeyondpulp.com/movies/\"><strong>&gt;MOVIES &amp; TV</strong></a></h1>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.26.3\"][et_pb_text _builder_version=\"3.26.3\" header_text_color=\"#ffffff\" text_text_shadow_horizontal_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\"]\r\n\r\n<h1 style=\"text-align: center;\"><a href=\"http://itcamefrombeyondpulp.com/books/\"><strong>BOOKS</strong></a></h1>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.26.3\"][et_pb_text _builder_version=\"3.26.3\" header_text_color=\"#ffffff\" text_text_shadow_horizontal_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\"]\r\n\r\n<h1 style=\"text-align: center;\"><a href=\"http://itcamefrombeyondpulp.com/sales/\"><strong>SALES</strong></a></h1>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"10px|10px||\" _builder_version=\"3.26.3\" background_color=\"#ffffff\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.26.3\"]\r\n\r\n<p style=\"text-align: center;\"><a href=\"http://itcamefrombeyondpulp.com/movies/serenity-2005/\"><strong>Serenity (2005)</strong></a></p>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Movies','','inherit','closed','closed','','45-revision-v1','','','2019-07-23 02:09:27','2019-07-23 02:09:27','',45,'http://itcamefrombeyondpulp.com/uncategorized/45-revision-v1/',0,'revision','',0),(79,1,'2019-07-23 02:13:24','2019-07-23 02:13:24','[et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" custom_padding=\"0px|||||\" next_background_color=\"#e02b20\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\" template_type=\"section\"][et_pb_row custom_padding=\"0px||0px|||\" custom_margin=\"|auto|-66px|auto||\" _builder_version=\"3.26.3\"][et_pb_column type=\"4_4\" _builder_version=\"3.26.3\"][et_pb_image src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/itfbp-header.jpg\" _builder_version=\"3.26.3\"]\n\n</p>\n\n[/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section]','header','','inherit','closed','closed','','74-revision-v1','','','2019-07-23 02:13:24','2019-07-23 02:13:24','',74,'http://itcamefrombeyondpulp.com/uncategorized/74-revision-v1/',0,'revision','',0),(76,1,'2019-07-23 02:09:43','2019-07-23 02:09:43','[et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" custom_padding=\"0px|||||\" next_background_color=\"#e02b20\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\" template_type=\"section\"][et_pb_row custom_padding=\"0px||0px|||\" custom_margin=\"|auto|-66px|auto||\" _builder_version=\"3.26.3\"][et_pb_column type=\"4_4\" _builder_version=\"3.26.3\"][et_pb_image src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/itfbp-header.jpg\" _builder_version=\"3.26.3\"]\n\n</p>\n<p></p>\n<p>\n\n[/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section]','header','','inherit','closed','closed','','74-revision-v1','','','2019-07-23 02:09:43','2019-07-23 02:09:43','',74,'http://itcamefrombeyondpulp.com/uncategorized/74-revision-v1/',0,'revision','',0),(201,1,'2019-07-24 21:39:29','2019-07-24 21:39:29','[et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" custom_padding=\"0px|||||\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" custom_margin=\"||11px|||\" next_background_color=\"#e02b20\" template_type=\"section\"][et_pb_row custom_padding=\"0px||0px|||\" custom_margin=\"|auto|-66px|auto||\" _builder_version=\"3.26.3\"][et_pb_column type=\"4_4\" _builder_version=\"3.26.3\"][et_pb_image src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/itfbp-header.jpg\" url=\"http://itcamefrombeyondpulp.com\" _builder_version=\"3.26.3\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" /][/et_pb_column][/et_pb_row][/et_pb_section]','header','','inherit','closed','closed','','74-revision-v1','','','2019-07-24 21:39:29','2019-07-24 21:39:29','',74,'http://itcamefrombeyondpulp.com/uncategorized/74-revision-v1/',0,'revision','',0),(78,1,'2019-07-23 02:13:06','2019-07-23 02:13:06','[et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" custom_padding=\"0px|||||\" next_background_color=\"#e02b20\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\" global_module=\"74\"][et_pb_row global_parent=\"74\" custom_padding=\"0px||0px|||\" custom_margin=\"|auto|-66px|auto||\" _builder_version=\"3.26.3\"][et_pb_column type=\"4_4\" global_parent=\"74\" _builder_version=\"3.26.3\"][et_pb_image global_parent=\"74\" src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/itfbp-header.jpg\" _builder_version=\"3.26.3\"]\r\n\r\n</p>\r\n\r\n[/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" background_color=\"#e02b20\" width=\"1080px\" module_alignment=\"center\" custom_padding=\"10px||0px|||\" prev_background_color=\"#ffffff\"][et_pb_row column_structure=\"1_3,1_3,1_3\" custom_padding=\"39px|||||\" custom_margin=\"-65px|auto||auto||\" _builder_version=\"3.26.3\" min_height=\"62px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\" global_module=\"77\"][et_pb_column type=\"1_3\" global_parent=\"77\" _builder_version=\"3.26.3\"][et_pb_text global_parent=\"77\" _builder_version=\"3.26.3\" header_text_color=\"#ffffff\" z_index_tablet=\"500\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" text_text_shadow_horizontal_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_vertical_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_blur_strength=\"text_text_shadow_style,%91object Object%93\" link_text_shadow_horizontal_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_vertical_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_blur_strength=\"link_text_shadow_style,%91object Object%93\" ul_text_shadow_horizontal_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_vertical_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_blur_strength=\"ul_text_shadow_style,%91object Object%93\" ol_text_shadow_horizontal_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_vertical_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_blur_strength=\"ol_text_shadow_style,%91object Object%93\" quote_text_shadow_horizontal_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_vertical_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_blur_strength=\"quote_text_shadow_style,%91object Object%93\" header_text_shadow_horizontal_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_vertical_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_blur_strength=\"header_text_shadow_style,%91object Object%93\" header_2_text_shadow_horizontal_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_vertical_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_blur_strength=\"header_2_text_shadow_style,%91object Object%93\" header_3_text_shadow_horizontal_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_vertical_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_blur_strength=\"header_3_text_shadow_style,%91object Object%93\" header_4_text_shadow_horizontal_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_vertical_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_blur_strength=\"header_4_text_shadow_style,%91object Object%93\" header_5_text_shadow_horizontal_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_vertical_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_blur_strength=\"header_5_text_shadow_style,%91object Object%93\" header_6_text_shadow_horizontal_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_vertical_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_blur_strength=\"header_6_text_shadow_style,%91object Object%93\"]\r\n\r\n<h1 style=\"text-align: center;\"><a href=\"http://itcamefrombeyondpulp.com/movies/\"><strong>MOVIES &amp; TV</strong></a></h1>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" global_parent=\"77\" _builder_version=\"3.26.3\"][et_pb_text global_parent=\"77\" _builder_version=\"3.26.3\" header_text_color=\"#ffffff\" z_index_tablet=\"500\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" text_text_shadow_horizontal_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_vertical_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_blur_strength=\"text_text_shadow_style,%91object Object%93\" link_text_shadow_horizontal_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_vertical_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_blur_strength=\"link_text_shadow_style,%91object Object%93\" ul_text_shadow_horizontal_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_vertical_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_blur_strength=\"ul_text_shadow_style,%91object Object%93\" ol_text_shadow_horizontal_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_vertical_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_blur_strength=\"ol_text_shadow_style,%91object Object%93\" quote_text_shadow_horizontal_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_vertical_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_blur_strength=\"quote_text_shadow_style,%91object Object%93\" header_text_shadow_horizontal_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_vertical_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_blur_strength=\"header_text_shadow_style,%91object Object%93\" header_2_text_shadow_horizontal_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_vertical_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_blur_strength=\"header_2_text_shadow_style,%91object Object%93\" header_3_text_shadow_horizontal_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_vertical_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_blur_strength=\"header_3_text_shadow_style,%91object Object%93\" header_4_text_shadow_horizontal_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_vertical_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_blur_strength=\"header_4_text_shadow_style,%91object Object%93\" header_5_text_shadow_horizontal_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_vertical_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_blur_strength=\"header_5_text_shadow_style,%91object Object%93\" header_6_text_shadow_horizontal_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_vertical_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_blur_strength=\"header_6_text_shadow_style,%91object Object%93\"]\r\n\r\n<h1 style=\"text-align: center;\"><a href=\"http://itcamefrombeyondpulp.com/books/\"><strong>BOOKS</strong></a></h1>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" global_parent=\"77\" _builder_version=\"3.26.3\"][et_pb_text global_parent=\"77\" _builder_version=\"3.26.3\" header_text_color=\"#ffffff\" z_index_tablet=\"500\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" text_text_shadow_horizontal_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_vertical_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_blur_strength=\"text_text_shadow_style,%91object Object%93\" link_text_shadow_horizontal_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_vertical_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_blur_strength=\"link_text_shadow_style,%91object Object%93\" ul_text_shadow_horizontal_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_vertical_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_blur_strength=\"ul_text_shadow_style,%91object Object%93\" ol_text_shadow_horizontal_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_vertical_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_blur_strength=\"ol_text_shadow_style,%91object Object%93\" quote_text_shadow_horizontal_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_vertical_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_blur_strength=\"quote_text_shadow_style,%91object Object%93\" header_text_shadow_horizontal_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_vertical_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_blur_strength=\"header_text_shadow_style,%91object Object%93\" header_2_text_shadow_horizontal_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_vertical_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_blur_strength=\"header_2_text_shadow_style,%91object Object%93\" header_3_text_shadow_horizontal_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_vertical_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_blur_strength=\"header_3_text_shadow_style,%91object Object%93\" header_4_text_shadow_horizontal_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_vertical_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_blur_strength=\"header_4_text_shadow_style,%91object Object%93\" header_5_text_shadow_horizontal_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_vertical_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_blur_strength=\"header_5_text_shadow_style,%91object Object%93\" header_6_text_shadow_horizontal_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_vertical_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_blur_strength=\"header_6_text_shadow_style,%91object Object%93\"]\r\n\r\n<h1 style=\"text-align: center;\"><a href=\"http://itcamefrombeyondpulp.com/sales/\"><strong>SALES</strong></a></h1>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.26.3\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.26.3\" text_font=\"|800|||||||\" text_text_color=\"#ffffff\" background_color=\"#e02b20\" z_index_tablet=\"500\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" header_font=\"|800|||||||\" header_text_color=\"#ffffff\" text_text_shadow_horizontal_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_vertical_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_blur_strength=\"text_text_shadow_style,%91object Object%93\" link_text_shadow_horizontal_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_vertical_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_blur_strength=\"link_text_shadow_style,%91object Object%93\" ul_text_shadow_horizontal_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_vertical_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_blur_strength=\"ul_text_shadow_style,%91object Object%93\" ol_text_shadow_horizontal_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_vertical_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_blur_strength=\"ol_text_shadow_style,%91object Object%93\" quote_text_shadow_horizontal_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_vertical_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_blur_strength=\"quote_text_shadow_style,%91object Object%93\" header_text_shadow_horizontal_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_vertical_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_blur_strength=\"header_text_shadow_style,%91object Object%93\" header_2_text_shadow_horizontal_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_vertical_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_blur_strength=\"header_2_text_shadow_style,%91object Object%93\" header_3_text_shadow_horizontal_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_vertical_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_blur_strength=\"header_3_text_shadow_style,%91object Object%93\" header_4_text_shadow_horizontal_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_vertical_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_blur_strength=\"header_4_text_shadow_style,%91object Object%93\" header_5_text_shadow_horizontal_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_vertical_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_blur_strength=\"header_5_text_shadow_style,%91object Object%93\" header_6_text_shadow_horizontal_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_vertical_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_blur_strength=\"header_6_text_shadow_style,%91object Object%93\"]\r\n\r\n<h1 style=\"text-align: center;\">BOOK REVIEWS</h1>\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.26.3\" background_color=\"#ffffff\" text_text_shadow_horizontal_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\"]\r\n\r\n<h2 style=\"text-align: center;\">Coming soon.</h2>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Books','','inherit','closed','closed','','33-revision-v1','','','2019-07-23 02:13:06','2019-07-23 02:13:06','',33,'http://itcamefrombeyondpulp.com/uncategorized/33-revision-v1/',0,'revision','',0),(81,1,'2019-07-23 02:14:41','2019-07-23 02:14:41','[et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" custom_padding=\"0px|||||\" next_background_color=\"#e02b20\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\" template_type=\"section\"][et_pb_row custom_padding=\"0px||0px|||\" custom_margin=\"|auto|-66px|auto||\" _builder_version=\"3.26.3\"][et_pb_column type=\"4_4\" _builder_version=\"3.26.3\"][et_pb_image src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/itfbp-header.jpg\" _builder_version=\"3.26.3\"]\n\n</p>\n<p>\n\n[/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section]','header','','inherit','closed','closed','','74-revision-v1','','','2019-07-23 02:14:41','2019-07-23 02:14:41','',74,'http://itcamefrombeyondpulp.com/uncategorized/74-revision-v1/',0,'revision','',0),(82,1,'2019-07-23 02:14:59','2019-07-23 02:14:59','[et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" custom_padding=\"0px|||||\" next_background_color=\"#e02b20\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\" template_type=\"section\"][et_pb_row custom_padding=\"0px||0px|||\" custom_margin=\"|auto|-66px|auto||\" _builder_version=\"3.26.3\"][et_pb_column type=\"4_4\" _builder_version=\"3.26.3\"][et_pb_image src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/itfbp-header.jpg\" _builder_version=\"3.26.3\" url=\"http://itcamefrombeyondpulp.com\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\"]\n\n</p>\n<p>\n\n[/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section]','header','','inherit','closed','closed','','74-revision-v1','','','2019-07-23 02:14:59','2019-07-23 02:14:59','',74,'http://itcamefrombeyondpulp.com/uncategorized/74-revision-v1/',0,'revision','',0),(86,1,'2019-07-23 02:21:29','2019-07-23 02:21:29','[et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" custom_padding=\"0px|||||\" next_background_color=\"#e02b20\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\" global_module=\"74\"][et_pb_row global_parent=\"74\" custom_padding=\"0px||0px|||\" custom_margin=\"|auto|-66px|auto||\" _builder_version=\"3.26.3\"][et_pb_column type=\"4_4\" global_parent=\"74\" _builder_version=\"3.26.3\"][et_pb_image global_parent=\"74\" src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/itfbp-header.jpg\" _builder_version=\"3.26.3\" url=\"http://itcamefrombeyondpulp.com\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\"]\r\n\r\n</p>\r\n<p>\r\n\r\n[/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" background_color=\"#e02b20\" width=\"1080px\" module_alignment=\"center\" custom_padding=\"10px||0px|||\" prev_background_color=\"#ffffff\"][et_pb_row column_structure=\"1_3,1_3,1_3\" custom_padding=\"39px|||||\" custom_margin=\"-65px|auto||auto||\" _builder_version=\"3.26.3\" min_height=\"62px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\" global_module=\"77\"][et_pb_column type=\"1_3\" global_parent=\"77\" _builder_version=\"3.26.3\"][et_pb_text global_parent=\"77\" _builder_version=\"3.26.3\" header_text_color=\"#ffffff\" z_index_tablet=\"500\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" text_text_shadow_horizontal_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_vertical_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_blur_strength=\"text_text_shadow_style,%91object Object%93\" link_text_shadow_horizontal_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_vertical_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_blur_strength=\"link_text_shadow_style,%91object Object%93\" ul_text_shadow_horizontal_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_vertical_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_blur_strength=\"ul_text_shadow_style,%91object Object%93\" ol_text_shadow_horizontal_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_vertical_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_blur_strength=\"ol_text_shadow_style,%91object Object%93\" quote_text_shadow_horizontal_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_vertical_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_blur_strength=\"quote_text_shadow_style,%91object Object%93\" header_text_shadow_horizontal_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_vertical_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_blur_strength=\"header_text_shadow_style,%91object Object%93\" header_2_text_shadow_horizontal_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_vertical_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_blur_strength=\"header_2_text_shadow_style,%91object Object%93\" header_3_text_shadow_horizontal_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_vertical_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_blur_strength=\"header_3_text_shadow_style,%91object Object%93\" header_4_text_shadow_horizontal_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_vertical_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_blur_strength=\"header_4_text_shadow_style,%91object Object%93\" header_5_text_shadow_horizontal_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_vertical_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_blur_strength=\"header_5_text_shadow_style,%91object Object%93\" header_6_text_shadow_horizontal_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_vertical_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_blur_strength=\"header_6_text_shadow_style,%91object Object%93\"]\r\n\r\n<h1 style=\"text-align: center;\"><a href=\"http://itcamefrombeyondpulp.com/movies/\"><strong>MOVIES &amp; TV</strong></a></h1>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" global_parent=\"77\" _builder_version=\"3.26.3\"][et_pb_text global_parent=\"77\" _builder_version=\"3.26.3\" header_text_color=\"#ffffff\" z_index_tablet=\"500\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" text_text_shadow_horizontal_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_vertical_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_blur_strength=\"text_text_shadow_style,%91object Object%93\" link_text_shadow_horizontal_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_vertical_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_blur_strength=\"link_text_shadow_style,%91object Object%93\" ul_text_shadow_horizontal_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_vertical_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_blur_strength=\"ul_text_shadow_style,%91object Object%93\" ol_text_shadow_horizontal_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_vertical_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_blur_strength=\"ol_text_shadow_style,%91object Object%93\" quote_text_shadow_horizontal_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_vertical_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_blur_strength=\"quote_text_shadow_style,%91object Object%93\" header_text_shadow_horizontal_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_vertical_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_blur_strength=\"header_text_shadow_style,%91object Object%93\" header_2_text_shadow_horizontal_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_vertical_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_blur_strength=\"header_2_text_shadow_style,%91object Object%93\" header_3_text_shadow_horizontal_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_vertical_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_blur_strength=\"header_3_text_shadow_style,%91object Object%93\" header_4_text_shadow_horizontal_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_vertical_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_blur_strength=\"header_4_text_shadow_style,%91object Object%93\" header_5_text_shadow_horizontal_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_vertical_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_blur_strength=\"header_5_text_shadow_style,%91object Object%93\" header_6_text_shadow_horizontal_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_vertical_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_blur_strength=\"header_6_text_shadow_style,%91object Object%93\"]\r\n\r\n<h1 style=\"text-align: center;\"><a href=\"http://itcamefrombeyondpulp.com/books/\"><strong>BOOKS</strong></a></h1>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" global_parent=\"77\" _builder_version=\"3.26.3\"][et_pb_text global_parent=\"77\" _builder_version=\"3.26.3\" header_text_color=\"#ffffff\" z_index_tablet=\"500\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" text_text_shadow_horizontal_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_vertical_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_blur_strength=\"text_text_shadow_style,%91object Object%93\" link_text_shadow_horizontal_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_vertical_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_blur_strength=\"link_text_shadow_style,%91object Object%93\" ul_text_shadow_horizontal_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_vertical_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_blur_strength=\"ul_text_shadow_style,%91object Object%93\" ol_text_shadow_horizontal_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_vertical_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_blur_strength=\"ol_text_shadow_style,%91object Object%93\" quote_text_shadow_horizontal_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_vertical_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_blur_strength=\"quote_text_shadow_style,%91object Object%93\" header_text_shadow_horizontal_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_vertical_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_blur_strength=\"header_text_shadow_style,%91object Object%93\" header_2_text_shadow_horizontal_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_vertical_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_blur_strength=\"header_2_text_shadow_style,%91object Object%93\" header_3_text_shadow_horizontal_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_vertical_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_blur_strength=\"header_3_text_shadow_style,%91object Object%93\" header_4_text_shadow_horizontal_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_vertical_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_blur_strength=\"header_4_text_shadow_style,%91object Object%93\" header_5_text_shadow_horizontal_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_vertical_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_blur_strength=\"header_5_text_shadow_style,%91object Object%93\" header_6_text_shadow_horizontal_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_vertical_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_blur_strength=\"header_6_text_shadow_style,%91object Object%93\"]\r\n\r\n<h1 style=\"text-align: center;\"><a href=\"http://itcamefrombeyondpulp.com/sales/\"><strong>SALES</strong></a></h1>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.26.3\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.26.3\" background_color=\"#ffffff\" text_text_shadow_horizontal_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\"]\r\n\r\n<h1 style=\"text-align: center;\">BOOK REVIEWS</h1><h2 style=\"text-align: center;\">Coming soon.</h2>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Books','','inherit','closed','closed','','33-revision-v1','','','2019-07-23 02:21:29','2019-07-23 02:21:29','',33,'http://itcamefrombeyondpulp.com/uncategorized/33-revision-v1/',0,'revision','',0),(83,1,'2019-07-23 02:15:04','2019-07-23 02:15:04','[et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" custom_padding=\"0px|||||\" next_background_color=\"#e02b20\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\" global_module=\"74\"][et_pb_row global_parent=\"74\" custom_padding=\"0px||0px|||\" custom_margin=\"|auto|-66px|auto||\" _builder_version=\"3.26.3\"][et_pb_column type=\"4_4\" global_parent=\"74\" _builder_version=\"3.26.3\"][et_pb_image global_parent=\"74\" src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/itfbp-header.jpg\" _builder_version=\"3.26.3\" url=\"http://itcamefrombeyondpulp.com\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\"]\r\n\r\n</p>\r\n<p>\r\n\r\n[/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" background_color=\"#e02b20\" width=\"1080px\" module_alignment=\"center\" custom_padding=\"10px||0px|||\" prev_background_color=\"#ffffff\"][et_pb_row column_structure=\"1_3,1_3,1_3\" custom_padding=\"39px|||||\" custom_margin=\"-65px|auto||auto||\" _builder_version=\"3.26.3\" min_height=\"62px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\" global_module=\"77\"][et_pb_column type=\"1_3\" global_parent=\"77\" _builder_version=\"3.26.3\"][et_pb_text global_parent=\"77\" _builder_version=\"3.26.3\" header_text_color=\"#ffffff\" z_index_tablet=\"500\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" text_text_shadow_horizontal_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_vertical_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_blur_strength=\"text_text_shadow_style,%91object Object%93\" link_text_shadow_horizontal_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_vertical_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_blur_strength=\"link_text_shadow_style,%91object Object%93\" ul_text_shadow_horizontal_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_vertical_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_blur_strength=\"ul_text_shadow_style,%91object Object%93\" ol_text_shadow_horizontal_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_vertical_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_blur_strength=\"ol_text_shadow_style,%91object Object%93\" quote_text_shadow_horizontal_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_vertical_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_blur_strength=\"quote_text_shadow_style,%91object Object%93\" header_text_shadow_horizontal_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_vertical_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_blur_strength=\"header_text_shadow_style,%91object Object%93\" header_2_text_shadow_horizontal_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_vertical_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_blur_strength=\"header_2_text_shadow_style,%91object Object%93\" header_3_text_shadow_horizontal_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_vertical_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_blur_strength=\"header_3_text_shadow_style,%91object Object%93\" header_4_text_shadow_horizontal_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_vertical_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_blur_strength=\"header_4_text_shadow_style,%91object Object%93\" header_5_text_shadow_horizontal_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_vertical_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_blur_strength=\"header_5_text_shadow_style,%91object Object%93\" header_6_text_shadow_horizontal_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_vertical_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_blur_strength=\"header_6_text_shadow_style,%91object Object%93\"]\r\n\r\n<h1 style=\"text-align: center;\"><a href=\"http://itcamefrombeyondpulp.com/movies/\"><strong>MOVIES &amp; TV</strong></a></h1>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" global_parent=\"77\" _builder_version=\"3.26.3\"][et_pb_text global_parent=\"77\" _builder_version=\"3.26.3\" header_text_color=\"#ffffff\" z_index_tablet=\"500\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" text_text_shadow_horizontal_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_vertical_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_blur_strength=\"text_text_shadow_style,%91object Object%93\" link_text_shadow_horizontal_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_vertical_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_blur_strength=\"link_text_shadow_style,%91object Object%93\" ul_text_shadow_horizontal_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_vertical_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_blur_strength=\"ul_text_shadow_style,%91object Object%93\" ol_text_shadow_horizontal_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_vertical_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_blur_strength=\"ol_text_shadow_style,%91object Object%93\" quote_text_shadow_horizontal_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_vertical_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_blur_strength=\"quote_text_shadow_style,%91object Object%93\" header_text_shadow_horizontal_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_vertical_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_blur_strength=\"header_text_shadow_style,%91object Object%93\" header_2_text_shadow_horizontal_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_vertical_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_blur_strength=\"header_2_text_shadow_style,%91object Object%93\" header_3_text_shadow_horizontal_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_vertical_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_blur_strength=\"header_3_text_shadow_style,%91object Object%93\" header_4_text_shadow_horizontal_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_vertical_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_blur_strength=\"header_4_text_shadow_style,%91object Object%93\" header_5_text_shadow_horizontal_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_vertical_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_blur_strength=\"header_5_text_shadow_style,%91object Object%93\" header_6_text_shadow_horizontal_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_vertical_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_blur_strength=\"header_6_text_shadow_style,%91object Object%93\"]\r\n\r\n<h1 style=\"text-align: center;\"><a href=\"http://itcamefrombeyondpulp.com/books/\"><strong>BOOKS</strong></a></h1>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" global_parent=\"77\" _builder_version=\"3.26.3\"][et_pb_text global_parent=\"77\" _builder_version=\"3.26.3\" header_text_color=\"#ffffff\" z_index_tablet=\"500\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" text_text_shadow_horizontal_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_vertical_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_blur_strength=\"text_text_shadow_style,%91object Object%93\" link_text_shadow_horizontal_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_vertical_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_blur_strength=\"link_text_shadow_style,%91object Object%93\" ul_text_shadow_horizontal_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_vertical_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_blur_strength=\"ul_text_shadow_style,%91object Object%93\" ol_text_shadow_horizontal_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_vertical_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_blur_strength=\"ol_text_shadow_style,%91object Object%93\" quote_text_shadow_horizontal_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_vertical_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_blur_strength=\"quote_text_shadow_style,%91object Object%93\" header_text_shadow_horizontal_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_vertical_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_blur_strength=\"header_text_shadow_style,%91object Object%93\" header_2_text_shadow_horizontal_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_vertical_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_blur_strength=\"header_2_text_shadow_style,%91object Object%93\" header_3_text_shadow_horizontal_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_vertical_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_blur_strength=\"header_3_text_shadow_style,%91object Object%93\" header_4_text_shadow_horizontal_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_vertical_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_blur_strength=\"header_4_text_shadow_style,%91object Object%93\" header_5_text_shadow_horizontal_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_vertical_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_blur_strength=\"header_5_text_shadow_style,%91object Object%93\" header_6_text_shadow_horizontal_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_vertical_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_blur_strength=\"header_6_text_shadow_style,%91object Object%93\"]\r\n\r\n<h1 style=\"text-align: center;\"><a href=\"http://itcamefrombeyondpulp.com/sales/\"><strong>SALES</strong></a></h1>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.26.3\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.26.3\" text_font=\"|800|||||||\" text_text_color=\"#ffffff\" background_color=\"#e02b20\" z_index_tablet=\"500\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" header_font=\"|800|||||||\" header_text_color=\"#ffffff\" text_text_shadow_horizontal_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_vertical_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_blur_strength=\"text_text_shadow_style,%91object Object%93\" link_text_shadow_horizontal_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_vertical_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_blur_strength=\"link_text_shadow_style,%91object Object%93\" ul_text_shadow_horizontal_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_vertical_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_blur_strength=\"ul_text_shadow_style,%91object Object%93\" ol_text_shadow_horizontal_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_vertical_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_blur_strength=\"ol_text_shadow_style,%91object Object%93\" quote_text_shadow_horizontal_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_vertical_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_blur_strength=\"quote_text_shadow_style,%91object Object%93\" header_text_shadow_horizontal_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_vertical_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_blur_strength=\"header_text_shadow_style,%91object Object%93\" header_2_text_shadow_horizontal_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_vertical_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_blur_strength=\"header_2_text_shadow_style,%91object Object%93\" header_3_text_shadow_horizontal_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_vertical_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_blur_strength=\"header_3_text_shadow_style,%91object Object%93\" header_4_text_shadow_horizontal_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_vertical_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_blur_strength=\"header_4_text_shadow_style,%91object Object%93\" header_5_text_shadow_horizontal_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_vertical_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_blur_strength=\"header_5_text_shadow_style,%91object Object%93\" header_6_text_shadow_horizontal_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_vertical_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_blur_strength=\"header_6_text_shadow_style,%91object Object%93\"]\r\n\r\n<h1 style=\"text-align: center;\">BOOK REVIEWS</h1>\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.26.3\" background_color=\"#ffffff\" text_text_shadow_horizontal_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\"]\r\n\r\n<h2 style=\"text-align: center;\">Coming soon.</h2>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Books','','inherit','closed','closed','','33-revision-v1','','','2019-07-23 02:15:04','2019-07-23 02:15:04','',33,'http://itcamefrombeyondpulp.com/uncategorized/33-revision-v1/',0,'revision','',0),(84,1,'2019-07-23 02:18:04','2019-07-23 02:18:04','[et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" custom_padding=\"0px|||||\" next_background_color=\"#e02b20\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\" global_module=\"74\"][et_pb_row global_parent=\"74\" custom_padding=\"0px||0px|||\" custom_margin=\"|auto|-66px|auto||\" _builder_version=\"3.26.3\"][et_pb_column type=\"4_4\" global_parent=\"74\" _builder_version=\"3.26.3\"][et_pb_image global_parent=\"74\" src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/itfbp-header.jpg\" _builder_version=\"3.26.3\" url=\"http://itcamefrombeyondpulp.com\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\"]\r\n\r\n</p>\r\n<p>\r\n\r\n[/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" background_color=\"#e02b20\" width=\"1080px\" module_alignment=\"center\" custom_padding=\"10px||0px|||\" prev_background_color=\"#ffffff\"][et_pb_row column_structure=\"1_3,1_3,1_3\" custom_padding=\"39px|||||\" custom_margin=\"-65px|auto||auto||\" _builder_version=\"3.26.3\" min_height=\"62px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\" global_module=\"77\"][et_pb_column type=\"1_3\" global_parent=\"77\" _builder_version=\"3.26.3\"][et_pb_text global_parent=\"77\" _builder_version=\"3.26.3\" header_text_color=\"#ffffff\" z_index_tablet=\"500\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" text_text_shadow_horizontal_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_vertical_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_blur_strength=\"text_text_shadow_style,%91object Object%93\" link_text_shadow_horizontal_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_vertical_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_blur_strength=\"link_text_shadow_style,%91object Object%93\" ul_text_shadow_horizontal_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_vertical_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_blur_strength=\"ul_text_shadow_style,%91object Object%93\" ol_text_shadow_horizontal_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_vertical_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_blur_strength=\"ol_text_shadow_style,%91object Object%93\" quote_text_shadow_horizontal_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_vertical_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_blur_strength=\"quote_text_shadow_style,%91object Object%93\" header_text_shadow_horizontal_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_vertical_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_blur_strength=\"header_text_shadow_style,%91object Object%93\" header_2_text_shadow_horizontal_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_vertical_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_blur_strength=\"header_2_text_shadow_style,%91object Object%93\" header_3_text_shadow_horizontal_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_vertical_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_blur_strength=\"header_3_text_shadow_style,%91object Object%93\" header_4_text_shadow_horizontal_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_vertical_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_blur_strength=\"header_4_text_shadow_style,%91object Object%93\" header_5_text_shadow_horizontal_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_vertical_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_blur_strength=\"header_5_text_shadow_style,%91object Object%93\" header_6_text_shadow_horizontal_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_vertical_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_blur_strength=\"header_6_text_shadow_style,%91object Object%93\"]\r\n\r\n<h1 style=\"text-align: center;\"><a href=\"http://itcamefrombeyondpulp.com/movies/\"><strong>MOVIES &amp; TV</strong></a></h1>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" global_parent=\"77\" _builder_version=\"3.26.3\"][et_pb_text global_parent=\"77\" _builder_version=\"3.26.3\" header_text_color=\"#ffffff\" z_index_tablet=\"500\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" text_text_shadow_horizontal_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_vertical_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_blur_strength=\"text_text_shadow_style,%91object Object%93\" link_text_shadow_horizontal_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_vertical_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_blur_strength=\"link_text_shadow_style,%91object Object%93\" ul_text_shadow_horizontal_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_vertical_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_blur_strength=\"ul_text_shadow_style,%91object Object%93\" ol_text_shadow_horizontal_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_vertical_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_blur_strength=\"ol_text_shadow_style,%91object Object%93\" quote_text_shadow_horizontal_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_vertical_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_blur_strength=\"quote_text_shadow_style,%91object Object%93\" header_text_shadow_horizontal_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_vertical_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_blur_strength=\"header_text_shadow_style,%91object Object%93\" header_2_text_shadow_horizontal_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_vertical_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_blur_strength=\"header_2_text_shadow_style,%91object Object%93\" header_3_text_shadow_horizontal_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_vertical_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_blur_strength=\"header_3_text_shadow_style,%91object Object%93\" header_4_text_shadow_horizontal_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_vertical_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_blur_strength=\"header_4_text_shadow_style,%91object Object%93\" header_5_text_shadow_horizontal_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_vertical_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_blur_strength=\"header_5_text_shadow_style,%91object Object%93\" header_6_text_shadow_horizontal_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_vertical_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_blur_strength=\"header_6_text_shadow_style,%91object Object%93\"]\r\n\r\n<h1 style=\"text-align: center;\"><a href=\"http://itcamefrombeyondpulp.com/books/\"><strong>BOOKS</strong></a></h1>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" global_parent=\"77\" _builder_version=\"3.26.3\"][et_pb_text global_parent=\"77\" _builder_version=\"3.26.3\" header_text_color=\"#ffffff\" z_index_tablet=\"500\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" text_text_shadow_horizontal_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_vertical_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_blur_strength=\"text_text_shadow_style,%91object Object%93\" link_text_shadow_horizontal_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_vertical_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_blur_strength=\"link_text_shadow_style,%91object Object%93\" ul_text_shadow_horizontal_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_vertical_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_blur_strength=\"ul_text_shadow_style,%91object Object%93\" ol_text_shadow_horizontal_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_vertical_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_blur_strength=\"ol_text_shadow_style,%91object Object%93\" quote_text_shadow_horizontal_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_vertical_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_blur_strength=\"quote_text_shadow_style,%91object Object%93\" header_text_shadow_horizontal_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_vertical_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_blur_strength=\"header_text_shadow_style,%91object Object%93\" header_2_text_shadow_horizontal_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_vertical_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_blur_strength=\"header_2_text_shadow_style,%91object Object%93\" header_3_text_shadow_horizontal_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_vertical_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_blur_strength=\"header_3_text_shadow_style,%91object Object%93\" header_4_text_shadow_horizontal_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_vertical_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_blur_strength=\"header_4_text_shadow_style,%91object Object%93\" header_5_text_shadow_horizontal_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_vertical_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_blur_strength=\"header_5_text_shadow_style,%91object Object%93\" header_6_text_shadow_horizontal_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_vertical_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_blur_strength=\"header_6_text_shadow_style,%91object Object%93\"]\r\n\r\n<h1 style=\"text-align: center;\"><a href=\"http://itcamefrombeyondpulp.com/sales/\"><strong>SALES</strong></a></h1>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"10px|10px||\" _builder_version=\"3.26.3\" background_color=\"#ffffff\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.26.3\" text_text_shadow_horizontal_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\"]\r\n\r\n<h1 style=\"text-align: center;\">Movies &amp; TV Reviews</h1>\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.26.3\"]\r\n\r\n<p style=\"text-align: center;\"><a href=\"http://itcamefrombeyondpulp.com/movies/serenity-2005/\"><strong>Serenity (2005)</strong></a></p>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Movies','','inherit','closed','closed','','45-revision-v1','','','2019-07-23 02:18:04','2019-07-23 02:18:04','',45,'http://itcamefrombeyondpulp.com/uncategorized/45-revision-v1/',0,'revision','',0),(85,1,'2019-07-23 02:20:00','2019-07-23 02:20:00','[et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" custom_padding=\"0px|||||\" next_background_color=\"#e02b20\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\" global_module=\"74\"][et_pb_row global_parent=\"74\" custom_padding=\"0px||0px|||\" custom_margin=\"|auto|-66px|auto||\" _builder_version=\"3.26.3\"][et_pb_column type=\"4_4\" global_parent=\"74\" _builder_version=\"3.26.3\"][et_pb_image global_parent=\"74\" src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/itfbp-header.jpg\" _builder_version=\"3.26.3\" url=\"http://itcamefrombeyondpulp.com\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\"]\r\n\r\n</p>\r\n<p>\r\n\r\n[/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" background_color=\"#e02b20\" width=\"1080px\" module_alignment=\"center\" custom_padding=\"10px||0px|||\" prev_background_color=\"#ffffff\"][et_pb_row column_structure=\"1_3,1_3,1_3\" custom_padding=\"39px|||||\" custom_margin=\"-65px|auto||auto||\" _builder_version=\"3.26.3\" min_height=\"62px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\" global_module=\"77\"][et_pb_column type=\"1_3\" global_parent=\"77\" _builder_version=\"3.26.3\"][et_pb_text global_parent=\"77\" _builder_version=\"3.26.3\" header_text_color=\"#ffffff\" z_index_tablet=\"500\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" text_text_shadow_horizontal_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_vertical_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_blur_strength=\"text_text_shadow_style,%91object Object%93\" link_text_shadow_horizontal_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_vertical_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_blur_strength=\"link_text_shadow_style,%91object Object%93\" ul_text_shadow_horizontal_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_vertical_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_blur_strength=\"ul_text_shadow_style,%91object Object%93\" ol_text_shadow_horizontal_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_vertical_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_blur_strength=\"ol_text_shadow_style,%91object Object%93\" quote_text_shadow_horizontal_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_vertical_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_blur_strength=\"quote_text_shadow_style,%91object Object%93\" header_text_shadow_horizontal_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_vertical_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_blur_strength=\"header_text_shadow_style,%91object Object%93\" header_2_text_shadow_horizontal_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_vertical_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_blur_strength=\"header_2_text_shadow_style,%91object Object%93\" header_3_text_shadow_horizontal_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_vertical_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_blur_strength=\"header_3_text_shadow_style,%91object Object%93\" header_4_text_shadow_horizontal_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_vertical_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_blur_strength=\"header_4_text_shadow_style,%91object Object%93\" header_5_text_shadow_horizontal_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_vertical_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_blur_strength=\"header_5_text_shadow_style,%91object Object%93\" header_6_text_shadow_horizontal_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_vertical_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_blur_strength=\"header_6_text_shadow_style,%91object Object%93\"]\r\n\r\n<h1 style=\"text-align: center;\"><a href=\"http://itcamefrombeyondpulp.com/movies/\"><strong>MOVIES &amp; TV</strong></a></h1>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" global_parent=\"77\" _builder_version=\"3.26.3\"][et_pb_text global_parent=\"77\" _builder_version=\"3.26.3\" header_text_color=\"#ffffff\" z_index_tablet=\"500\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" text_text_shadow_horizontal_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_vertical_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_blur_strength=\"text_text_shadow_style,%91object Object%93\" link_text_shadow_horizontal_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_vertical_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_blur_strength=\"link_text_shadow_style,%91object Object%93\" ul_text_shadow_horizontal_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_vertical_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_blur_strength=\"ul_text_shadow_style,%91object Object%93\" ol_text_shadow_horizontal_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_vertical_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_blur_strength=\"ol_text_shadow_style,%91object Object%93\" quote_text_shadow_horizontal_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_vertical_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_blur_strength=\"quote_text_shadow_style,%91object Object%93\" header_text_shadow_horizontal_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_vertical_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_blur_strength=\"header_text_shadow_style,%91object Object%93\" header_2_text_shadow_horizontal_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_vertical_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_blur_strength=\"header_2_text_shadow_style,%91object Object%93\" header_3_text_shadow_horizontal_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_vertical_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_blur_strength=\"header_3_text_shadow_style,%91object Object%93\" header_4_text_shadow_horizontal_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_vertical_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_blur_strength=\"header_4_text_shadow_style,%91object Object%93\" header_5_text_shadow_horizontal_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_vertical_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_blur_strength=\"header_5_text_shadow_style,%91object Object%93\" header_6_text_shadow_horizontal_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_vertical_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_blur_strength=\"header_6_text_shadow_style,%91object Object%93\"]\r\n\r\n<h1 style=\"text-align: center;\"><a href=\"http://itcamefrombeyondpulp.com/books/\"><strong>BOOKS</strong></a></h1>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" global_parent=\"77\" _builder_version=\"3.26.3\"][et_pb_text global_parent=\"77\" _builder_version=\"3.26.3\" header_text_color=\"#ffffff\" z_index_tablet=\"500\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" text_text_shadow_horizontal_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_vertical_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_blur_strength=\"text_text_shadow_style,%91object Object%93\" link_text_shadow_horizontal_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_vertical_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_blur_strength=\"link_text_shadow_style,%91object Object%93\" ul_text_shadow_horizontal_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_vertical_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_blur_strength=\"ul_text_shadow_style,%91object Object%93\" ol_text_shadow_horizontal_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_vertical_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_blur_strength=\"ol_text_shadow_style,%91object Object%93\" quote_text_shadow_horizontal_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_vertical_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_blur_strength=\"quote_text_shadow_style,%91object Object%93\" header_text_shadow_horizontal_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_vertical_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_blur_strength=\"header_text_shadow_style,%91object Object%93\" header_2_text_shadow_horizontal_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_vertical_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_blur_strength=\"header_2_text_shadow_style,%91object Object%93\" header_3_text_shadow_horizontal_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_vertical_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_blur_strength=\"header_3_text_shadow_style,%91object Object%93\" header_4_text_shadow_horizontal_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_vertical_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_blur_strength=\"header_4_text_shadow_style,%91object Object%93\" header_5_text_shadow_horizontal_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_vertical_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_blur_strength=\"header_5_text_shadow_style,%91object Object%93\" header_6_text_shadow_horizontal_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_vertical_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_blur_strength=\"header_6_text_shadow_style,%91object Object%93\"]\r\n\r\n<h1 style=\"text-align: center;\"><a href=\"http://itcamefrombeyondpulp.com/sales/\"><strong>SALES</strong></a></h1>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.26.3\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.26.3\" text_font=\"|800|||||||\" text_text_color=\"#ffffff\" background_color=\"#ffffff\" z_index_tablet=\"500\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" header_font=\"|800|||||||\" header_text_color=\"#ffffff\" text_text_shadow_horizontal_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_vertical_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_blur_strength=\"text_text_shadow_style,%91object Object%93\" link_text_shadow_horizontal_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_vertical_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_blur_strength=\"link_text_shadow_style,%91object Object%93\" ul_text_shadow_horizontal_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_vertical_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_blur_strength=\"ul_text_shadow_style,%91object Object%93\" ol_text_shadow_horizontal_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_vertical_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_blur_strength=\"ol_text_shadow_style,%91object Object%93\" quote_text_shadow_horizontal_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_vertical_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_blur_strength=\"quote_text_shadow_style,%91object Object%93\" header_text_shadow_horizontal_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_vertical_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_blur_strength=\"header_text_shadow_style,%91object Object%93\" header_2_text_shadow_horizontal_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_vertical_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_blur_strength=\"header_2_text_shadow_style,%91object Object%93\" header_3_text_shadow_horizontal_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_vertical_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_blur_strength=\"header_3_text_shadow_style,%91object Object%93\" header_4_text_shadow_horizontal_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_vertical_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_blur_strength=\"header_4_text_shadow_style,%91object Object%93\" header_5_text_shadow_horizontal_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_vertical_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_blur_strength=\"header_5_text_shadow_style,%91object Object%93\" header_6_text_shadow_horizontal_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_vertical_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_blur_strength=\"header_6_text_shadow_style,%91object Object%93\"]\r\n\r\n<h1 style=\"text-align: center;\">BOOK REVIEWS</h1>\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.26.3\" background_color=\"#ffffff\" text_text_shadow_horizontal_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\"]\r\n\r\n<h2 style=\"text-align: center;\">Coming soon.</h2>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Books','','inherit','closed','closed','','33-revision-v1','','','2019-07-23 02:20:00','2019-07-23 02:20:00','',33,'http://itcamefrombeyondpulp.com/uncategorized/33-revision-v1/',0,'revision','',0),(87,1,'2019-07-23 02:23:59','2019-07-23 02:23:59','[et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" custom_padding=\"0px|||||\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\" global_module=\"74\" next_background_color=\"#e02b20\"][et_pb_row global_parent=\"74\" custom_padding=\"0px||0px|||\" custom_margin=\"|auto|-66px|auto||\" _builder_version=\"3.26.3\"][et_pb_column type=\"4_4\" global_parent=\"74\" _builder_version=\"3.26.3\"][et_pb_image global_parent=\"74\" src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/itfbp-header.jpg\" _builder_version=\"3.26.3\" url=\"http://itcamefrombeyondpulp.com\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" background_color=\"#e02b20\" width=\"1080px\" module_alignment=\"center\" custom_padding=\"69px||0px|||\" prev_background_color=\"#ffffff\"][et_pb_row column_structure=\"1_3,1_3,1_3\" custom_padding=\"39px|||||\" custom_margin=\"-65px|auto||auto||\" _builder_version=\"3.26.3\" min_height=\"62px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\" global_module=\"77\"][et_pb_column type=\"1_3\" global_parent=\"77\" _builder_version=\"3.26.3\"][et_pb_text global_parent=\"77\" _builder_version=\"3.26.3\" header_text_color=\"#ffffff\" z_index_tablet=\"500\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" text_text_shadow_horizontal_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_vertical_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_blur_strength=\"text_text_shadow_style,%91object Object%93\" link_text_shadow_horizontal_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_vertical_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_blur_strength=\"link_text_shadow_style,%91object Object%93\" ul_text_shadow_horizontal_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_vertical_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_blur_strength=\"ul_text_shadow_style,%91object Object%93\" ol_text_shadow_horizontal_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_vertical_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_blur_strength=\"ol_text_shadow_style,%91object Object%93\" quote_text_shadow_horizontal_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_vertical_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_blur_strength=\"quote_text_shadow_style,%91object Object%93\" header_text_shadow_horizontal_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_vertical_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_blur_strength=\"header_text_shadow_style,%91object Object%93\" header_2_text_shadow_horizontal_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_vertical_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_blur_strength=\"header_2_text_shadow_style,%91object Object%93\" header_3_text_shadow_horizontal_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_vertical_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_blur_strength=\"header_3_text_shadow_style,%91object Object%93\" header_4_text_shadow_horizontal_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_vertical_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_blur_strength=\"header_4_text_shadow_style,%91object Object%93\" header_5_text_shadow_horizontal_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_vertical_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_blur_strength=\"header_5_text_shadow_style,%91object Object%93\" header_6_text_shadow_horizontal_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_vertical_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_blur_strength=\"header_6_text_shadow_style,%91object Object%93\"]\r\n\r\n<h1 style=\"text-align: center;\"><a href=\"http://itcamefrombeyondpulp.com/movies/\"><strong>MOVIES &amp; TV</strong></a></h1>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" global_parent=\"77\" _builder_version=\"3.26.3\"][et_pb_text global_parent=\"77\" _builder_version=\"3.26.3\" header_text_color=\"#ffffff\" z_index_tablet=\"500\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" text_text_shadow_horizontal_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_vertical_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_blur_strength=\"text_text_shadow_style,%91object Object%93\" link_text_shadow_horizontal_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_vertical_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_blur_strength=\"link_text_shadow_style,%91object Object%93\" ul_text_shadow_horizontal_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_vertical_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_blur_strength=\"ul_text_shadow_style,%91object Object%93\" ol_text_shadow_horizontal_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_vertical_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_blur_strength=\"ol_text_shadow_style,%91object Object%93\" quote_text_shadow_horizontal_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_vertical_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_blur_strength=\"quote_text_shadow_style,%91object Object%93\" header_text_shadow_horizontal_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_vertical_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_blur_strength=\"header_text_shadow_style,%91object Object%93\" header_2_text_shadow_horizontal_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_vertical_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_blur_strength=\"header_2_text_shadow_style,%91object Object%93\" header_3_text_shadow_horizontal_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_vertical_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_blur_strength=\"header_3_text_shadow_style,%91object Object%93\" header_4_text_shadow_horizontal_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_vertical_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_blur_strength=\"header_4_text_shadow_style,%91object Object%93\" header_5_text_shadow_horizontal_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_vertical_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_blur_strength=\"header_5_text_shadow_style,%91object Object%93\" header_6_text_shadow_horizontal_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_vertical_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_blur_strength=\"header_6_text_shadow_style,%91object Object%93\"]\r\n\r\n<h1 style=\"text-align: center;\"><a href=\"http://itcamefrombeyondpulp.com/books/\"><strong>BOOKS</strong></a></h1>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" global_parent=\"77\" _builder_version=\"3.26.3\"][et_pb_text global_parent=\"77\" _builder_version=\"3.26.3\" header_text_color=\"#ffffff\" z_index_tablet=\"500\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" text_text_shadow_horizontal_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_vertical_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_blur_strength=\"text_text_shadow_style,%91object Object%93\" link_text_shadow_horizontal_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_vertical_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_blur_strength=\"link_text_shadow_style,%91object Object%93\" ul_text_shadow_horizontal_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_vertical_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_blur_strength=\"ul_text_shadow_style,%91object Object%93\" ol_text_shadow_horizontal_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_vertical_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_blur_strength=\"ol_text_shadow_style,%91object Object%93\" quote_text_shadow_horizontal_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_vertical_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_blur_strength=\"quote_text_shadow_style,%91object Object%93\" header_text_shadow_horizontal_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_vertical_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_blur_strength=\"header_text_shadow_style,%91object Object%93\" header_2_text_shadow_horizontal_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_vertical_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_blur_strength=\"header_2_text_shadow_style,%91object Object%93\" header_3_text_shadow_horizontal_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_vertical_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_blur_strength=\"header_3_text_shadow_style,%91object Object%93\" header_4_text_shadow_horizontal_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_vertical_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_blur_strength=\"header_4_text_shadow_style,%91object Object%93\" header_5_text_shadow_horizontal_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_vertical_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_blur_strength=\"header_5_text_shadow_style,%91object Object%93\" header_6_text_shadow_horizontal_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_vertical_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_blur_strength=\"header_6_text_shadow_style,%91object Object%93\"]\r\n\r\n<h1 style=\"text-align: center;\"><a href=\"http://itcamefrombeyondpulp.com/sales/\"><strong>SALES</strong></a></h1>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"2px|||||\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.26.3\" z_index_tablet=\"500\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" background_color=\"#ffffff\" text_text_shadow_horizontal_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_vertical_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_blur_strength=\"text_text_shadow_style,%91object Object%93\" link_text_shadow_horizontal_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_vertical_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_blur_strength=\"link_text_shadow_style,%91object Object%93\" ul_text_shadow_horizontal_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_vertical_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_blur_strength=\"ul_text_shadow_style,%91object Object%93\" ol_text_shadow_horizontal_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_vertical_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_blur_strength=\"ol_text_shadow_style,%91object Object%93\" quote_text_shadow_horizontal_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_vertical_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_blur_strength=\"quote_text_shadow_style,%91object Object%93\" header_text_shadow_horizontal_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_vertical_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_blur_strength=\"header_text_shadow_style,%91object Object%93\" header_2_text_shadow_horizontal_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_vertical_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_blur_strength=\"header_2_text_shadow_style,%91object Object%93\" header_3_text_shadow_horizontal_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_vertical_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_blur_strength=\"header_3_text_shadow_style,%91object Object%93\" header_4_text_shadow_horizontal_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_vertical_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_blur_strength=\"header_4_text_shadow_style,%91object Object%93\" header_5_text_shadow_horizontal_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_vertical_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_blur_strength=\"header_5_text_shadow_style,%91object Object%93\" header_6_text_shadow_horizontal_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_vertical_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_blur_strength=\"header_6_text_shadow_style,%91object Object%93\"]\r\n\r\n<h1 style=\"text-align: center;\">SALES</h1><h2 style=\"text-align: center;\">Coming soon.</h2>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Sales','','inherit','closed','closed','','59-revision-v1','','','2019-07-23 02:23:59','2019-07-23 02:23:59','',59,'http://itcamefrombeyondpulp.com/uncategorized/59-revision-v1/',0,'revision','',0),(186,1,'2019-07-24 21:29:16','2019-07-24 21:29:16','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.26.3\" width=\"1080px\" inner_module_alignment=\"center\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" module_alignment=\"center\" custom_padding=\"0px||0px||false|false\" template_type=\"section\"][et_pb_fullwidth_menu menu_id=\"2\" submenu_direction=\"downwards\" fullwidth_menu=\"off\" dropdown_menu_text_color=\"#ffffff\" _builder_version=\"3.26.3\" menu_font=\"|800||on|||||\" menu_text_color=\"#ffffff\" menu_font_size=\"22px\" menu_letter_spacing=\"5px\" background_color=\"#e02b20\" border_width_bottom=\"5px\" text_orientation=\"center\" background_layout=\"dark\" custom_padding=\"31px|||||\" z_index_tablet=\"500\" menu_text_shadow_horizontal_length_tablet=\"0px\" menu_text_shadow_vertical_length_tablet=\"0px\" menu_text_shadow_blur_strength_tablet=\"1px\" border_width_bottom_tablet=\"5px\" border_width_bottom_phone=\"5px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" custom_margin=\"12px|||||\"][/et_pb_fullwidth_menu][/et_pb_section]','nav bar','','inherit','closed','closed','','175-revision-v1','','','2019-07-24 21:29:16','2019-07-24 21:29:16','',175,'http://itcamefrombeyondpulp.com/uncategorized/175-revision-v1/',0,'revision','',0),(187,1,'2019-07-24 21:31:19','2019-07-24 21:31:19','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.26.3\" width=\"1080px\" inner_module_alignment=\"center\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" module_alignment=\"center\" custom_padding=\"0px||0px||false|false\" template_type=\"section\"][et_pb_fullwidth_menu menu_id=\"2\" submenu_direction=\"downwards\" fullwidth_menu=\"off\" dropdown_menu_text_color=\"#ffffff\" _builder_version=\"3.26.3\" menu_font=\"|800||on|||||\" menu_text_color=\"#ffffff\" menu_font_size=\"22px\" menu_letter_spacing=\"5px\" background_color=\"#e02b20\" border_width_bottom=\"5px\" text_orientation=\"center\" background_layout=\"dark\" custom_padding=\"1px||0px||false|false\" z_index_tablet=\"500\" menu_text_shadow_horizontal_length_tablet=\"0px\" menu_text_shadow_vertical_length_tablet=\"0px\" menu_text_shadow_blur_strength_tablet=\"1px\" border_width_bottom_tablet=\"5px\" border_width_bottom_phone=\"5px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" custom_margin=\"0px||||false|false\"][/et_pb_fullwidth_menu][/et_pb_section]','nav bar','','inherit','closed','closed','','175-revision-v1','','','2019-07-24 21:31:19','2019-07-24 21:31:19','',175,'http://itcamefrombeyondpulp.com/uncategorized/175-revision-v1/',0,'revision','',0),(188,1,'2019-07-24 21:31:43','2019-07-24 21:31:43','[et_pb_section fb_built=\"1\" _builder_version=\"3.26.3\" custom_padding=\"0px|||||\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" custom_margin=\"||11px|||\" template_type=\"section\"][et_pb_row custom_padding=\"0px||0px|||\" custom_margin=\"|auto|-66px|auto||\" _builder_version=\"3.26.3\"][et_pb_column type=\"4_4\" _builder_version=\"3.26.3\"][et_pb_image src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/itfbp-header.jpg\" url=\"http://itcamefrombeyondpulp.com\" _builder_version=\"3.26.3\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section]','header','','inherit','closed','closed','','74-revision-v1','','','2019-07-24 21:31:43','2019-07-24 21:31:43','',74,'http://itcamefrombeyondpulp.com/uncategorized/74-revision-v1/',0,'revision','',0),(182,1,'2019-07-24 18:24:31','2019-07-24 18:24:31','/* Hide the Header and Logo */\r\n#main-header {\r\n    display: none !important;\r\n}','Divi','','inherit','closed','closed','','13-revision-v1','','','2019-07-24 18:24:31','2019-07-24 18:24:31','',13,'http://itcamefrombeyondpulp.com/uncategorized/13-revision-v1/',0,'revision','',0),(184,1,'2019-07-24 21:25:55','2019-07-24 21:25:55','[et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" custom_padding=\"0px|||||\" next_background_color=\"#000000\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\" global_module=\"74\"][et_pb_row global_parent=\"74\" custom_padding=\"0px||0px|||\" custom_margin=\"|auto|-66px|auto||\" _builder_version=\"3.26.3\"][et_pb_column type=\"4_4\" global_parent=\"74\" _builder_version=\"3.26.3\"][et_pb_image global_parent=\"74\" src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/itfbp-header.jpg\" _builder_version=\"3.26.3\" url=\"http://itcamefrombeyondpulp.com\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" fullwidth=\"on\" specialty=\"off\" prev_background_color=\"#000000\" next_background_color=\"#e02b20\" _builder_version=\"3.26.3\" inner_module_alignment=\"center\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\" width=\"80%\" global_module=\"175\"][et_pb_fullwidth_menu global_parent=\"175\" _builder_version=\"3.26.3\" menu_id=\"2\" background_color=\"#e02b20\" submenu_direction=\"downwards\" fullwidth_menu=\"off\" menu_text_shadow_horizontal_length=\"menu_text_shadow_style,%91object Object%93\" menu_text_shadow_horizontal_length_tablet=\"0px\" menu_text_shadow_vertical_length=\"menu_text_shadow_style,%91object Object%93\" menu_text_shadow_vertical_length_tablet=\"0px\" menu_text_shadow_blur_strength=\"menu_text_shadow_style,%91object Object%93\" menu_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\" dropdown_menu_text_color=\"#ffffff\" text_orientation=\"center\" background_layout=\"dark\" menu_font=\"|800||on|||||\" menu_text_color=\"#ffffff\" menu_font_size=\"22px\" menu_letter_spacing=\"5px\" custom_padding=\"5px|||\" border_width_bottom=\"5px\" border_width_bottom_tablet=\"5px\" border_width_bottom_phone=\"5px\" /][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" background_color=\"#e02b20\" width=\"1080px\" module_alignment=\"center\" custom_padding=\"10px||0px|||\" prev_background_color=\"#ffffff\"][et_pb_row custom_padding=\"10px|10px||\" _builder_version=\"3.26.3\" background_color=\"#ffffff\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" border_width_bottom=\"5px\" border_color_bottom=\"#e02b20\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.26.3\" text_text_shadow_horizontal_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\"]\r\n\r\n<h1 style=\"text-align: center;\">Movies &amp; TV Reviews</h1>\r\n<p style=\"text-align: center;\"><strong><a href=\"http://itcamefrombeyondpulp.com/movies/children-of-men-2006/\">Children of Men (2006)</a><br /></strong><strong><a href=\"http://itcamefrombeyondpulp.com/movies/cloverfield-2008/\">Cloverfield (2008)</a><br /><a href=\"http://itcamefrombeyondpulp.com/movies/the-dark-knight-2008/\">The Dark Knight (2008)</a><br /><a href=\"http://itcamefrombeyondpulp.com/movies/the-fountain-2006/\">The Fountain (2006)</a><br /><a href=\"http://itcamefrombeyondpulp.com/movies/hardware-1990/\">Hardware (1990)</a><br /><a href=\"http://itcamefrombeyondpulp.com/movies/harry-potter-and-the-chamber-of-secrets-2002/\">Harry Potter and the Chamber of Secrets (2002)</a><br /><a href=\"http://itcamefrombeyondpulp.com/movies/harry-potter-and-the-sorcerers-stone-2001/\">Harry Potter and the Sorcerer\'s Stone (2001)</a><br /><a href=\"http://itcamefrombeyondpulp.com/movies/maniac-1934/\">Maniac (1934)</a><br /></strong><a href=\"http://itcamefrombeyondpulp.com/movies/serenity-2005/\"><strong>Serenity (2005)</strong></a></p>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Movies','','inherit','closed','closed','','45-revision-v1','','','2019-07-24 21:25:55','2019-07-24 21:25:55','',45,'http://itcamefrombeyondpulp.com/uncategorized/45-revision-v1/',0,'revision','',0),(191,1,'2019-07-24 21:34:13','2019-07-24 21:34:13','[et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" custom_padding=\"0px|||||\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" custom_margin=\"||11px|||\" next_background_color=\"#000000\" template_type=\"section\"][et_pb_row custom_padding=\"0px||0px|||\" custom_margin=\"|auto|-66px|auto||\" _builder_version=\"3.26.3\"][et_pb_column type=\"4_4\" _builder_version=\"3.26.3\"][et_pb_image src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/itfbp-header.jpg\" url=\"http://itcamefrombeyondpulp.com\" _builder_version=\"3.26.3\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" /][/et_pb_column][/et_pb_row][/et_pb_section]','header','','inherit','closed','closed','','74-revision-v1','','','2019-07-24 21:34:13','2019-07-24 21:34:13','',74,'http://itcamefrombeyondpulp.com/uncategorized/74-revision-v1/',0,'revision','',0),(195,1,'2019-07-24 21:35:37','2019-07-24 21:35:37','[et_pb_section bb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.26.3\" width=\"1080px\" inner_module_alignment=\"center\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" module_alignment=\"center\" custom_padding=\"0px||0px||false|false\" prev_background_color=\"#000000\" template_type=\"section\"][et_pb_fullwidth_menu menu_id=\"2\" submenu_direction=\"downwards\" fullwidth_menu=\"off\" dropdown_menu_text_color=\"#ffffff\" _builder_version=\"3.26.3\" menu_font=\"|800||on|||||\" menu_text_color=\"#ffffff\" menu_font_size=\"22px\" menu_letter_spacing=\"5px\" background_color=\"#e02b20\" border_width_bottom=\"5px\" text_orientation=\"center\" background_layout=\"dark\" custom_padding=\"1px||0px||false|false\" z_index_tablet=\"500\" menu_text_shadow_horizontal_length_tablet=\"0px\" menu_text_shadow_vertical_length_tablet=\"0px\" menu_text_shadow_blur_strength_tablet=\"1px\" border_width_bottom_tablet=\"5px\" border_width_bottom_phone=\"5px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" custom_margin=\"0px||||false|false\" /][/et_pb_section]','nav bar','','inherit','closed','closed','','175-revision-v1','','','2019-07-24 21:35:37','2019-07-24 21:35:37','',175,'http://itcamefrombeyondpulp.com/uncategorized/175-revision-v1/',0,'revision','',0),(192,1,'2019-07-24 21:34:13','2019-07-24 21:34:13','[et_pb_section bb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.26.3\" width=\"1080px\" inner_module_alignment=\"center\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" module_alignment=\"center\" custom_padding=\"0px||0px||false|false\" prev_background_color=\"#000000\" next_background_color=\"#e02b20\" template_type=\"section\"][et_pb_fullwidth_menu menu_id=\"2\" submenu_direction=\"downwards\" fullwidth_menu=\"off\" dropdown_menu_text_color=\"#ffffff\" _builder_version=\"3.26.3\" menu_font=\"|800||on|||||\" menu_text_color=\"#ffffff\" menu_font_size=\"22px\" menu_letter_spacing=\"5px\" background_color=\"#e02b20\" border_width_bottom=\"5px\" text_orientation=\"center\" background_layout=\"dark\" custom_padding=\"1px||0px||false|false\" z_index_tablet=\"500\" menu_text_shadow_horizontal_length_tablet=\"0px\" menu_text_shadow_vertical_length_tablet=\"0px\" menu_text_shadow_blur_strength_tablet=\"1px\" border_width_bottom_tablet=\"5px\" border_width_bottom_phone=\"5px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" custom_margin=\"0px||||false|false\" /][/et_pb_section]','nav bar','','inherit','closed','closed','','175-revision-v1','','','2019-07-24 21:34:13','2019-07-24 21:34:13','',175,'http://itcamefrombeyondpulp.com/uncategorized/175-revision-v1/',0,'revision','',0),(94,1,'2019-07-23 02:33:20','2019-07-23 02:33:20','[et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" custom_padding=\"0px|||||\" next_background_color=\"#e02b20\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\" global_module=\"74\"][et_pb_row global_parent=\"74\" custom_padding=\"0px||0px|||\" custom_margin=\"|auto|-66px|auto||\" _builder_version=\"3.26.3\"][et_pb_column type=\"4_4\" global_parent=\"74\" _builder_version=\"3.26.3\"][et_pb_image global_parent=\"74\" src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/itfbp-header.jpg\" _builder_version=\"3.26.3\" url=\"http://itcamefrombeyondpulp.com\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\"]\r\n\r\n</p>\r\n<p>\r\n\r\n[/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" background_color=\"#e02b20\" width=\"1080px\" module_alignment=\"center\" custom_padding=\"10px||0px|||\" prev_background_color=\"#ffffff\" next_background_color=\"#000000\" border_width_bottom=\"5px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\"][et_pb_row column_structure=\"1_3,1_3,1_3\" custom_padding=\"0px|0px|0px|0px\" custom_margin=\"0px|0px|0px|0px\" _builder_version=\"3.26.3\" min_height=\"0px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\" global_module=\"77\" module_alignment=\"center\"][et_pb_column type=\"1_3\" global_parent=\"77\" _builder_version=\"3.26.3\"][et_pb_text global_parent=\"77\" _builder_version=\"3.26.3\" header_text_color=\"#ffffff\" z_index_tablet=\"500\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" text_text_shadow_horizontal_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_vertical_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_blur_strength=\"text_text_shadow_style,%91object Object%93\" link_text_shadow_horizontal_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_vertical_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_blur_strength=\"link_text_shadow_style,%91object Object%93\" ul_text_shadow_horizontal_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_vertical_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_blur_strength=\"ul_text_shadow_style,%91object Object%93\" ol_text_shadow_horizontal_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_vertical_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_blur_strength=\"ol_text_shadow_style,%91object Object%93\" quote_text_shadow_horizontal_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_vertical_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_blur_strength=\"quote_text_shadow_style,%91object Object%93\" header_text_shadow_horizontal_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_vertical_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_blur_strength=\"header_text_shadow_style,%91object Object%93\" header_2_text_shadow_horizontal_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_vertical_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_blur_strength=\"header_2_text_shadow_style,%91object Object%93\" header_3_text_shadow_horizontal_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_vertical_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_blur_strength=\"header_3_text_shadow_style,%91object Object%93\" header_4_text_shadow_horizontal_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_vertical_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_blur_strength=\"header_4_text_shadow_style,%91object Object%93\" header_5_text_shadow_horizontal_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_vertical_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_blur_strength=\"header_5_text_shadow_style,%91object Object%93\" header_6_text_shadow_horizontal_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_vertical_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_blur_strength=\"header_6_text_shadow_style,%91object Object%93\"]\r\n\r\n<h1 style=\"text-align: center;\"><a href=\"http://itcamefrombeyondpulp.com/movies/\"><strong>MOVIES &amp; TV</strong></a></h1>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" global_parent=\"77\" _builder_version=\"3.26.3\"][et_pb_text global_parent=\"77\" _builder_version=\"3.26.3\" header_text_color=\"#ffffff\" z_index_tablet=\"500\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" text_text_shadow_horizontal_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_vertical_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_blur_strength=\"text_text_shadow_style,%91object Object%93\" link_text_shadow_horizontal_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_vertical_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_blur_strength=\"link_text_shadow_style,%91object Object%93\" ul_text_shadow_horizontal_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_vertical_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_blur_strength=\"ul_text_shadow_style,%91object Object%93\" ol_text_shadow_horizontal_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_vertical_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_blur_strength=\"ol_text_shadow_style,%91object Object%93\" quote_text_shadow_horizontal_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_vertical_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_blur_strength=\"quote_text_shadow_style,%91object Object%93\" header_text_shadow_horizontal_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_vertical_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_blur_strength=\"header_text_shadow_style,%91object Object%93\" header_2_text_shadow_horizontal_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_vertical_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_blur_strength=\"header_2_text_shadow_style,%91object Object%93\" header_3_text_shadow_horizontal_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_vertical_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_blur_strength=\"header_3_text_shadow_style,%91object Object%93\" header_4_text_shadow_horizontal_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_vertical_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_blur_strength=\"header_4_text_shadow_style,%91object Object%93\" header_5_text_shadow_horizontal_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_vertical_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_blur_strength=\"header_5_text_shadow_style,%91object Object%93\" header_6_text_shadow_horizontal_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_vertical_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_blur_strength=\"header_6_text_shadow_style,%91object Object%93\"]\r\n\r\n<h1 style=\"text-align: center;\"><a href=\"http://itcamefrombeyondpulp.com/books/\"><strong>BOOKS</strong></a></h1>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" global_parent=\"77\" _builder_version=\"3.26.3\"][et_pb_text global_parent=\"77\" _builder_version=\"3.26.3\" header_text_color=\"#ffffff\" z_index_tablet=\"500\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" text_text_shadow_horizontal_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_vertical_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_blur_strength=\"text_text_shadow_style,%91object Object%93\" link_text_shadow_horizontal_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_vertical_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_blur_strength=\"link_text_shadow_style,%91object Object%93\" ul_text_shadow_horizontal_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_vertical_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_blur_strength=\"ul_text_shadow_style,%91object Object%93\" ol_text_shadow_horizontal_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_vertical_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_blur_strength=\"ol_text_shadow_style,%91object Object%93\" quote_text_shadow_horizontal_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_vertical_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_blur_strength=\"quote_text_shadow_style,%91object Object%93\" header_text_shadow_horizontal_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_vertical_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_blur_strength=\"header_text_shadow_style,%91object Object%93\" header_2_text_shadow_horizontal_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_vertical_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_blur_strength=\"header_2_text_shadow_style,%91object Object%93\" header_3_text_shadow_horizontal_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_vertical_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_blur_strength=\"header_3_text_shadow_style,%91object Object%93\" header_4_text_shadow_horizontal_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_vertical_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_blur_strength=\"header_4_text_shadow_style,%91object Object%93\" header_5_text_shadow_horizontal_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_vertical_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_blur_strength=\"header_5_text_shadow_style,%91object Object%93\" header_6_text_shadow_horizontal_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_vertical_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_blur_strength=\"header_6_text_shadow_style,%91object Object%93\"]\r\n\r\n<h1 style=\"text-align: center;\"><a href=\"http://itcamefrombeyondpulp.com/sales/\"><strong>SALES</strong></a></h1>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" background_color=\"#e02b20\" width=\"1080px\" module_alignment=\"center\" custom_padding=\"10px||0px|||\" prev_background_color=\"#000000\"][et_pb_row custom_padding=\"10px|10px||\" _builder_version=\"3.26.3\" background_color=\"#ffffff\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.26.3\" text_text_shadow_horizontal_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\"]\r\n\r\n<h1 style=\"text-align: center;\">Movies &amp; TV Reviews</h1><p style=\"text-align: center;\"><a href=\"http://itcamefrombeyondpulp.com/movies/serenity-2005/\"><strong>Serenity (2005)</strong></a></p>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Movies','','inherit','closed','closed','','45-revision-v1','','','2019-07-23 02:33:20','2019-07-23 02:33:20','',45,'http://itcamefrombeyondpulp.com/uncategorized/45-revision-v1/',0,'revision','',0),(98,1,'2019-07-23 02:34:00','2019-07-23 02:34:00','[et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" custom_padding=\"0px|||||\" next_background_color=\"#e02b20\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\" global_module=\"74\"][et_pb_row global_parent=\"74\" custom_padding=\"0px||0px|||\" custom_margin=\"|auto|-66px|auto||\" _builder_version=\"3.26.3\"][et_pb_column type=\"4_4\" global_parent=\"74\" _builder_version=\"3.26.3\"][et_pb_image global_parent=\"74\" src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/itfbp-header.jpg\" _builder_version=\"3.26.3\" url=\"http://itcamefrombeyondpulp.com\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\"]\r\n\r\n</p>\r\n<p>\r\n\r\n[/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" background_color=\"#e02b20\" width=\"1080px\" module_alignment=\"center\" custom_padding=\"10px||0px|||\" prev_background_color=\"#ffffff\" next_background_color=\"#000000\" border_width_bottom=\"5px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\" border_width_bottom_tablet=\"5px\" border_width_bottom_phone=\"5px\" global_module=\"97\"][et_pb_row global_parent=\"97\" column_structure=\"1_3,1_3,1_3\" custom_padding=\"0px|0px|0px|0px\" custom_margin=\"0px|0px|0px|0px\" _builder_version=\"3.26.3\" min_height=\"0px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\" module_alignment=\"center\" global_module=\"77\"][et_pb_column type=\"1_3\" global_parent=\"77\" _builder_version=\"3.26.3\"][et_pb_text global_parent=\"77\" _builder_version=\"3.26.3\" header_text_color=\"#ffffff\" z_index_tablet=\"500\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" text_text_shadow_horizontal_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_vertical_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_blur_strength=\"text_text_shadow_style,%91object Object%93\" link_text_shadow_horizontal_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_vertical_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_blur_strength=\"link_text_shadow_style,%91object Object%93\" ul_text_shadow_horizontal_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_vertical_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_blur_strength=\"ul_text_shadow_style,%91object Object%93\" ol_text_shadow_horizontal_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_vertical_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_blur_strength=\"ol_text_shadow_style,%91object Object%93\" quote_text_shadow_horizontal_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_vertical_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_blur_strength=\"quote_text_shadow_style,%91object Object%93\" header_text_shadow_horizontal_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_vertical_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_blur_strength=\"header_text_shadow_style,%91object Object%93\" header_2_text_shadow_horizontal_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_vertical_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_blur_strength=\"header_2_text_shadow_style,%91object Object%93\" header_3_text_shadow_horizontal_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_vertical_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_blur_strength=\"header_3_text_shadow_style,%91object Object%93\" header_4_text_shadow_horizontal_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_vertical_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_blur_strength=\"header_4_text_shadow_style,%91object Object%93\" header_5_text_shadow_horizontal_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_vertical_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_blur_strength=\"header_5_text_shadow_style,%91object Object%93\" header_6_text_shadow_horizontal_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_vertical_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_blur_strength=\"header_6_text_shadow_style,%91object Object%93\"]\r\n\r\n</p>\r\n<h1 style=\"text-align: center;\"><a href=\"http://itcamefrombeyondpulp.com/movies/\"><strong>MOVIES &amp; TV</strong></a></h1>\r\n<p>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" global_parent=\"77\" _builder_version=\"3.26.3\"][et_pb_text global_parent=\"77\" _builder_version=\"3.26.3\" header_text_color=\"#ffffff\" z_index_tablet=\"500\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" text_text_shadow_horizontal_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_vertical_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_blur_strength=\"text_text_shadow_style,%91object Object%93\" link_text_shadow_horizontal_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_vertical_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_blur_strength=\"link_text_shadow_style,%91object Object%93\" ul_text_shadow_horizontal_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_vertical_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_blur_strength=\"ul_text_shadow_style,%91object Object%93\" ol_text_shadow_horizontal_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_vertical_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_blur_strength=\"ol_text_shadow_style,%91object Object%93\" quote_text_shadow_horizontal_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_vertical_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_blur_strength=\"quote_text_shadow_style,%91object Object%93\" header_text_shadow_horizontal_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_vertical_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_blur_strength=\"header_text_shadow_style,%91object Object%93\" header_2_text_shadow_horizontal_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_vertical_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_blur_strength=\"header_2_text_shadow_style,%91object Object%93\" header_3_text_shadow_horizontal_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_vertical_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_blur_strength=\"header_3_text_shadow_style,%91object Object%93\" header_4_text_shadow_horizontal_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_vertical_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_blur_strength=\"header_4_text_shadow_style,%91object Object%93\" header_5_text_shadow_horizontal_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_vertical_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_blur_strength=\"header_5_text_shadow_style,%91object Object%93\" header_6_text_shadow_horizontal_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_vertical_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_blur_strength=\"header_6_text_shadow_style,%91object Object%93\"]\r\n\r\n</p>\r\n<h1 style=\"text-align: center;\"><a href=\"http://itcamefrombeyondpulp.com/books/\"><strong>BOOKS</strong></a></h1>\r\n<p>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" global_parent=\"77\" _builder_version=\"3.26.3\"][et_pb_text global_parent=\"77\" _builder_version=\"3.26.3\" header_text_color=\"#ffffff\" z_index_tablet=\"500\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" text_text_shadow_horizontal_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_vertical_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_blur_strength=\"text_text_shadow_style,%91object Object%93\" link_text_shadow_horizontal_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_vertical_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_blur_strength=\"link_text_shadow_style,%91object Object%93\" ul_text_shadow_horizontal_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_vertical_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_blur_strength=\"ul_text_shadow_style,%91object Object%93\" ol_text_shadow_horizontal_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_vertical_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_blur_strength=\"ol_text_shadow_style,%91object Object%93\" quote_text_shadow_horizontal_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_vertical_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_blur_strength=\"quote_text_shadow_style,%91object Object%93\" header_text_shadow_horizontal_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_vertical_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_blur_strength=\"header_text_shadow_style,%91object Object%93\" header_2_text_shadow_horizontal_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_vertical_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_blur_strength=\"header_2_text_shadow_style,%91object Object%93\" header_3_text_shadow_horizontal_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_vertical_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_blur_strength=\"header_3_text_shadow_style,%91object Object%93\" header_4_text_shadow_horizontal_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_vertical_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_blur_strength=\"header_4_text_shadow_style,%91object Object%93\" header_5_text_shadow_horizontal_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_vertical_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_blur_strength=\"header_5_text_shadow_style,%91object Object%93\" header_6_text_shadow_horizontal_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_vertical_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_blur_strength=\"header_6_text_shadow_style,%91object Object%93\"]\r\n\r\n</p>\r\n<h1 style=\"text-align: center;\"><a href=\"http://itcamefrombeyondpulp.com/sales/\"><strong>SALES</strong></a></h1>\r\n<p>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" background_color=\"#e02b20\" width=\"1080px\" module_alignment=\"center\" custom_padding=\"10px||0px|||\" prev_background_color=\"#000000\"][et_pb_row custom_padding=\"10px|10px||\" _builder_version=\"3.26.3\" background_color=\"#ffffff\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.26.3\" text_text_shadow_horizontal_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\"]\r\n\r\n<h1 style=\"text-align: center;\">Movies &amp; TV Reviews</h1>\r\n<p style=\"text-align: center;\"><a href=\"http://itcamefrombeyondpulp.com/movies/serenity-2005/\"><strong>Serenity (2005)</strong></a></p>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Movies','','inherit','closed','closed','','45-revision-v1','','','2019-07-23 02:34:00','2019-07-23 02:34:00','',45,'http://itcamefrombeyondpulp.com/uncategorized/45-revision-v1/',0,'revision','',0),(194,1,'2019-07-24 21:35:24','2019-07-24 21:35:24','[et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" custom_padding=\"0px|||||\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" custom_margin=\"||11px|||\" global_module=\"74\" next_background_color=\"#000000\"][et_pb_row global_parent=\"74\" custom_padding=\"0px||0px|||\" custom_margin=\"|auto|-66px|auto||\" _builder_version=\"3.26.3\"][et_pb_column type=\"4_4\" global_parent=\"74\" _builder_version=\"3.26.3\"][et_pb_image global_parent=\"74\" src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/itfbp-header.jpg\" url=\"http://itcamefrombeyondpulp.com\" _builder_version=\"3.26.3\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.26.3\" width=\"1080px\" inner_module_alignment=\"center\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" module_alignment=\"center\" custom_padding=\"0px||0px||false|false\" global_module=\"175\" prev_background_color=\"#000000\"][et_pb_fullwidth_menu global_parent=\"175\" menu_id=\"2\" submenu_direction=\"downwards\" fullwidth_menu=\"off\" dropdown_menu_text_color=\"#ffffff\" _builder_version=\"3.26.3\" menu_font=\"|800||on|||||\" menu_text_color=\"#ffffff\" menu_font_size=\"22px\" menu_letter_spacing=\"5px\" background_color=\"#e02b20\" border_width_bottom=\"5px\" text_orientation=\"center\" background_layout=\"dark\" custom_padding=\"1px||0px||false|false\" z_index_tablet=\"500\" menu_text_shadow_horizontal_length_tablet=\"0px\" menu_text_shadow_vertical_length_tablet=\"0px\" menu_text_shadow_blur_strength_tablet=\"1px\" border_width_bottom_tablet=\"5px\" border_width_bottom_phone=\"5px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" custom_margin=\"0px||||false|false\" /][/et_pb_section]','','','inherit','closed','closed','','17-revision-v1','','','2019-07-24 21:35:24','2019-07-24 21:35:24','',17,'http://itcamefrombeyondpulp.com/uncategorized/17-revision-v1/',0,'revision','',0),(196,1,'2019-07-24 21:37:32','2019-07-24 21:37:32','[et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" custom_padding=\"0px|||||\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" custom_margin=\"||11px|||\" next_background_color=\"#e02b20\" template_type=\"section\"][et_pb_row custom_padding=\"0px||0px|||\" custom_margin=\"|auto|-66px|auto||\" _builder_version=\"3.26.3\"][et_pb_column type=\"4_4\" _builder_version=\"3.26.3\"][et_pb_image src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/itfbp-header.jpg\" url=\"http://itcamefrombeyondpulp.com\" _builder_version=\"3.26.3\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" /][/et_pb_column][/et_pb_row][/et_pb_section]','header','','inherit','closed','closed','','74-revision-v1','','','2019-07-24 21:37:32','2019-07-24 21:37:32','',74,'http://itcamefrombeyondpulp.com/uncategorized/74-revision-v1/',0,'revision','',0),(155,1,'2019-07-24 02:13:26','2019-07-24 02:13:26','[et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" background_color=\"#e02b20\" width=\"1080px\" module_alignment=\"center\" custom_padding=\"10px||0px|||\" border_width_bottom=\"5px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\" border_width_bottom_tablet=\"5px\" border_width_bottom_phone=\"5px\" global_module=\"97\"][et_pb_row global_parent=\"97\" column_structure=\"1_3,1_3,1_3\" custom_padding=\"0px|0px|0px|0px\" custom_margin=\"0px|0px|0px|0px\" _builder_version=\"3.26.3\" min_height=\"0px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\" module_alignment=\"center\"][et_pb_column type=\"1_3\" global_parent=\"97\" _builder_version=\"3.26.3\"][et_pb_text global_parent=\"97\" _builder_version=\"3.26.3\" header_text_color=\"#ffffff\" z_index_tablet=\"500\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" text_text_shadow_horizontal_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_vertical_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_blur_strength=\"text_text_shadow_style,%91object Object%93\" link_text_shadow_horizontal_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_vertical_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_blur_strength=\"link_text_shadow_style,%91object Object%93\" ul_text_shadow_horizontal_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_vertical_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_blur_strength=\"ul_text_shadow_style,%91object Object%93\" ol_text_shadow_horizontal_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_vertical_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_blur_strength=\"ol_text_shadow_style,%91object Object%93\" quote_text_shadow_horizontal_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_vertical_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_blur_strength=\"quote_text_shadow_style,%91object Object%93\" header_text_shadow_horizontal_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_vertical_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_blur_strength=\"header_text_shadow_style,%91object Object%93\" header_2_text_shadow_horizontal_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_vertical_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_blur_strength=\"header_2_text_shadow_style,%91object Object%93\" header_3_text_shadow_horizontal_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_vertical_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_blur_strength=\"header_3_text_shadow_style,%91object Object%93\" header_4_text_shadow_horizontal_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_vertical_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_blur_strength=\"header_4_text_shadow_style,%91object Object%93\" header_5_text_shadow_horizontal_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_vertical_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_blur_strength=\"header_5_text_shadow_style,%91object Object%93\" header_6_text_shadow_horizontal_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_vertical_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_blur_strength=\"header_6_text_shadow_style,%91object Object%93\"]\r\n\r\n</p>\r\n<h1 style=\"text-align: center;\"><a href=\"http://itcamefrombeyondpulp.com/movies/\"><strong>MOVIES &amp; TV</strong></a></h1>\r\n<p>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" global_parent=\"97\" _builder_version=\"3.26.3\"][et_pb_text global_parent=\"97\" _builder_version=\"3.26.3\" header_text_color=\"#ffffff\" z_index_tablet=\"500\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" text_text_shadow_horizontal_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_vertical_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_blur_strength=\"text_text_shadow_style,%91object Object%93\" link_text_shadow_horizontal_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_vertical_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_blur_strength=\"link_text_shadow_style,%91object Object%93\" ul_text_shadow_horizontal_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_vertical_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_blur_strength=\"ul_text_shadow_style,%91object Object%93\" ol_text_shadow_horizontal_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_vertical_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_blur_strength=\"ol_text_shadow_style,%91object Object%93\" quote_text_shadow_horizontal_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_vertical_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_blur_strength=\"quote_text_shadow_style,%91object Object%93\" header_text_shadow_horizontal_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_vertical_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_blur_strength=\"header_text_shadow_style,%91object Object%93\" header_2_text_shadow_horizontal_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_vertical_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_blur_strength=\"header_2_text_shadow_style,%91object Object%93\" header_3_text_shadow_horizontal_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_vertical_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_blur_strength=\"header_3_text_shadow_style,%91object Object%93\" header_4_text_shadow_horizontal_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_vertical_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_blur_strength=\"header_4_text_shadow_style,%91object Object%93\" header_5_text_shadow_horizontal_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_vertical_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_blur_strength=\"header_5_text_shadow_style,%91object Object%93\" header_6_text_shadow_horizontal_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_vertical_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_blur_strength=\"header_6_text_shadow_style,%91object Object%93\"]\r\n\r\n</p>\r\n<h1 style=\"text-align: center;\"><a href=\"http://itcamefrombeyondpulp.com/books/\"><strong>BOOKS</strong></a></h1>\r\n<p>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" global_parent=\"97\" _builder_version=\"3.26.3\"][et_pb_text global_parent=\"97\" _builder_version=\"3.26.3\" header_text_color=\"#ffffff\" z_index_tablet=\"500\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" text_text_shadow_horizontal_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_vertical_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_blur_strength=\"text_text_shadow_style,%91object Object%93\" link_text_shadow_horizontal_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_vertical_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_blur_strength=\"link_text_shadow_style,%91object Object%93\" ul_text_shadow_horizontal_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_vertical_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_blur_strength=\"ul_text_shadow_style,%91object Object%93\" ol_text_shadow_horizontal_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_vertical_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_blur_strength=\"ol_text_shadow_style,%91object Object%93\" quote_text_shadow_horizontal_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_vertical_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_blur_strength=\"quote_text_shadow_style,%91object Object%93\" header_text_shadow_horizontal_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_vertical_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_blur_strength=\"header_text_shadow_style,%91object Object%93\" header_2_text_shadow_horizontal_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_vertical_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_blur_strength=\"header_2_text_shadow_style,%91object Object%93\" header_3_text_shadow_horizontal_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_vertical_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_blur_strength=\"header_3_text_shadow_style,%91object Object%93\" header_4_text_shadow_horizontal_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_vertical_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_blur_strength=\"header_4_text_shadow_style,%91object Object%93\" header_5_text_shadow_horizontal_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_vertical_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_blur_strength=\"header_5_text_shadow_style,%91object Object%93\" header_6_text_shadow_horizontal_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_vertical_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_blur_strength=\"header_6_text_shadow_style,%91object Object%93\"]\r\n\r\n</p>\r\n<h1 style=\"text-align: center;\"><a href=\"http://itcamefrombeyondpulp.com/sales/\"><strong>SALES</strong></a></h1>\r\n<p>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','','','inherit','closed','closed','','17-revision-v1','','','2019-07-24 02:13:26','2019-07-24 02:13:26','',17,'http://itcamefrombeyondpulp.com/uncategorized/17-revision-v1/',0,'revision','',0),(101,1,'2019-07-23 02:35:22','2019-07-23 02:35:22','[et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" custom_padding=\"0px|||||\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\" global_module=\"74\" next_background_color=\"#e02b20\"][et_pb_row global_parent=\"74\" custom_padding=\"0px||0px|||\" custom_margin=\"|auto|-66px|auto||\" _builder_version=\"3.26.3\"][et_pb_column type=\"4_4\" global_parent=\"74\" _builder_version=\"3.26.3\"][et_pb_image global_parent=\"74\" src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/itfbp-header.jpg\" _builder_version=\"3.26.3\" url=\"http://itcamefrombeyondpulp.com\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" background_color=\"#e02b20\" width=\"1080px\" module_alignment=\"center\" custom_padding=\"10px||0px|||\" border_width_bottom=\"5px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\" border_width_bottom_tablet=\"5px\" border_width_bottom_phone=\"5px\" global_module=\"97\" prev_background_color=\"#ffffff\"][et_pb_row global_parent=\"97\" column_structure=\"1_3,1_3,1_3\" custom_padding=\"0px|0px|0px|0px\" custom_margin=\"0px|0px|0px|0px\" _builder_version=\"3.26.3\" min_height=\"0px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\" module_alignment=\"center\"][et_pb_column type=\"1_3\" global_parent=\"97\" _builder_version=\"3.26.3\"][et_pb_text global_parent=\"97\" _builder_version=\"3.26.3\" header_text_color=\"#ffffff\" z_index_tablet=\"500\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" text_text_shadow_horizontal_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_vertical_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_blur_strength=\"text_text_shadow_style,%91object Object%93\" link_text_shadow_horizontal_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_vertical_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_blur_strength=\"link_text_shadow_style,%91object Object%93\" ul_text_shadow_horizontal_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_vertical_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_blur_strength=\"ul_text_shadow_style,%91object Object%93\" ol_text_shadow_horizontal_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_vertical_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_blur_strength=\"ol_text_shadow_style,%91object Object%93\" quote_text_shadow_horizontal_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_vertical_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_blur_strength=\"quote_text_shadow_style,%91object Object%93\" header_text_shadow_horizontal_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_vertical_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_blur_strength=\"header_text_shadow_style,%91object Object%93\" header_2_text_shadow_horizontal_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_vertical_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_blur_strength=\"header_2_text_shadow_style,%91object Object%93\" header_3_text_shadow_horizontal_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_vertical_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_blur_strength=\"header_3_text_shadow_style,%91object Object%93\" header_4_text_shadow_horizontal_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_vertical_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_blur_strength=\"header_4_text_shadow_style,%91object Object%93\" header_5_text_shadow_horizontal_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_vertical_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_blur_strength=\"header_5_text_shadow_style,%91object Object%93\" header_6_text_shadow_horizontal_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_vertical_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_blur_strength=\"header_6_text_shadow_style,%91object Object%93\"]\r\n\r\n<h1 style=\"text-align: center;\"><a href=\"http://itcamefrombeyondpulp.com/movies/\"><strong>MOVIES &amp; TV</strong></a></h1>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" global_parent=\"97\" _builder_version=\"3.26.3\"][et_pb_text global_parent=\"97\" _builder_version=\"3.26.3\" header_text_color=\"#ffffff\" z_index_tablet=\"500\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" text_text_shadow_horizontal_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_vertical_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_blur_strength=\"text_text_shadow_style,%91object Object%93\" link_text_shadow_horizontal_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_vertical_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_blur_strength=\"link_text_shadow_style,%91object Object%93\" ul_text_shadow_horizontal_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_vertical_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_blur_strength=\"ul_text_shadow_style,%91object Object%93\" ol_text_shadow_horizontal_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_vertical_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_blur_strength=\"ol_text_shadow_style,%91object Object%93\" quote_text_shadow_horizontal_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_vertical_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_blur_strength=\"quote_text_shadow_style,%91object Object%93\" header_text_shadow_horizontal_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_vertical_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_blur_strength=\"header_text_shadow_style,%91object Object%93\" header_2_text_shadow_horizontal_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_vertical_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_blur_strength=\"header_2_text_shadow_style,%91object Object%93\" header_3_text_shadow_horizontal_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_vertical_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_blur_strength=\"header_3_text_shadow_style,%91object Object%93\" header_4_text_shadow_horizontal_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_vertical_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_blur_strength=\"header_4_text_shadow_style,%91object Object%93\" header_5_text_shadow_horizontal_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_vertical_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_blur_strength=\"header_5_text_shadow_style,%91object Object%93\" header_6_text_shadow_horizontal_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_vertical_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_blur_strength=\"header_6_text_shadow_style,%91object Object%93\"]\r\n\r\n<h1 style=\"text-align: center;\"><a href=\"http://itcamefrombeyondpulp.com/books/\"><strong>BOOKS</strong></a></h1>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" global_parent=\"97\" _builder_version=\"3.26.3\"][et_pb_text global_parent=\"97\" _builder_version=\"3.26.3\" header_text_color=\"#ffffff\" z_index_tablet=\"500\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" text_text_shadow_horizontal_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_vertical_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_blur_strength=\"text_text_shadow_style,%91object Object%93\" link_text_shadow_horizontal_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_vertical_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_blur_strength=\"link_text_shadow_style,%91object Object%93\" ul_text_shadow_horizontal_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_vertical_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_blur_strength=\"ul_text_shadow_style,%91object Object%93\" ol_text_shadow_horizontal_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_vertical_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_blur_strength=\"ol_text_shadow_style,%91object Object%93\" quote_text_shadow_horizontal_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_vertical_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_blur_strength=\"quote_text_shadow_style,%91object Object%93\" header_text_shadow_horizontal_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_vertical_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_blur_strength=\"header_text_shadow_style,%91object Object%93\" header_2_text_shadow_horizontal_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_vertical_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_blur_strength=\"header_2_text_shadow_style,%91object Object%93\" header_3_text_shadow_horizontal_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_vertical_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_blur_strength=\"header_3_text_shadow_style,%91object Object%93\" header_4_text_shadow_horizontal_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_vertical_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_blur_strength=\"header_4_text_shadow_style,%91object Object%93\" header_5_text_shadow_horizontal_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_vertical_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_blur_strength=\"header_5_text_shadow_style,%91object Object%93\" header_6_text_shadow_horizontal_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_vertical_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_blur_strength=\"header_6_text_shadow_style,%91object Object%93\"]\r\n\r\n<h1 style=\"text-align: center;\"><a href=\"http://itcamefrombeyondpulp.com/sales/\"><strong>SALES</strong></a></h1>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','','','inherit','closed','closed','','17-revision-v1','','','2019-07-23 02:35:22','2019-07-23 02:35:22','',17,'http://itcamefrombeyondpulp.com/uncategorized/17-revision-v1/',0,'revision','',0),(198,1,'2019-07-24 21:37:58','2019-07-24 21:37:58','[et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" custom_padding=\"0px|||||\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" custom_margin=\"||11px|||\" next_background_color=\"#000000\" global_module=\"74\"][et_pb_row global_parent=\"74\" custom_padding=\"0px||0px|||\" custom_margin=\"|auto|-66px|auto||\" _builder_version=\"3.26.3\"][et_pb_column type=\"4_4\" global_parent=\"74\" _builder_version=\"3.26.3\"][et_pb_image global_parent=\"74\" src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/itfbp-header.jpg\" url=\"http://itcamefrombeyondpulp.com\" _builder_version=\"3.26.3\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.26.3\" width=\"1080px\" inner_module_alignment=\"center\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" module_alignment=\"center\" custom_padding=\"0px||0px||false|false\" global_module=\"175\" next_background_color=\"#e02b20\" prev_background_color=\"#000000\"][et_pb_fullwidth_menu global_parent=\"175\" menu_id=\"2\" submenu_direction=\"downwards\" fullwidth_menu=\"off\" dropdown_menu_text_color=\"#ffffff\" _builder_version=\"3.26.3\" menu_font=\"|800||on|||||\" menu_text_color=\"#ffffff\" menu_font_size=\"22px\" menu_letter_spacing=\"5px\" background_color=\"#e02b20\" border_width_bottom=\"5px\" text_orientation=\"center\" background_layout=\"dark\" custom_padding=\"1px||0px||false|false\" z_index_tablet=\"500\" menu_text_shadow_horizontal_length_tablet=\"0px\" menu_text_shadow_vertical_length_tablet=\"0px\" menu_text_shadow_blur_strength_tablet=\"1px\" border_width_bottom_tablet=\"5px\" border_width_bottom_phone=\"5px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" custom_margin=\"0px||||false|false\" /][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" background_color=\"#e02b20\" width=\"1080px\" module_alignment=\"center\" custom_padding=\"10px||0px|||\" prev_background_color=\"#ffffff\"][et_pb_row _builder_version=\"3.26.3\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.26.3\" background_color=\"#ffffff\" text_text_shadow_horizontal_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\"]\r\n\r\n<h1 style=\"text-align: center;\">BOOK REVIEWS</h1>\r\n<h2 style=\"text-align: center;\">Coming soon.</h2>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Books','','inherit','closed','closed','','33-revision-v1','','','2019-07-24 21:37:58','2019-07-24 21:37:58','',33,'http://itcamefrombeyondpulp.com/uncategorized/33-revision-v1/',0,'revision','',0),(104,1,'2019-07-23 02:37:03','2019-07-23 02:37:03','[et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" custom_padding=\"0px|||||\" next_background_color=\"#e02b20\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\" global_module=\"74\"][et_pb_row global_parent=\"74\" custom_padding=\"0px||0px|||\" custom_margin=\"|auto|-66px|auto||\" _builder_version=\"3.26.3\"][et_pb_column type=\"4_4\" global_parent=\"74\" _builder_version=\"3.26.3\"][et_pb_image global_parent=\"74\" src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/itfbp-header.jpg\" _builder_version=\"3.26.3\" url=\"http://itcamefrombeyondpulp.com\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\"]\r\n\r\n</p>\r\n<p>\r\n\r\n[/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" background_color=\"#e02b20\" width=\"1080px\" module_alignment=\"center\" custom_padding=\"10px||0px|||\" border_width_bottom=\"5px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\" border_width_bottom_tablet=\"5px\" border_width_bottom_phone=\"5px\" global_module=\"97\" next_background_color=\"#000000\" prev_background_color=\"#ffffff\"][et_pb_row global_parent=\"97\" column_structure=\"1_3,1_3,1_3\" custom_padding=\"0px|0px|0px|0px\" custom_margin=\"0px|0px|0px|0px\" _builder_version=\"3.26.3\" min_height=\"0px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\" module_alignment=\"center\"][et_pb_column type=\"1_3\" global_parent=\"97\" _builder_version=\"3.26.3\"][et_pb_text global_parent=\"97\" _builder_version=\"3.26.3\" header_text_color=\"#ffffff\" z_index_tablet=\"500\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" text_text_shadow_horizontal_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_vertical_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_blur_strength=\"text_text_shadow_style,%91object Object%93\" link_text_shadow_horizontal_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_vertical_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_blur_strength=\"link_text_shadow_style,%91object Object%93\" ul_text_shadow_horizontal_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_vertical_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_blur_strength=\"ul_text_shadow_style,%91object Object%93\" ol_text_shadow_horizontal_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_vertical_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_blur_strength=\"ol_text_shadow_style,%91object Object%93\" quote_text_shadow_horizontal_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_vertical_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_blur_strength=\"quote_text_shadow_style,%91object Object%93\" header_text_shadow_horizontal_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_vertical_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_blur_strength=\"header_text_shadow_style,%91object Object%93\" header_2_text_shadow_horizontal_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_vertical_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_blur_strength=\"header_2_text_shadow_style,%91object Object%93\" header_3_text_shadow_horizontal_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_vertical_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_blur_strength=\"header_3_text_shadow_style,%91object Object%93\" header_4_text_shadow_horizontal_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_vertical_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_blur_strength=\"header_4_text_shadow_style,%91object Object%93\" header_5_text_shadow_horizontal_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_vertical_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_blur_strength=\"header_5_text_shadow_style,%91object Object%93\" header_6_text_shadow_horizontal_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_vertical_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_blur_strength=\"header_6_text_shadow_style,%91object Object%93\"]\r\n\r\n<h1 style=\"text-align: center;\"><a href=\"http://itcamefrombeyondpulp.com/movies/\"><strong>MOVIES &amp; TV</strong></a></h1>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" global_parent=\"97\" _builder_version=\"3.26.3\"][et_pb_text global_parent=\"97\" _builder_version=\"3.26.3\" header_text_color=\"#ffffff\" z_index_tablet=\"500\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" text_text_shadow_horizontal_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_vertical_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_blur_strength=\"text_text_shadow_style,%91object Object%93\" link_text_shadow_horizontal_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_vertical_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_blur_strength=\"link_text_shadow_style,%91object Object%93\" ul_text_shadow_horizontal_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_vertical_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_blur_strength=\"ul_text_shadow_style,%91object Object%93\" ol_text_shadow_horizontal_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_vertical_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_blur_strength=\"ol_text_shadow_style,%91object Object%93\" quote_text_shadow_horizontal_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_vertical_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_blur_strength=\"quote_text_shadow_style,%91object Object%93\" header_text_shadow_horizontal_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_vertical_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_blur_strength=\"header_text_shadow_style,%91object Object%93\" header_2_text_shadow_horizontal_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_vertical_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_blur_strength=\"header_2_text_shadow_style,%91object Object%93\" header_3_text_shadow_horizontal_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_vertical_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_blur_strength=\"header_3_text_shadow_style,%91object Object%93\" header_4_text_shadow_horizontal_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_vertical_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_blur_strength=\"header_4_text_shadow_style,%91object Object%93\" header_5_text_shadow_horizontal_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_vertical_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_blur_strength=\"header_5_text_shadow_style,%91object Object%93\" header_6_text_shadow_horizontal_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_vertical_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_blur_strength=\"header_6_text_shadow_style,%91object Object%93\"]\r\n\r\n<h1 style=\"text-align: center;\"><a href=\"http://itcamefrombeyondpulp.com/books/\"><strong>BOOKS</strong></a></h1>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" global_parent=\"97\" _builder_version=\"3.26.3\"][et_pb_text global_parent=\"97\" _builder_version=\"3.26.3\" header_text_color=\"#ffffff\" z_index_tablet=\"500\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" text_text_shadow_horizontal_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_vertical_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_blur_strength=\"text_text_shadow_style,%91object Object%93\" link_text_shadow_horizontal_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_vertical_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_blur_strength=\"link_text_shadow_style,%91object Object%93\" ul_text_shadow_horizontal_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_vertical_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_blur_strength=\"ul_text_shadow_style,%91object Object%93\" ol_text_shadow_horizontal_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_vertical_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_blur_strength=\"ol_text_shadow_style,%91object Object%93\" quote_text_shadow_horizontal_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_vertical_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_blur_strength=\"quote_text_shadow_style,%91object Object%93\" header_text_shadow_horizontal_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_vertical_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_blur_strength=\"header_text_shadow_style,%91object Object%93\" header_2_text_shadow_horizontal_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_vertical_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_blur_strength=\"header_2_text_shadow_style,%91object Object%93\" header_3_text_shadow_horizontal_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_vertical_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_blur_strength=\"header_3_text_shadow_style,%91object Object%93\" header_4_text_shadow_horizontal_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_vertical_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_blur_strength=\"header_4_text_shadow_style,%91object Object%93\" header_5_text_shadow_horizontal_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_vertical_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_blur_strength=\"header_5_text_shadow_style,%91object Object%93\" header_6_text_shadow_horizontal_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_vertical_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_blur_strength=\"header_6_text_shadow_style,%91object Object%93\"]\r\n\r\n<h1 style=\"text-align: center;\"><a href=\"http://itcamefrombeyondpulp.com/sales/\"><strong>SALES</strong></a></h1>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" background_color=\"#e02b20\" width=\"1080px\" module_alignment=\"center\" custom_padding=\"10px||0px|||\" prev_background_color=\"#000000\"][et_pb_row _builder_version=\"3.26.3\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.26.3\" background_color=\"#ffffff\" text_text_shadow_horizontal_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\"]\r\n\r\n<h1 style=\"text-align: center;\">BOOK REVIEWS</h1><h2 style=\"text-align: center;\">Coming soon.</h2>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Books','','inherit','closed','closed','','33-revision-v1','','','2019-07-23 02:37:03','2019-07-23 02:37:03','',33,'http://itcamefrombeyondpulp.com/uncategorized/33-revision-v1/',0,'revision','',0),(202,1,'2019-07-24 21:39:57','2019-07-24 21:39:57','[et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" custom_padding=\"0px|||||\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" custom_margin=\"||11px|||\" next_background_color=\"#000000\" global_module=\"74\"][et_pb_row global_parent=\"74\" custom_padding=\"0px||0px|||\" custom_margin=\"|auto|-66px|auto||\" _builder_version=\"3.26.3\"][et_pb_column type=\"4_4\" global_parent=\"74\" _builder_version=\"3.26.3\"][et_pb_image global_parent=\"74\" src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/itfbp-header.jpg\" url=\"http://itcamefrombeyondpulp.com\" _builder_version=\"3.26.3\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.26.3\" width=\"1080px\" inner_module_alignment=\"center\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" module_alignment=\"center\" custom_padding=\"0px||0px||false|false\" next_background_color=\"#e02b20\" global_module=\"175\" prev_background_color=\"#000000\"][et_pb_fullwidth_menu global_parent=\"175\" menu_id=\"2\" submenu_direction=\"downwards\" fullwidth_menu=\"off\" dropdown_menu_text_color=\"#ffffff\" _builder_version=\"3.26.3\" menu_font=\"|800||on|||||\" menu_text_color=\"#ffffff\" menu_font_size=\"22px\" menu_letter_spacing=\"5px\" background_color=\"#e02b20\" border_width_bottom=\"5px\" text_orientation=\"center\" background_layout=\"dark\" custom_padding=\"1px||0px||false|false\" z_index_tablet=\"500\" menu_text_shadow_horizontal_length_tablet=\"0px\" menu_text_shadow_vertical_length_tablet=\"0px\" menu_text_shadow_blur_strength_tablet=\"1px\" border_width_bottom_tablet=\"5px\" border_width_bottom_phone=\"5px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" custom_margin=\"0px||||false|false\" /][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" background_color=\"#e02b20\" width=\"1080px\" module_alignment=\"center\" custom_padding=\"69px||0px|||\" prev_background_color=\"#ffffff\"][et_pb_row _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"2px|||||\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.26.3\" z_index_tablet=\"500\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" background_color=\"#ffffff\" text_text_shadow_horizontal_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_vertical_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_blur_strength=\"text_text_shadow_style,%91object Object%93\" link_text_shadow_horizontal_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_vertical_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_blur_strength=\"link_text_shadow_style,%91object Object%93\" ul_text_shadow_horizontal_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_vertical_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_blur_strength=\"ul_text_shadow_style,%91object Object%93\" ol_text_shadow_horizontal_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_vertical_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_blur_strength=\"ol_text_shadow_style,%91object Object%93\" quote_text_shadow_horizontal_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_vertical_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_blur_strength=\"quote_text_shadow_style,%91object Object%93\" header_text_shadow_horizontal_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_vertical_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_blur_strength=\"header_text_shadow_style,%91object Object%93\" header_2_text_shadow_horizontal_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_vertical_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_blur_strength=\"header_2_text_shadow_style,%91object Object%93\" header_3_text_shadow_horizontal_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_vertical_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_blur_strength=\"header_3_text_shadow_style,%91object Object%93\" header_4_text_shadow_horizontal_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_vertical_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_blur_strength=\"header_4_text_shadow_style,%91object Object%93\" header_5_text_shadow_horizontal_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_vertical_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_blur_strength=\"header_5_text_shadow_style,%91object Object%93\" header_6_text_shadow_horizontal_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_vertical_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_blur_strength=\"header_6_text_shadow_style,%91object Object%93\"]\r\n\r\n<h1 style=\"text-align: center;\">SALES</h1>\r\n<h2 style=\"text-align: center;\">Coming soon.</h2>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Sales','','inherit','closed','closed','','59-revision-v1','','','2019-07-24 21:39:57','2019-07-24 21:39:57','',59,'http://itcamefrombeyondpulp.com/uncategorized/59-revision-v1/',0,'revision','',0),(106,1,'2019-07-23 02:38:02','2019-07-23 02:38:02','[et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" custom_padding=\"0px|||||\" next_background_color=\"#e02b20\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\" global_module=\"74\"][et_pb_row global_parent=\"74\" custom_padding=\"0px||0px|||\" custom_margin=\"|auto|-66px|auto||\" _builder_version=\"3.26.3\"][et_pb_column type=\"4_4\" global_parent=\"74\" _builder_version=\"3.26.3\"][et_pb_image global_parent=\"74\" src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/itfbp-header.jpg\" _builder_version=\"3.26.3\" url=\"http://itcamefrombeyondpulp.com\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\"]\r\n\r\n</p>\r\n<p>\r\n\r\n[/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" background_color=\"#e02b20\" width=\"1080px\" module_alignment=\"center\" custom_padding=\"10px||0px|||\" border_width_bottom=\"5px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\" border_width_bottom_tablet=\"5px\" border_width_bottom_phone=\"5px\" next_background_color=\"#000000\" global_module=\"97\" prev_background_color=\"#ffffff\"][et_pb_row global_parent=\"97\" column_structure=\"1_3,1_3,1_3\" custom_padding=\"0px|0px|0px|0px\" custom_margin=\"0px|0px|0px|0px\" _builder_version=\"3.26.3\" min_height=\"0px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\" module_alignment=\"center\"][et_pb_column type=\"1_3\" global_parent=\"97\" _builder_version=\"3.26.3\"][et_pb_text global_parent=\"97\" _builder_version=\"3.26.3\" header_text_color=\"#ffffff\" z_index_tablet=\"500\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" text_text_shadow_horizontal_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_vertical_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_blur_strength=\"text_text_shadow_style,%91object Object%93\" link_text_shadow_horizontal_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_vertical_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_blur_strength=\"link_text_shadow_style,%91object Object%93\" ul_text_shadow_horizontal_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_vertical_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_blur_strength=\"ul_text_shadow_style,%91object Object%93\" ol_text_shadow_horizontal_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_vertical_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_blur_strength=\"ol_text_shadow_style,%91object Object%93\" quote_text_shadow_horizontal_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_vertical_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_blur_strength=\"quote_text_shadow_style,%91object Object%93\" header_text_shadow_horizontal_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_vertical_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_blur_strength=\"header_text_shadow_style,%91object Object%93\" header_2_text_shadow_horizontal_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_vertical_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_blur_strength=\"header_2_text_shadow_style,%91object Object%93\" header_3_text_shadow_horizontal_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_vertical_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_blur_strength=\"header_3_text_shadow_style,%91object Object%93\" header_4_text_shadow_horizontal_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_vertical_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_blur_strength=\"header_4_text_shadow_style,%91object Object%93\" header_5_text_shadow_horizontal_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_vertical_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_blur_strength=\"header_5_text_shadow_style,%91object Object%93\" header_6_text_shadow_horizontal_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_vertical_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_blur_strength=\"header_6_text_shadow_style,%91object Object%93\"]\r\n\r\n<h1 style=\"text-align: center;\"><a href=\"http://itcamefrombeyondpulp.com/movies/\"><strong>MOVIES &amp; TV</strong></a></h1>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" global_parent=\"97\" _builder_version=\"3.26.3\"][et_pb_text global_parent=\"97\" _builder_version=\"3.26.3\" header_text_color=\"#ffffff\" z_index_tablet=\"500\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" text_text_shadow_horizontal_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_vertical_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_blur_strength=\"text_text_shadow_style,%91object Object%93\" link_text_shadow_horizontal_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_vertical_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_blur_strength=\"link_text_shadow_style,%91object Object%93\" ul_text_shadow_horizontal_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_vertical_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_blur_strength=\"ul_text_shadow_style,%91object Object%93\" ol_text_shadow_horizontal_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_vertical_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_blur_strength=\"ol_text_shadow_style,%91object Object%93\" quote_text_shadow_horizontal_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_vertical_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_blur_strength=\"quote_text_shadow_style,%91object Object%93\" header_text_shadow_horizontal_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_vertical_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_blur_strength=\"header_text_shadow_style,%91object Object%93\" header_2_text_shadow_horizontal_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_vertical_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_blur_strength=\"header_2_text_shadow_style,%91object Object%93\" header_3_text_shadow_horizontal_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_vertical_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_blur_strength=\"header_3_text_shadow_style,%91object Object%93\" header_4_text_shadow_horizontal_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_vertical_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_blur_strength=\"header_4_text_shadow_style,%91object Object%93\" header_5_text_shadow_horizontal_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_vertical_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_blur_strength=\"header_5_text_shadow_style,%91object Object%93\" header_6_text_shadow_horizontal_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_vertical_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_blur_strength=\"header_6_text_shadow_style,%91object Object%93\"]\r\n\r\n<h1 style=\"text-align: center;\"><a href=\"http://itcamefrombeyondpulp.com/books/\"><strong>BOOKS</strong></a></h1>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" global_parent=\"97\" _builder_version=\"3.26.3\"][et_pb_text global_parent=\"97\" _builder_version=\"3.26.3\" header_text_color=\"#ffffff\" z_index_tablet=\"500\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" text_text_shadow_horizontal_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_vertical_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_blur_strength=\"text_text_shadow_style,%91object Object%93\" link_text_shadow_horizontal_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_vertical_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_blur_strength=\"link_text_shadow_style,%91object Object%93\" ul_text_shadow_horizontal_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_vertical_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_blur_strength=\"ul_text_shadow_style,%91object Object%93\" ol_text_shadow_horizontal_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_vertical_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_blur_strength=\"ol_text_shadow_style,%91object Object%93\" quote_text_shadow_horizontal_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_vertical_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_blur_strength=\"quote_text_shadow_style,%91object Object%93\" header_text_shadow_horizontal_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_vertical_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_blur_strength=\"header_text_shadow_style,%91object Object%93\" header_2_text_shadow_horizontal_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_vertical_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_blur_strength=\"header_2_text_shadow_style,%91object Object%93\" header_3_text_shadow_horizontal_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_vertical_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_blur_strength=\"header_3_text_shadow_style,%91object Object%93\" header_4_text_shadow_horizontal_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_vertical_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_blur_strength=\"header_4_text_shadow_style,%91object Object%93\" header_5_text_shadow_horizontal_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_vertical_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_blur_strength=\"header_5_text_shadow_style,%91object Object%93\" header_6_text_shadow_horizontal_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_vertical_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_blur_strength=\"header_6_text_shadow_style,%91object Object%93\"]\r\n\r\n<h1 style=\"text-align: center;\"><a href=\"http://itcamefrombeyondpulp.com/sales/\"><strong>SALES</strong></a></h1>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" background_color=\"#e02b20\" width=\"1080px\" module_alignment=\"center\" custom_padding=\"69px||0px|||\" prev_background_color=\"#000000\"][et_pb_row _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"2px|||||\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.26.3\" z_index_tablet=\"500\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" background_color=\"#ffffff\" text_text_shadow_horizontal_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_vertical_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_blur_strength=\"text_text_shadow_style,%91object Object%93\" link_text_shadow_horizontal_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_vertical_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_blur_strength=\"link_text_shadow_style,%91object Object%93\" ul_text_shadow_horizontal_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_vertical_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_blur_strength=\"ul_text_shadow_style,%91object Object%93\" ol_text_shadow_horizontal_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_vertical_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_blur_strength=\"ol_text_shadow_style,%91object Object%93\" quote_text_shadow_horizontal_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_vertical_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_blur_strength=\"quote_text_shadow_style,%91object Object%93\" header_text_shadow_horizontal_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_vertical_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_blur_strength=\"header_text_shadow_style,%91object Object%93\" header_2_text_shadow_horizontal_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_vertical_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_blur_strength=\"header_2_text_shadow_style,%91object Object%93\" header_3_text_shadow_horizontal_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_vertical_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_blur_strength=\"header_3_text_shadow_style,%91object Object%93\" header_4_text_shadow_horizontal_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_vertical_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_blur_strength=\"header_4_text_shadow_style,%91object Object%93\" header_5_text_shadow_horizontal_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_vertical_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_blur_strength=\"header_5_text_shadow_style,%91object Object%93\" header_6_text_shadow_horizontal_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_vertical_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_blur_strength=\"header_6_text_shadow_style,%91object Object%93\"]\r\n\r\n<h1 style=\"text-align: center;\">SALES</h1>\r\n<h2 style=\"text-align: center;\">Coming soon.</h2>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Sales','','inherit','closed','closed','','59-revision-v1','','','2019-07-23 02:38:02','2019-07-23 02:38:02','',59,'http://itcamefrombeyondpulp.com/uncategorized/59-revision-v1/',0,'revision','',0),(109,1,'2019-07-23 02:43:15','2019-07-23 02:43:15','[et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" custom_padding=\"0px|||||\" next_background_color=\"#e02b20\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\" global_module=\"74\"][et_pb_row global_parent=\"74\" custom_padding=\"0px||0px|||\" custom_margin=\"|auto|-66px|auto||\" _builder_version=\"3.26.3\"][et_pb_column type=\"4_4\" global_parent=\"74\" _builder_version=\"3.26.3\"][et_pb_image global_parent=\"74\" src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/itfbp-header.jpg\" _builder_version=\"3.26.3\" url=\"http://itcamefrombeyondpulp.com\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" background_color=\"#e02b20\" width=\"1080px\" module_alignment=\"center\" custom_padding=\"10px||0px|||\" border_width_bottom=\"5px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\" border_width_bottom_tablet=\"5px\" border_width_bottom_phone=\"5px\" global_module=\"97\" prev_background_color=\"#ffffff\" next_background_color=\"#000000\"][et_pb_row global_parent=\"97\" column_structure=\"1_3,1_3,1_3\" custom_padding=\"0px|0px|0px|0px\" custom_margin=\"0px|0px|0px|0px\" _builder_version=\"3.26.3\" min_height=\"0px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\" module_alignment=\"center\"][et_pb_column type=\"1_3\" global_parent=\"97\" _builder_version=\"3.26.3\"][et_pb_text global_parent=\"97\" _builder_version=\"3.26.3\" header_text_color=\"#ffffff\" z_index_tablet=\"500\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" text_text_shadow_horizontal_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_vertical_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_blur_strength=\"text_text_shadow_style,%91object Object%93\" link_text_shadow_horizontal_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_vertical_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_blur_strength=\"link_text_shadow_style,%91object Object%93\" ul_text_shadow_horizontal_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_vertical_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_blur_strength=\"ul_text_shadow_style,%91object Object%93\" ol_text_shadow_horizontal_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_vertical_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_blur_strength=\"ol_text_shadow_style,%91object Object%93\" quote_text_shadow_horizontal_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_vertical_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_blur_strength=\"quote_text_shadow_style,%91object Object%93\" header_text_shadow_horizontal_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_vertical_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_blur_strength=\"header_text_shadow_style,%91object Object%93\" header_2_text_shadow_horizontal_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_vertical_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_blur_strength=\"header_2_text_shadow_style,%91object Object%93\" header_3_text_shadow_horizontal_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_vertical_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_blur_strength=\"header_3_text_shadow_style,%91object Object%93\" header_4_text_shadow_horizontal_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_vertical_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_blur_strength=\"header_4_text_shadow_style,%91object Object%93\" header_5_text_shadow_horizontal_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_vertical_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_blur_strength=\"header_5_text_shadow_style,%91object Object%93\" header_6_text_shadow_horizontal_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_vertical_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_blur_strength=\"header_6_text_shadow_style,%91object Object%93\"]\r\n\r\n<h1 style=\"text-align: center;\"><a href=\"http://itcamefrombeyondpulp.com/movies/\"><strong>MOVIES &amp; TV</strong></a></h1>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" global_parent=\"97\" _builder_version=\"3.26.3\"][et_pb_text global_parent=\"97\" _builder_version=\"3.26.3\" header_text_color=\"#ffffff\" z_index_tablet=\"500\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" text_text_shadow_horizontal_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_vertical_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_blur_strength=\"text_text_shadow_style,%91object Object%93\" link_text_shadow_horizontal_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_vertical_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_blur_strength=\"link_text_shadow_style,%91object Object%93\" ul_text_shadow_horizontal_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_vertical_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_blur_strength=\"ul_text_shadow_style,%91object Object%93\" ol_text_shadow_horizontal_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_vertical_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_blur_strength=\"ol_text_shadow_style,%91object Object%93\" quote_text_shadow_horizontal_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_vertical_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_blur_strength=\"quote_text_shadow_style,%91object Object%93\" header_text_shadow_horizontal_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_vertical_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_blur_strength=\"header_text_shadow_style,%91object Object%93\" header_2_text_shadow_horizontal_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_vertical_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_blur_strength=\"header_2_text_shadow_style,%91object Object%93\" header_3_text_shadow_horizontal_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_vertical_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_blur_strength=\"header_3_text_shadow_style,%91object Object%93\" header_4_text_shadow_horizontal_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_vertical_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_blur_strength=\"header_4_text_shadow_style,%91object Object%93\" header_5_text_shadow_horizontal_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_vertical_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_blur_strength=\"header_5_text_shadow_style,%91object Object%93\" header_6_text_shadow_horizontal_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_vertical_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_blur_strength=\"header_6_text_shadow_style,%91object Object%93\"]\r\n\r\n<h1 style=\"text-align: center;\"><a href=\"http://itcamefrombeyondpulp.com/books/\"><strong>BOOKS</strong></a></h1>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" global_parent=\"97\" _builder_version=\"3.26.3\"][et_pb_text global_parent=\"97\" _builder_version=\"3.26.3\" header_text_color=\"#ffffff\" z_index_tablet=\"500\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" text_text_shadow_horizontal_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_vertical_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_blur_strength=\"text_text_shadow_style,%91object Object%93\" link_text_shadow_horizontal_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_vertical_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_blur_strength=\"link_text_shadow_style,%91object Object%93\" ul_text_shadow_horizontal_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_vertical_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_blur_strength=\"ul_text_shadow_style,%91object Object%93\" ol_text_shadow_horizontal_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_vertical_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_blur_strength=\"ol_text_shadow_style,%91object Object%93\" quote_text_shadow_horizontal_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_vertical_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_blur_strength=\"quote_text_shadow_style,%91object Object%93\" header_text_shadow_horizontal_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_vertical_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_blur_strength=\"header_text_shadow_style,%91object Object%93\" header_2_text_shadow_horizontal_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_vertical_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_blur_strength=\"header_2_text_shadow_style,%91object Object%93\" header_3_text_shadow_horizontal_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_vertical_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_blur_strength=\"header_3_text_shadow_style,%91object Object%93\" header_4_text_shadow_horizontal_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_vertical_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_blur_strength=\"header_4_text_shadow_style,%91object Object%93\" header_5_text_shadow_horizontal_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_vertical_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_blur_strength=\"header_5_text_shadow_style,%91object Object%93\" header_6_text_shadow_horizontal_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_vertical_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_blur_strength=\"header_6_text_shadow_style,%91object Object%93\"]\r\n\r\n<h1 style=\"text-align: center;\"><a href=\"http://itcamefrombeyondpulp.com/sales/\"><strong>SALES</strong></a></h1>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" background_color=\"#e02b20\" width=\"1080px\" module_alignment=\"center\" custom_padding=\"10px||0px|||\" prev_background_color=\"#000000\"][et_pb_row _builder_version=\"3.26.3\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" background_color=\"#ffffff\" custom_padding=\"10px|10px||10px|false|false\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.26.3\" z_index_tablet=\"500\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\"]\r\n\r\n<h3 style=\"text-align: center;\"><strong><em>Serenity</em> (Joss Whedon, 2005, 119 min.)</strong></h3>\r\n<p>Joss Whedon\'s short-lived <i>Firefly</i> was one of the best science fiction shows ever made. It lasted 14 episodes, three of which never aired. Fox did everything it could to destroy it, airing the episodes out of order before finally pulling the plug. Out of Whedon\'s canon—the other shows being <i>Buffy the Vampire Slayer</i> and its spinoff <i>Angel</i>—<i>Firefly</i> showed the most potential for long-term story arcs and character developments. There were ample signs that Whedon hadn\'t even gotten started on all of the themes he wanted to explore, which is a bad idea if you\'re making a cult television show. The very things that made it a slowly building masterpiece likely doomed it: trigger-happy TV execs didn\'t see it going anywhere, so they offed it. The show had a cult following, though, and perhaps their efforts had something to do with Whedon getting the green light to go ahead on a culmination of sorts. The film has most of the qualities that made the show so wonderful, including the most important one: the feeling that it\'s not enough.</p>\r\n<p>The film is not perfect: the necessary scenes that clue newcomers in to the story, and the rather abrupt ending, leave a little to be desired. But the film contains sustained, masterful sequences, a surprise plot development that\'s like a kick in the teeth, and a memorable bad guy in Chiwetel Ejiofor. Also, and most importantly, it contains the things that make Joss Whedon\'s creations memorable: the interaction between characters who feel like they\'re real, who have histories that don\'t come across as plot points, who we can imagine existing before and after the film\'s events. There\'s comedy, there\'s tragedy, there\'s emotion, and Whedon is a master at balancing it all.</p>\r\n<p>Some backstory: it\'s around 500 years in the future, and around six years since the galactic Alliance has put down a rebellion by independent planets. The captain of the spaceship Serenity, Malcolm \"Mal\" Reynolds (Nathan Fillion), and his first mate Zoe (Gina Torres), fought on the side of the rebels. Since the war, they\'ve existed on the periphery, taking legal shipping jobs and illegal smuggling jobs. Slowly, they pieced together a crew: the snarky pilot Wash (Alan Tudyk), who is now Zoe\'s husband; the meatheaded, trigger-happy Jayne (Adam Baldwin); and the genius mechanic Kaylee (Jewel Staite). A little less than a year ago, they picked up Simon (Sean Maher), a doctor, and River (Summer Glau), his psychic/psychotic sister. The Alliance had been performing experiments on River, Simon rescued her, and now they\'re on the run. Although Mal pretends to be a hardened criminal, he has a heroic streak a mile wide, so he and the rest of the crew hide and protect Simon and River, as the Alliance comes closer and closer to finding them. That gets us to the beginning of the film.</p>\r\n<p>The plot involves a journey to the edge of the galaxy through the territory inhabited by Reavers, horrific men who murder and rape their way through the galaxy, to a mysterious planet where they discover a horrible secret that I wouldn\'t dream of divulging here. In the series, the Alliance sent various bounty hunters and operatives to attempt to kidnap River. Now there\'s someone new coming after her: an unnamed operative (Chiwetel Ejiofor), who has the serenity and sureness of a mad priest. It\'s his job to get River back, and he\'s capable of doing anything it takes to do so, including killing everyone in his path with a scary calm. He\'s doing it all in the name of a future without strife. He\'s scary because he\'s not angry or upset, or happy or eager. He\'s not doing it for reward; he doesn\'t think there\'s any place like him in the future he\'s working toward. I saw strong parallels between him and suicide bombers, except that he\'s sure that he can do more damage for the cause alive than dead.</p>\r\n<p>The film is Whedon\'s patented genre mash-up: science fiction, westerns, horror, martial arts—there\'s a place for everything in his universe. Sometimes there are gaps in the logic, though: the second language of space is Chinese, which is usually used to curse, but there\'s nary an Asian person to be seen. It\'s a matter of convenience that most of the planets in this galaxy, although \"terraformed,\" look like the dusty sets of a thousand oaters, because what Whedon most wanted to make here is an old-fashioned Western, complete with chases on horses, revolvers (which are space-age because they make electronic sounds before firing), funky 19th-century dress, and a sometimes amusingly anachronistic dialect that favors double negatives. Don\'t think for a minute that Whedon isn\'t chuckling along with us at some of it, though: he\'s one of the best writers of understated comedy and surprise laughs in the business.</p>\r\n<p>As I said, the ending feels false: it involves a seismic shift in a certain character\'s worldview, one that seems highly unlikely given the way that character was developed up to that point. It\'s a nice thought, a sort of shiny \"the truth will set you free\" twist, but it doesn\'t fit. However, it\'s the only real miscue in the film. Fans of the series will find everything they were hoping for, and people unfamiliar with it will likely find a rousing two hours of old-fashioned entertainment.</p>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Serenity (2005)','Joss Whedon\'s extension of <i>Firefly</i> has everything the show had, including the feeling that it\'s not enough.','inherit','closed','closed','','39-revision-v1','','','2019-07-23 02:43:15','2019-07-23 02:43:15','',39,'http://itcamefrombeyondpulp.com/uncategorized/39-revision-v1/',0,'revision','',0),(110,1,'2019-07-23 02:46:26','2019-07-23 02:46:26','[et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" custom_padding=\"0px|||||\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" custom_margin=\"||11px|||\" next_background_color=\"#000000\" global_module=\"74\"][et_pb_row global_parent=\"74\" custom_padding=\"0px||0px|||\" custom_margin=\"|auto|-66px|auto||\" _builder_version=\"3.26.3\"][et_pb_column type=\"4_4\" global_parent=\"74\" _builder_version=\"3.26.3\"][et_pb_image global_parent=\"74\" src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/header.jpg\" url=\"http://itcamefrombeyondpulp.com\" _builder_version=\"3.26.3\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.26.3\" width=\"1080px\" inner_module_alignment=\"center\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" module_alignment=\"center\" custom_padding=\"0px||0px||false|false\" next_background_color=\"#e02b20\" global_module=\"175\" prev_background_color=\"#000000\"][et_pb_fullwidth_menu global_parent=\"175\" menu_id=\"2\" submenu_direction=\"downwards\" fullwidth_menu=\"off\" dropdown_menu_text_color=\"#ffffff\" _builder_version=\"3.26.3\" menu_font=\"|800||on|||||\" menu_text_color=\"#ffffff\" menu_font_size=\"22px\" menu_letter_spacing=\"5px\" background_color=\"#e02b20\" border_width_bottom=\"5px\" text_orientation=\"center\" background_layout=\"dark\" custom_padding=\"1px||0px||false|false\" z_index_tablet=\"500\" menu_text_shadow_horizontal_length_tablet=\"0px\" menu_text_shadow_vertical_length_tablet=\"0px\" menu_text_shadow_blur_strength_tablet=\"1px\" border_width_bottom_tablet=\"5px\" border_width_bottom_phone=\"5px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" custom_margin=\"0px||||false|false\" /][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" background_color=\"#e02b20\" width=\"1080px\" module_alignment=\"center\" custom_padding=\"10px||0px|||\" prev_background_color=\"#ffffff\"][et_pb_row _builder_version=\"3.26.3\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" background_color=\"#ffffff\" custom_padding=\"10px|10px||10px|false|false\" border_width_bottom=\"5px\" border_color_bottom=\"#e02b20\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image _builder_version=\"3.26.3\" src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/serenity.jpg\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\" /][et_pb_text _builder_version=\"3.26.3\" z_index_tablet=\"500\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\"]\r\n\r\n<h3 style=\"text-align: center;\"><strong><em>Serenity</em> (Joss Whedon, 2005, 119 min.)</strong></h3>\r\n<p>Joss Whedon\'s short-lived <i>Firefly</i> was one of the best science fiction shows ever made. It lasted 14 episodes, three of which never aired. Fox did everything it could to destroy it, airing the episodes out of order before finally pulling the plug. Out of Whedon\'s canon—the other shows being <i>Buffy the Vampire Slayer</i> and its spinoff <i>Angel</i>—<i>Firefly</i> showed the most potential for long-term story arcs and character developments. There were ample signs that Whedon hadn\'t even gotten started on all of the themes he wanted to explore, which is a bad idea if you\'re making a cult television show. The very things that made it a slowly building masterpiece likely doomed it: trigger-happy TV execs didn\'t see it going anywhere, so they offed it. The show had a cult following, though, and perhaps their efforts had something to do with Whedon getting the green light to go ahead on a culmination of sorts. The film has most of the qualities that made the show so wonderful, including the most important one: the feeling that it\'s not enough.</p>\r\n<p>The film is not perfect: the necessary scenes that clue newcomers in to the story, and the rather abrupt ending, leave a little to be desired. But the film contains sustained, masterful sequences, a surprise plot development that\'s like a kick in the teeth, and a memorable bad guy in Chiwetel Ejiofor. Also, and most importantly, it contains the things that make Joss Whedon\'s creations memorable: the interaction between characters who feel like they\'re real, who have histories that don\'t come across as plot points, who we can imagine existing before and after the film\'s events. There\'s comedy, there\'s tragedy, there\'s emotion, and Whedon is a master at balancing it all.</p>\r\n<p>Some backstory: it\'s around 500 years in the future, and around six years since the galactic Alliance has put down a rebellion by independent planets. The captain of the spaceship Serenity, Malcolm \"Mal\" Reynolds (Nathan Fillion), and his first mate Zoe (Gina Torres), fought on the side of the rebels. Since the war, they\'ve existed on the periphery, taking legal shipping jobs and illegal smuggling jobs. Slowly, they pieced together a crew: the snarky pilot Wash (Alan Tudyk), who is now Zoe\'s husband; the meatheaded, trigger-happy Jayne (Adam Baldwin); and the genius mechanic Kaylee (Jewel Staite). A little less than a year ago, they picked up Simon (Sean Maher), a doctor, and River (Summer Glau), his psychic/psychotic sister. The Alliance had been performing experiments on River, Simon rescued her, and now they\'re on the run. Although Mal pretends to be a hardened criminal, he has a heroic streak a mile wide, so he and the rest of the crew hide and protect Simon and River, as the Alliance comes closer and closer to finding them. That gets us to the beginning of the film.</p>\r\n<p>The plot involves a journey to the edge of the galaxy through the territory inhabited by Reavers, horrific men who murder and rape their way through the galaxy, to a mysterious planet where they discover a horrible secret that I wouldn\'t dream of divulging here. In the series, the Alliance sent various bounty hunters and operatives to attempt to kidnap River. Now there\'s someone new coming after her: an unnamed operative (Chiwetel Ejiofor), who has the serenity and sureness of a mad priest. It\'s his job to get River back, and he\'s capable of doing anything it takes to do so, including killing everyone in his path with a scary calm. He\'s doing it all in the name of a future without strife. He\'s scary because he\'s not angry or upset, or happy or eager. He\'s not doing it for reward; he doesn\'t think there\'s any place like him in the future he\'s working toward. I saw strong parallels between him and suicide bombers, except that he\'s sure that he can do more damage for the cause alive than dead.</p>\r\n<p>The film is Whedon\'s patented genre mash-up: science fiction, westerns, horror, martial arts—there\'s a place for everything in his universe. Sometimes there are gaps in the logic, though: the second language of space is Chinese, which is usually used to curse, but there\'s nary an Asian person to be seen. It\'s a matter of convenience that most of the planets in this galaxy, although \"terraformed,\" look like the dusty sets of a thousand oaters, because what Whedon most wanted to make here is an old-fashioned Western, complete with chases on horses, revolvers (which are space-age because they make electronic sounds before firing), funky 19th-century dress, and a sometimes amusingly anachronistic dialect that favors double negatives. Don\'t think for a minute that Whedon isn\'t chuckling along with us at some of it, though: he\'s one of the best writers of understated comedy and surprise laughs in the business.</p>\r\n<p>As I said, the ending feels false: it involves a seismic shift in a certain character\'s worldview, one that seems highly unlikely given the way that character was developed up to that point. It\'s a nice thought, a sort of shiny \"the truth will set you free\" twist, but it doesn\'t fit. However, it\'s the only real miscue in the film. Fans of the series will find everything they were hoping for, and people unfamiliar with it will likely find a rousing two hours of old-fashioned entertainment.</p>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','movie posts','','publish','closed','closed','','movie-posts','','','2019-07-25 21:04:58','2019-07-25 21:04:58','',0,'http://itcamefrombeyondpulp.com/et_pb_layout/movie-posts/',0,'et_pb_layout','',0),(257,1,'2019-07-25 21:04:58','2019-07-25 21:04:58','[et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" custom_padding=\"0px|||||\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" custom_margin=\"||11px|||\" next_background_color=\"#000000\" global_module=\"74\"][et_pb_row global_parent=\"74\" custom_padding=\"0px||0px|||\" custom_margin=\"|auto|-66px|auto||\" _builder_version=\"3.26.3\"][et_pb_column type=\"4_4\" global_parent=\"74\" _builder_version=\"3.26.3\"][et_pb_image global_parent=\"74\" src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/header.jpg\" url=\"http://itcamefrombeyondpulp.com\" _builder_version=\"3.26.3\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.26.3\" width=\"1080px\" inner_module_alignment=\"center\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" module_alignment=\"center\" custom_padding=\"0px||0px||false|false\" next_background_color=\"#e02b20\" global_module=\"175\" prev_background_color=\"#000000\"][et_pb_fullwidth_menu global_parent=\"175\" menu_id=\"2\" submenu_direction=\"downwards\" fullwidth_menu=\"off\" dropdown_menu_text_color=\"#ffffff\" _builder_version=\"3.26.3\" menu_font=\"|800||on|||||\" menu_text_color=\"#ffffff\" menu_font_size=\"22px\" menu_letter_spacing=\"5px\" background_color=\"#e02b20\" border_width_bottom=\"5px\" text_orientation=\"center\" background_layout=\"dark\" custom_padding=\"1px||0px||false|false\" z_index_tablet=\"500\" menu_text_shadow_horizontal_length_tablet=\"0px\" menu_text_shadow_vertical_length_tablet=\"0px\" menu_text_shadow_blur_strength_tablet=\"1px\" border_width_bottom_tablet=\"5px\" border_width_bottom_phone=\"5px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" custom_margin=\"0px||||false|false\" /][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" background_color=\"#e02b20\" width=\"1080px\" module_alignment=\"center\" custom_padding=\"10px||0px|||\" prev_background_color=\"#ffffff\"][et_pb_row _builder_version=\"3.26.3\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" background_color=\"#ffffff\" custom_padding=\"10px|10px||10px|false|false\" border_width_bottom=\"5px\" border_color_bottom=\"#e02b20\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image _builder_version=\"3.26.3\" src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/serenity.jpg\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\" /][et_pb_text _builder_version=\"3.26.3\" z_index_tablet=\"500\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\"]\r\n\r\n<h3 style=\"text-align: center;\"><strong><em>Serenity</em> (Joss Whedon, 2005, 119 min.)</strong></h3>\r\n<p>Joss Whedon\'s short-lived <i>Firefly</i> was one of the best science fiction shows ever made. It lasted 14 episodes, three of which never aired. Fox did everything it could to destroy it, airing the episodes out of order before finally pulling the plug. Out of Whedon\'s canon—the other shows being <i>Buffy the Vampire Slayer</i> and its spinoff <i>Angel</i>—<i>Firefly</i> showed the most potential for long-term story arcs and character developments. There were ample signs that Whedon hadn\'t even gotten started on all of the themes he wanted to explore, which is a bad idea if you\'re making a cult television show. The very things that made it a slowly building masterpiece likely doomed it: trigger-happy TV execs didn\'t see it going anywhere, so they offed it. The show had a cult following, though, and perhaps their efforts had something to do with Whedon getting the green light to go ahead on a culmination of sorts. The film has most of the qualities that made the show so wonderful, including the most important one: the feeling that it\'s not enough.</p>\r\n<p>The film is not perfect: the necessary scenes that clue newcomers in to the story, and the rather abrupt ending, leave a little to be desired. But the film contains sustained, masterful sequences, a surprise plot development that\'s like a kick in the teeth, and a memorable bad guy in Chiwetel Ejiofor. Also, and most importantly, it contains the things that make Joss Whedon\'s creations memorable: the interaction between characters who feel like they\'re real, who have histories that don\'t come across as plot points, who we can imagine existing before and after the film\'s events. There\'s comedy, there\'s tragedy, there\'s emotion, and Whedon is a master at balancing it all.</p>\r\n<p>Some backstory: it\'s around 500 years in the future, and around six years since the galactic Alliance has put down a rebellion by independent planets. The captain of the spaceship Serenity, Malcolm \"Mal\" Reynolds (Nathan Fillion), and his first mate Zoe (Gina Torres), fought on the side of the rebels. Since the war, they\'ve existed on the periphery, taking legal shipping jobs and illegal smuggling jobs. Slowly, they pieced together a crew: the snarky pilot Wash (Alan Tudyk), who is now Zoe\'s husband; the meatheaded, trigger-happy Jayne (Adam Baldwin); and the genius mechanic Kaylee (Jewel Staite). A little less than a year ago, they picked up Simon (Sean Maher), a doctor, and River (Summer Glau), his psychic/psychotic sister. The Alliance had been performing experiments on River, Simon rescued her, and now they\'re on the run. Although Mal pretends to be a hardened criminal, he has a heroic streak a mile wide, so he and the rest of the crew hide and protect Simon and River, as the Alliance comes closer and closer to finding them. That gets us to the beginning of the film.</p>\r\n<p>The plot involves a journey to the edge of the galaxy through the territory inhabited by Reavers, horrific men who murder and rape their way through the galaxy, to a mysterious planet where they discover a horrible secret that I wouldn\'t dream of divulging here. In the series, the Alliance sent various bounty hunters and operatives to attempt to kidnap River. Now there\'s someone new coming after her: an unnamed operative (Chiwetel Ejiofor), who has the serenity and sureness of a mad priest. It\'s his job to get River back, and he\'s capable of doing anything it takes to do so, including killing everyone in his path with a scary calm. He\'s doing it all in the name of a future without strife. He\'s scary because he\'s not angry or upset, or happy or eager. He\'s not doing it for reward; he doesn\'t think there\'s any place like him in the future he\'s working toward. I saw strong parallels between him and suicide bombers, except that he\'s sure that he can do more damage for the cause alive than dead.</p>\r\n<p>The film is Whedon\'s patented genre mash-up: science fiction, westerns, horror, martial arts—there\'s a place for everything in his universe. Sometimes there are gaps in the logic, though: the second language of space is Chinese, which is usually used to curse, but there\'s nary an Asian person to be seen. It\'s a matter of convenience that most of the planets in this galaxy, although \"terraformed,\" look like the dusty sets of a thousand oaters, because what Whedon most wanted to make here is an old-fashioned Western, complete with chases on horses, revolvers (which are space-age because they make electronic sounds before firing), funky 19th-century dress, and a sometimes amusingly anachronistic dialect that favors double negatives. Don\'t think for a minute that Whedon isn\'t chuckling along with us at some of it, though: he\'s one of the best writers of understated comedy and surprise laughs in the business.</p>\r\n<p>As I said, the ending feels false: it involves a seismic shift in a certain character\'s worldview, one that seems highly unlikely given the way that character was developed up to that point. It\'s a nice thought, a sort of shiny \"the truth will set you free\" twist, but it doesn\'t fit. However, it\'s the only real miscue in the film. Fans of the series will find everything they were hoping for, and people unfamiliar with it will likely find a rousing two hours of old-fashioned entertainment.</p>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','movie posts','','inherit','closed','closed','','110-revision-v1','','','2019-07-25 21:04:58','2019-07-25 21:04:58','',110,'http://itcamefrombeyondpulp.com/uncategorized/110-revision-v1/',0,'revision','',0),(258,1,'2019-07-25 21:05:28','2019-07-25 21:05:28','[et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" custom_padding=\"0px|||||\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" custom_margin=\"||11px|||\" next_background_color=\"#000000\" template_type=\"section\"][et_pb_row custom_padding=\"0px||0px|||\" custom_margin=\"|auto|-66px|auto||\" _builder_version=\"3.26.3\"][et_pb_column type=\"4_4\" _builder_version=\"3.26.3\"][et_pb_image src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/header.jpg\" url=\"http://itcamefrombeyondpulp.com\" _builder_version=\"3.26.3\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" /][/et_pb_column][/et_pb_row][/et_pb_section]','header','','inherit','closed','closed','','74-revision-v1','','','2019-07-25 21:05:28','2019-07-25 21:05:28','',74,'http://itcamefrombeyondpulp.com/uncategorized/74-revision-v1/',0,'revision','',0),(249,1,'2019-07-25 20:53:35','2019-07-25 20:53:35','[et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" custom_padding=\"0px|||||\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" custom_margin=\"||11px|||\" next_background_color=\"#000000\" global_module=\"74\"][et_pb_row global_parent=\"74\" custom_padding=\"0px||0px|||\" custom_margin=\"|auto|-66px|auto||\" _builder_version=\"3.26.3\"][et_pb_column type=\"4_4\" global_parent=\"74\" _builder_version=\"3.26.3\"][et_pb_image global_parent=\"74\" src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/header.jpg\" url=\"http://itcamefrombeyondpulp.com\" _builder_version=\"3.26.3\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.26.3\" width=\"1080px\" inner_module_alignment=\"center\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" module_alignment=\"center\" custom_padding=\"0px||0px||false|false\" next_background_color=\"#e02b20\" global_module=\"175\" prev_background_color=\"#000000\"][et_pb_fullwidth_menu menu_id=\"2\" submenu_direction=\"downwards\" fullwidth_menu=\"off\" dropdown_menu_text_color=\"#ffffff\" _builder_version=\"3.26.3\" menu_font=\"|800||on|||||\" menu_text_color=\"#ffffff\" menu_font_size=\"22px\" menu_letter_spacing=\"5px\" background_color=\"#e02b20\" border_width_bottom=\"5px\" text_orientation=\"center\" background_layout=\"dark\" custom_padding=\"1px||0px||false|false\" z_index_tablet=\"500\" menu_text_shadow_horizontal_length_tablet=\"0px\" menu_text_shadow_vertical_length_tablet=\"0px\" menu_text_shadow_blur_strength_tablet=\"1px\" border_width_bottom_tablet=\"5px\" border_width_bottom_phone=\"5px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" custom_margin=\"0px||||false|false\" /][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" background_color=\"#e02b20\" width=\"1080px\" module_alignment=\"center\" custom_padding=\"10px||0px|||\" prev_background_color=\"#ffffff\"][et_pb_row _builder_version=\"3.26.3\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" background_color=\"#ffffff\" custom_padding=\"10px|10px||10px|false|false\" border_width_bottom=\"5px\" border_color_bottom=\"#e02b20\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image _builder_version=\"3.26.3\" src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/serenity.jpg\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\" /][et_pb_text _builder_version=\"3.26.3\" z_index_tablet=\"500\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\"]\r\n\r\n<h3 style=\"text-align: center;\"><strong><em>Serenity</em> (Joss Whedon, 2005, 119 min.)</strong></h3>\r\n<p>Joss Whedon\'s short-lived <i>Firefly</i> was one of the best science fiction shows ever made. It lasted 14 episodes, three of which never aired. Fox did everything it could to destroy it, airing the episodes out of order before finally pulling the plug. Out of Whedon\'s canon—the other shows being <i>Buffy the Vampire Slayer</i> and its spinoff <i>Angel</i>—<i>Firefly</i> showed the most potential for long-term story arcs and character developments. There were ample signs that Whedon hadn\'t even gotten started on all of the themes he wanted to explore, which is a bad idea if you\'re making a cult television show. The very things that made it a slowly building masterpiece likely doomed it: trigger-happy TV execs didn\'t see it going anywhere, so they offed it. The show had a cult following, though, and perhaps their efforts had something to do with Whedon getting the green light to go ahead on a culmination of sorts. The film has most of the qualities that made the show so wonderful, including the most important one: the feeling that it\'s not enough.</p>\r\n<p>The film is not perfect: the necessary scenes that clue newcomers in to the story, and the rather abrupt ending, leave a little to be desired. But the film contains sustained, masterful sequences, a surprise plot development that\'s like a kick in the teeth, and a memorable bad guy in Chiwetel Ejiofor. Also, and most importantly, it contains the things that make Joss Whedon\'s creations memorable: the interaction between characters who feel like they\'re real, who have histories that don\'t come across as plot points, who we can imagine existing before and after the film\'s events. There\'s comedy, there\'s tragedy, there\'s emotion, and Whedon is a master at balancing it all.</p>\r\n<p>Some backstory: it\'s around 500 years in the future, and around six years since the galactic Alliance has put down a rebellion by independent planets. The captain of the spaceship Serenity, Malcolm \"Mal\" Reynolds (Nathan Fillion), and his first mate Zoe (Gina Torres), fought on the side of the rebels. Since the war, they\'ve existed on the periphery, taking legal shipping jobs and illegal smuggling jobs. Slowly, they pieced together a crew: the snarky pilot Wash (Alan Tudyk), who is now Zoe\'s husband; the meatheaded, trigger-happy Jayne (Adam Baldwin); and the genius mechanic Kaylee (Jewel Staite). A little less than a year ago, they picked up Simon (Sean Maher), a doctor, and River (Summer Glau), his psychic/psychotic sister. The Alliance had been performing experiments on River, Simon rescued her, and now they\'re on the run. Although Mal pretends to be a hardened criminal, he has a heroic streak a mile wide, so he and the rest of the crew hide and protect Simon and River, as the Alliance comes closer and closer to finding them. That gets us to the beginning of the film.</p>\r\n<p>The plot involves a journey to the edge of the galaxy through the territory inhabited by Reavers, horrific men who murder and rape their way through the galaxy, to a mysterious planet where they discover a horrible secret that I wouldn\'t dream of divulging here. In the series, the Alliance sent various bounty hunters and operatives to attempt to kidnap River. Now there\'s someone new coming after her: an unnamed operative (Chiwetel Ejiofor), who has the serenity and sureness of a mad priest. It\'s his job to get River back, and he\'s capable of doing anything it takes to do so, including killing everyone in his path with a scary calm. He\'s doing it all in the name of a future without strife. He\'s scary because he\'s not angry or upset, or happy or eager. He\'s not doing it for reward; he doesn\'t think there\'s any place like him in the future he\'s working toward. I saw strong parallels between him and suicide bombers, except that he\'s sure that he can do more damage for the cause alive than dead.</p>\r\n<p>The film is Whedon\'s patented genre mash-up: science fiction, westerns, horror, martial arts—there\'s a place for everything in his universe. Sometimes there are gaps in the logic, though: the second language of space is Chinese, which is usually used to curse, but there\'s nary an Asian person to be seen. It\'s a matter of convenience that most of the planets in this galaxy, although \"terraformed,\" look like the dusty sets of a thousand oaters, because what Whedon most wanted to make here is an old-fashioned Western, complete with chases on horses, revolvers (which are space-age because they make electronic sounds before firing), funky 19th-century dress, and a sometimes amusingly anachronistic dialect that favors double negatives. Don\'t think for a minute that Whedon isn\'t chuckling along with us at some of it, though: he\'s one of the best writers of understated comedy and surprise laughs in the business.</p>\r\n<p>As I said, the ending feels false: it involves a seismic shift in a certain character\'s worldview, one that seems highly unlikely given the way that character was developed up to that point. It\'s a nice thought, a sort of shiny \"the truth will set you free\" twist, but it doesn\'t fit. However, it\'s the only real miscue in the film. Fans of the series will find everything they were hoping for, and people unfamiliar with it will likely find a rousing two hours of old-fashioned entertainment.</p>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Serenity (2005)','Joss Whedon\'s extension of <i>Firefly</i> has everything the show had, including the feeling that it\'s not enough.','inherit','closed','closed','','39-revision-v1','','','2019-07-25 20:53:35','2019-07-25 20:53:35','',39,'http://itcamefrombeyondpulp.com/uncategorized/39-revision-v1/',0,'revision','',0),(111,1,'2019-07-23 02:46:34','2019-07-23 02:46:34','[et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" custom_padding=\"0px|||||\" next_background_color=\"#e02b20\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\" global_module=\"74\"][et_pb_row global_parent=\"74\" custom_padding=\"0px||0px|||\" custom_margin=\"|auto|-66px|auto||\" _builder_version=\"3.26.3\"][et_pb_column type=\"4_4\" global_parent=\"74\" _builder_version=\"3.26.3\"][et_pb_image global_parent=\"74\" src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/itfbp-header.jpg\" _builder_version=\"3.26.3\" url=\"http://itcamefrombeyondpulp.com\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\"]\r\n\r\n</p>\r\n<p>\r\n\r\n[/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" background_color=\"#e02b20\" width=\"1080px\" module_alignment=\"center\" custom_padding=\"10px||0px|||\" prev_background_color=\"#ffffff\" border_width_bottom=\"5px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\" border_width_bottom_tablet=\"5px\" border_width_bottom_phone=\"5px\" next_background_color=\"#000000\" global_module=\"97\"][et_pb_row global_parent=\"97\" column_structure=\"1_3,1_3,1_3\" custom_padding=\"0px|0px|0px|0px\" custom_margin=\"0px|0px|0px|0px\" _builder_version=\"3.26.3\" min_height=\"0px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\" module_alignment=\"center\"][et_pb_column type=\"1_3\" global_parent=\"97\" _builder_version=\"3.26.3\"][et_pb_text global_parent=\"97\" _builder_version=\"3.26.3\" header_text_color=\"#ffffff\" z_index_tablet=\"500\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" text_text_shadow_horizontal_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_vertical_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_blur_strength=\"text_text_shadow_style,%91object Object%93\" link_text_shadow_horizontal_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_vertical_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_blur_strength=\"link_text_shadow_style,%91object Object%93\" ul_text_shadow_horizontal_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_vertical_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_blur_strength=\"ul_text_shadow_style,%91object Object%93\" ol_text_shadow_horizontal_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_vertical_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_blur_strength=\"ol_text_shadow_style,%91object Object%93\" quote_text_shadow_horizontal_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_vertical_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_blur_strength=\"quote_text_shadow_style,%91object Object%93\" header_text_shadow_horizontal_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_vertical_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_blur_strength=\"header_text_shadow_style,%91object Object%93\" header_2_text_shadow_horizontal_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_vertical_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_blur_strength=\"header_2_text_shadow_style,%91object Object%93\" header_3_text_shadow_horizontal_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_vertical_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_blur_strength=\"header_3_text_shadow_style,%91object Object%93\" header_4_text_shadow_horizontal_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_vertical_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_blur_strength=\"header_4_text_shadow_style,%91object Object%93\" header_5_text_shadow_horizontal_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_vertical_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_blur_strength=\"header_5_text_shadow_style,%91object Object%93\" header_6_text_shadow_horizontal_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_vertical_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_blur_strength=\"header_6_text_shadow_style,%91object Object%93\"]\r\n\r\n</p>\r\n<h1 style=\"text-align: center;\"><a href=\"http://itcamefrombeyondpulp.com/movies/\"><strong>MOVIES &amp; TV</strong></a></h1>\r\n<p>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" global_parent=\"97\" _builder_version=\"3.26.3\"][et_pb_text global_parent=\"97\" _builder_version=\"3.26.3\" header_text_color=\"#ffffff\" z_index_tablet=\"500\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" text_text_shadow_horizontal_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_vertical_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_blur_strength=\"text_text_shadow_style,%91object Object%93\" link_text_shadow_horizontal_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_vertical_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_blur_strength=\"link_text_shadow_style,%91object Object%93\" ul_text_shadow_horizontal_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_vertical_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_blur_strength=\"ul_text_shadow_style,%91object Object%93\" ol_text_shadow_horizontal_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_vertical_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_blur_strength=\"ol_text_shadow_style,%91object Object%93\" quote_text_shadow_horizontal_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_vertical_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_blur_strength=\"quote_text_shadow_style,%91object Object%93\" header_text_shadow_horizontal_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_vertical_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_blur_strength=\"header_text_shadow_style,%91object Object%93\" header_2_text_shadow_horizontal_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_vertical_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_blur_strength=\"header_2_text_shadow_style,%91object Object%93\" header_3_text_shadow_horizontal_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_vertical_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_blur_strength=\"header_3_text_shadow_style,%91object Object%93\" header_4_text_shadow_horizontal_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_vertical_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_blur_strength=\"header_4_text_shadow_style,%91object Object%93\" header_5_text_shadow_horizontal_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_vertical_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_blur_strength=\"header_5_text_shadow_style,%91object Object%93\" header_6_text_shadow_horizontal_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_vertical_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_blur_strength=\"header_6_text_shadow_style,%91object Object%93\"]\r\n\r\n</p>\r\n<h1 style=\"text-align: center;\"><a href=\"http://itcamefrombeyondpulp.com/books/\"><strong>BOOKS</strong></a></h1>\r\n<p>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" global_parent=\"97\" _builder_version=\"3.26.3\"][et_pb_text global_parent=\"97\" _builder_version=\"3.26.3\" header_text_color=\"#ffffff\" z_index_tablet=\"500\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" text_text_shadow_horizontal_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_vertical_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_blur_strength=\"text_text_shadow_style,%91object Object%93\" link_text_shadow_horizontal_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_vertical_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_blur_strength=\"link_text_shadow_style,%91object Object%93\" ul_text_shadow_horizontal_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_vertical_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_blur_strength=\"ul_text_shadow_style,%91object Object%93\" ol_text_shadow_horizontal_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_vertical_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_blur_strength=\"ol_text_shadow_style,%91object Object%93\" quote_text_shadow_horizontal_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_vertical_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_blur_strength=\"quote_text_shadow_style,%91object Object%93\" header_text_shadow_horizontal_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_vertical_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_blur_strength=\"header_text_shadow_style,%91object Object%93\" header_2_text_shadow_horizontal_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_vertical_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_blur_strength=\"header_2_text_shadow_style,%91object Object%93\" header_3_text_shadow_horizontal_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_vertical_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_blur_strength=\"header_3_text_shadow_style,%91object Object%93\" header_4_text_shadow_horizontal_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_vertical_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_blur_strength=\"header_4_text_shadow_style,%91object Object%93\" header_5_text_shadow_horizontal_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_vertical_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_blur_strength=\"header_5_text_shadow_style,%91object Object%93\" header_6_text_shadow_horizontal_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_vertical_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_blur_strength=\"header_6_text_shadow_style,%91object Object%93\"]\r\n\r\n</p>\r\n<h1 style=\"text-align: center;\"><a href=\"http://itcamefrombeyondpulp.com/sales/\"><strong>SALES</strong></a></h1>\r\n<p>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" background_color=\"#e02b20\" width=\"1080px\" module_alignment=\"center\" custom_padding=\"10px||0px|||\" prev_background_color=\"#000000\"][et_pb_row _builder_version=\"3.26.3\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" background_color=\"#ffffff\" custom_padding=\"10px|10px||10px|false|false\" border_width_bottom=\"5px\" border_color_bottom=\"#e02b20\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image _builder_version=\"3.26.3\" src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/serenity.jpg\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\" /][et_pb_text _builder_version=\"3.26.3\" z_index_tablet=\"500\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\"]\r\n\r\n<h3 style=\"text-align: center;\"><strong><em>Serenity</em> (Joss Whedon, 2005, 119 min.)</strong></h3>\r\n<p>Joss Whedon\'s short-lived <i>Firefly</i> was one of the best science fiction shows ever made. It lasted 14 episodes, three of which never aired. Fox did everything it could to destroy it, airing the episodes out of order before finally pulling the plug. Out of Whedon\'s canon—the other shows being <i>Buffy the Vampire Slayer</i> and its spinoff <i>Angel</i>—<i>Firefly</i> showed the most potential for long-term story arcs and character developments. There were ample signs that Whedon hadn\'t even gotten started on all of the themes he wanted to explore, which is a bad idea if you\'re making a cult television show. The very things that made it a slowly building masterpiece likely doomed it: trigger-happy TV execs didn\'t see it going anywhere, so they offed it. The show had a cult following, though, and perhaps their efforts had something to do with Whedon getting the green light to go ahead on a culmination of sorts. The film has most of the qualities that made the show so wonderful, including the most important one: the feeling that it\'s not enough.</p>\r\n<p>The film is not perfect: the necessary scenes that clue newcomers in to the story, and the rather abrupt ending, leave a little to be desired. But the film contains sustained, masterful sequences, a surprise plot development that\'s like a kick in the teeth, and a memorable bad guy in Chiwetel Ejiofor. Also, and most importantly, it contains the things that make Joss Whedon\'s creations memorable: the interaction between characters who feel like they\'re real, who have histories that don\'t come across as plot points, who we can imagine existing before and after the film\'s events. There\'s comedy, there\'s tragedy, there\'s emotion, and Whedon is a master at balancing it all.</p>\r\n<p>Some backstory: it\'s around 500 years in the future, and around six years since the galactic Alliance has put down a rebellion by independent planets. The captain of the spaceship Serenity, Malcolm \"Mal\" Reynolds (Nathan Fillion), and his first mate Zoe (Gina Torres), fought on the side of the rebels. Since the war, they\'ve existed on the periphery, taking legal shipping jobs and illegal smuggling jobs. Slowly, they pieced together a crew: the snarky pilot Wash (Alan Tudyk), who is now Zoe\'s husband; the meatheaded, trigger-happy Jayne (Adam Baldwin); and the genius mechanic Kaylee (Jewel Staite). A little less than a year ago, they picked up Simon (Sean Maher), a doctor, and River (Summer Glau), his psychic/psychotic sister. The Alliance had been performing experiments on River, Simon rescued her, and now they\'re on the run. Although Mal pretends to be a hardened criminal, he has a heroic streak a mile wide, so he and the rest of the crew hide and protect Simon and River, as the Alliance comes closer and closer to finding them. That gets us to the beginning of the film.</p>\r\n<p>The plot involves a journey to the edge of the galaxy through the territory inhabited by Reavers, horrific men who murder and rape their way through the galaxy, to a mysterious planet where they discover a horrible secret that I wouldn\'t dream of divulging here. In the series, the Alliance sent various bounty hunters and operatives to attempt to kidnap River. Now there\'s someone new coming after her: an unnamed operative (Chiwetel Ejiofor), who has the serenity and sureness of a mad priest. It\'s his job to get River back, and he\'s capable of doing anything it takes to do so, including killing everyone in his path with a scary calm. He\'s doing it all in the name of a future without strife. He\'s scary because he\'s not angry or upset, or happy or eager. He\'s not doing it for reward; he doesn\'t think there\'s any place like him in the future he\'s working toward. I saw strong parallels between him and suicide bombers, except that he\'s sure that he can do more damage for the cause alive than dead.</p>\r\n<p>The film is Whedon\'s patented genre mash-up: science fiction, westerns, horror, martial arts—there\'s a place for everything in his universe. Sometimes there are gaps in the logic, though: the second language of space is Chinese, which is usually used to curse, but there\'s nary an Asian person to be seen. It\'s a matter of convenience that most of the planets in this galaxy, although \"terraformed,\" look like the dusty sets of a thousand oaters, because what Whedon most wanted to make here is an old-fashioned Western, complete with chases on horses, revolvers (which are space-age because they make electronic sounds before firing), funky 19th-century dress, and a sometimes amusingly anachronistic dialect that favors double negatives. Don\'t think for a minute that Whedon isn\'t chuckling along with us at some of it, though: he\'s one of the best writers of understated comedy and surprise laughs in the business.</p>\r\n<p>As I said, the ending feels false: it involves a seismic shift in a certain character\'s worldview, one that seems highly unlikely given the way that character was developed up to that point. It\'s a nice thought, a sort of shiny \"the truth will set you free\" twist, but it doesn\'t fit. However, it\'s the only real miscue in the film. Fans of the series will find everything they were hoping for, and people unfamiliar with it will likely find a rousing two hours of old-fashioned entertainment.</p>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Serenity (2005)','Joss Whedon\'s extension of <i>Firefly</i> has everything the show had, including the feeling that it\'s not enough.','inherit','closed','closed','','39-revision-v1','','','2019-07-23 02:46:34','2019-07-23 02:46:34','',39,'http://itcamefrombeyondpulp.com/uncategorized/39-revision-v1/',0,'revision','',0),(112,1,'2019-07-23 02:49:26','2019-07-23 02:49:26','[et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" custom_padding=\"0px|||||\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" custom_margin=\"||11px|||\" next_background_color=\"#000000\" global_module=\"74\"][et_pb_row global_parent=\"74\" custom_padding=\"0px||0px|||\" custom_margin=\"|auto|-66px|auto||\" _builder_version=\"3.26.3\"][et_pb_column type=\"4_4\" global_parent=\"74\" _builder_version=\"3.26.3\"][et_pb_image global_parent=\"74\" src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/header.jpg\" url=\"http://itcamefrombeyondpulp.com\" _builder_version=\"3.26.3\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.26.3\" width=\"1080px\" inner_module_alignment=\"center\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" module_alignment=\"center\" custom_padding=\"0px||0px||false|false\" next_background_color=\"#e02b20\" global_module=\"175\" prev_background_color=\"#000000\"][et_pb_fullwidth_menu global_parent=\"175\" menu_id=\"2\" submenu_direction=\"downwards\" fullwidth_menu=\"off\" dropdown_menu_text_color=\"#ffffff\" _builder_version=\"3.26.3\" menu_font=\"|800||on|||||\" menu_text_color=\"#ffffff\" menu_font_size=\"22px\" menu_letter_spacing=\"5px\" background_color=\"#e02b20\" border_width_bottom=\"5px\" text_orientation=\"center\" background_layout=\"dark\" custom_padding=\"1px||0px||false|false\" z_index_tablet=\"500\" menu_text_shadow_horizontal_length_tablet=\"0px\" menu_text_shadow_vertical_length_tablet=\"0px\" menu_text_shadow_blur_strength_tablet=\"1px\" border_width_bottom_tablet=\"5px\" border_width_bottom_phone=\"5px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" custom_margin=\"0px||||false|false\" /][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" background_color=\"#e02b20\" width=\"1080px\" module_alignment=\"center\" custom_padding=\"10px||0px|||\" prev_background_color=\"#ffffff\"][et_pb_row _builder_version=\"3.26.3\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" background_color=\"#ffffff\" custom_padding=\"10px|10px||10px|false|false\" border_width_bottom=\"5px\" border_color_bottom=\"#e02b20\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.26.3\" z_index_tablet=\"500\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" text_text_shadow_horizontal_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_vertical_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_blur_strength=\"text_text_shadow_style,%91object Object%93\" link_text_shadow_horizontal_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_vertical_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_blur_strength=\"link_text_shadow_style,%91object Object%93\" ul_text_shadow_horizontal_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_vertical_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_blur_strength=\"ul_text_shadow_style,%91object Object%93\" ol_text_shadow_horizontal_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_vertical_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_blur_strength=\"ol_text_shadow_style,%91object Object%93\" quote_text_shadow_horizontal_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_vertical_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_blur_strength=\"quote_text_shadow_style,%91object Object%93\" header_text_shadow_horizontal_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_vertical_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_blur_strength=\"header_text_shadow_style,%91object Object%93\" header_2_text_shadow_horizontal_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_vertical_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_blur_strength=\"header_2_text_shadow_style,%91object Object%93\" header_3_text_shadow_horizontal_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_vertical_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_blur_strength=\"header_3_text_shadow_style,%91object Object%93\" header_4_text_shadow_horizontal_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_vertical_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_blur_strength=\"header_4_text_shadow_style,%91object Object%93\" header_5_text_shadow_horizontal_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_vertical_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_blur_strength=\"header_5_text_shadow_style,%91object Object%93\" header_6_text_shadow_horizontal_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_vertical_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_blur_strength=\"header_6_text_shadow_style,%91object Object%93\"]\r\n\r\n<h3 style=\"text-align: center;\"><strong><em><img class=\"alignright size-medium wp-image-114\" src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/dolphins-177x300.jpg\" alt=\"\" width=\"177\" height=\"300\" />The Dolphins of Altair</em> (Margaret St. Clair, 1971)</strong></h3>\r\n<p>Joss Whedon\'s short-lived <i>Firefly</i> was one of the best science fiction shows ever made. It lasted 14 episodes, three of which never aired. Fox did everything it could to destroy it, airing the episodes out of order before finally pulling the plug. Out of Whedon\'s canon—the other shows being <i>Buffy the Vampire Slayer</i> and its spinoff <i>Angel</i>—<i>Firefly</i> showed the most potential for long-term story arcs and character developments. There were ample signs that Whedon hadn\'t even gotten started on all of the themes he wanted to explore, which is a bad idea if you\'re making a cult television show. The very things that made it a slowly building masterpiece likely doomed it: trigger-happy TV execs didn\'t see it going anywhere, so they offed it. The show had a cult following, though, and perhaps their efforts had something to do with Whedon getting the green light to go ahead on a culmination of sorts. The film has most of the qualities that made the show so wonderful, including the most important one: the feeling that it\'s not enough.</p>\r\n<p>The film is not perfect: the necessary scenes that clue newcomers in to the story, and the rather abrupt ending, leave a little to be desired. But the film contains sustained, masterful sequences, a surprise plot development that\'s like a kick in the teeth, and a memorable bad guy in Chiwetel Ejiofor. Also, and most importantly, it contains the things that make Joss Whedon\'s creations memorable: the interaction between characters who feel like they\'re real, who have histories that don\'t come across as plot points, who we can imagine existing before and after the film\'s events. There\'s comedy, there\'s tragedy, there\'s emotion, and Whedon is a master at balancing it all.</p>\r\n<p>Some backstory: it\'s around 500 years in the future, and around six years since the galactic Alliance has put down a rebellion by independent planets. The captain of the spaceship Serenity, Malcolm \"Mal\" Reynolds (Nathan Fillion), and his first mate Zoe (Gina Torres), fought on the side of the rebels. Since the war, they\'ve existed on the periphery, taking legal shipping jobs and illegal smuggling jobs. Slowly, they pieced together a crew: the snarky pilot Wash (Alan Tudyk), who is now Zoe\'s husband; the meatheaded, trigger-happy Jayne (Adam Baldwin); and the genius mechanic Kaylee (Jewel Staite). A little less than a year ago, they picked up Simon (Sean Maher), a doctor, and River (Summer Glau), his psychic/psychotic sister. The Alliance had been performing experiments on River, Simon rescued her, and now they\'re on the run. Although Mal pretends to be a hardened criminal, he has a heroic streak a mile wide, so he and the rest of the crew hide and protect Simon and River, as the Alliance comes closer and closer to finding them. That gets us to the beginning of the film.</p>\r\n<p>The plot involves a journey to the edge of the galaxy through the territory inhabited by Reavers, horrific men who murder and rape their way through the galaxy, to a mysterious planet where they discover a horrible secret that I wouldn\'t dream of divulging here. In the series, the Alliance sent various bounty hunters and operatives to attempt to kidnap River. Now there\'s someone new coming after her: an unnamed operative (Chiwetel Ejiofor), who has the serenity and sureness of a mad priest. It\'s his job to get River back, and he\'s capable of doing anything it takes to do so, including killing everyone in his path with a scary calm. He\'s doing it all in the name of a future without strife. He\'s scary because he\'s not angry or upset, or happy or eager. He\'s not doing it for reward; he doesn\'t think there\'s any place like him in the future he\'s working toward. I saw strong parallels between him and suicide bombers, except that he\'s sure that he can do more damage for the cause alive than dead.</p>\r\n<p>The film is Whedon\'s patented genre mash-up: science fiction, westerns, horror, martial arts—there\'s a place for everything in his universe. Sometimes there are gaps in the logic, though: the second language of space is Chinese, which is usually used to curse, but there\'s nary an Asian person to be seen. It\'s a matter of convenience that most of the planets in this galaxy, although \"terraformed,\" look like the dusty sets of a thousand oaters, because what Whedon most wanted to make here is an old-fashioned Western, complete with chases on horses, revolvers (which are space-age because they make electronic sounds before firing), funky 19th-century dress, and a sometimes amusingly anachronistic dialect that favors double negatives. Don\'t think for a minute that Whedon isn\'t chuckling along with us at some of it, though: he\'s one of the best writers of understated comedy and surprise laughs in the business.</p>\r\n<p>As I said, the ending feels false: it involves a seismic shift in a certain character\'s worldview, one that seems highly unlikely given the way that character was developed up to that point. It\'s a nice thought, a sort of shiny \"the truth will set you free\" twist, but it doesn\'t fit. However, it\'s the only real miscue in the film. Fans of the series will find everything they were hoping for, and people unfamiliar with it will likely find a rousing two hours of old-fashioned entertainment.</p>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','book posts','','publish','closed','closed','','book-posts','','','2019-07-24 23:13:54','2019-07-24 23:13:54','',0,'http://itcamefrombeyondpulp.com/et_pb_layout/book-posts/',0,'et_pb_layout','',0),(219,1,'2019-07-24 23:14:07','2019-07-24 23:14:07','[et_pb_section bb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.26.3\" width=\"1080px\" inner_module_alignment=\"center\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" module_alignment=\"center\" custom_padding=\"0px||0px||false|false\" prev_background_color=\"#000000\" next_background_color=\"#e02b20\" template_type=\"section\"][et_pb_fullwidth_menu menu_id=\"2\" submenu_direction=\"downwards\" fullwidth_menu=\"off\" dropdown_menu_text_color=\"#ffffff\" _builder_version=\"3.26.3\" menu_font=\"|800||on|||||\" menu_text_color=\"#ffffff\" menu_font_size=\"22px\" menu_letter_spacing=\"5px\" background_color=\"#e02b20\" border_width_bottom=\"5px\" text_orientation=\"center\" background_layout=\"dark\" custom_padding=\"1px||0px||false|false\" z_index_tablet=\"500\" menu_text_shadow_horizontal_length_tablet=\"0px\" menu_text_shadow_vertical_length_tablet=\"0px\" menu_text_shadow_blur_strength_tablet=\"1px\" border_width_bottom_tablet=\"5px\" border_width_bottom_phone=\"5px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" custom_margin=\"0px||||false|false\" /][/et_pb_section]','nav bar','','inherit','closed','closed','','175-revision-v1','','','2019-07-24 23:14:07','2019-07-24 23:14:07','',175,'http://itcamefrombeyondpulp.com/uncategorized/175-revision-v1/',0,'revision','',0),(113,1,'2019-07-23 02:52:22','2019-07-23 02:52:22','[et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" custom_padding=\"0px|||||\" next_background_color=\"#e02b20\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\" global_module=\"74\"][et_pb_row global_parent=\"74\" custom_padding=\"0px||0px|||\" custom_margin=\"|auto|-66px|auto||\" _builder_version=\"3.26.3\"][et_pb_column type=\"4_4\" global_parent=\"74\" _builder_version=\"3.26.3\"][et_pb_image global_parent=\"74\" src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/itfbp-header.jpg\" _builder_version=\"3.26.3\" url=\"http://itcamefrombeyondpulp.com\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\"]\n\n</p>\n<p>\n\n[/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" background_color=\"#e02b20\" width=\"1080px\" module_alignment=\"center\" custom_padding=\"10px||0px|||\" prev_background_color=\"#ffffff\" border_width_bottom=\"5px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\" border_width_bottom_tablet=\"5px\" border_width_bottom_phone=\"5px\" next_background_color=\"#000000\" global_module=\"97\"][et_pb_row global_parent=\"97\" column_structure=\"1_3,1_3,1_3\" custom_padding=\"0px|0px|0px|0px\" custom_margin=\"0px|0px|0px|0px\" _builder_version=\"3.26.3\" min_height=\"0px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\" module_alignment=\"center\"][et_pb_column type=\"1_3\" global_parent=\"97\" _builder_version=\"3.26.3\"][et_pb_text global_parent=\"97\" _builder_version=\"3.26.3\" header_text_color=\"#ffffff\" z_index_tablet=\"500\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" text_text_shadow_horizontal_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_vertical_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_blur_strength=\"text_text_shadow_style,%91object Object%93\" link_text_shadow_horizontal_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_vertical_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_blur_strength=\"link_text_shadow_style,%91object Object%93\" ul_text_shadow_horizontal_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_vertical_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_blur_strength=\"ul_text_shadow_style,%91object Object%93\" ol_text_shadow_horizontal_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_vertical_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_blur_strength=\"ol_text_shadow_style,%91object Object%93\" quote_text_shadow_horizontal_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_vertical_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_blur_strength=\"quote_text_shadow_style,%91object Object%93\" header_text_shadow_horizontal_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_vertical_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_blur_strength=\"header_text_shadow_style,%91object Object%93\" header_2_text_shadow_horizontal_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_vertical_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_blur_strength=\"header_2_text_shadow_style,%91object Object%93\" header_3_text_shadow_horizontal_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_vertical_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_blur_strength=\"header_3_text_shadow_style,%91object Object%93\" header_4_text_shadow_horizontal_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_vertical_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_blur_strength=\"header_4_text_shadow_style,%91object Object%93\" header_5_text_shadow_horizontal_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_vertical_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_blur_strength=\"header_5_text_shadow_style,%91object Object%93\" header_6_text_shadow_horizontal_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_vertical_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_blur_strength=\"header_6_text_shadow_style,%91object Object%93\"]\n\n</p>\n<h1 style=\"text-align: center;\"><a href=\"http://itcamefrombeyondpulp.com/movies/\"><strong>MOVIES &amp; TV</strong></a></h1>\n<p>\n\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" global_parent=\"97\" _builder_version=\"3.26.3\"][et_pb_text global_parent=\"97\" _builder_version=\"3.26.3\" header_text_color=\"#ffffff\" z_index_tablet=\"500\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" text_text_shadow_horizontal_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_vertical_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_blur_strength=\"text_text_shadow_style,%91object Object%93\" link_text_shadow_horizontal_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_vertical_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_blur_strength=\"link_text_shadow_style,%91object Object%93\" ul_text_shadow_horizontal_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_vertical_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_blur_strength=\"ul_text_shadow_style,%91object Object%93\" ol_text_shadow_horizontal_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_vertical_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_blur_strength=\"ol_text_shadow_style,%91object Object%93\" quote_text_shadow_horizontal_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_vertical_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_blur_strength=\"quote_text_shadow_style,%91object Object%93\" header_text_shadow_horizontal_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_vertical_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_blur_strength=\"header_text_shadow_style,%91object Object%93\" header_2_text_shadow_horizontal_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_vertical_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_blur_strength=\"header_2_text_shadow_style,%91object Object%93\" header_3_text_shadow_horizontal_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_vertical_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_blur_strength=\"header_3_text_shadow_style,%91object Object%93\" header_4_text_shadow_horizontal_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_vertical_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_blur_strength=\"header_4_text_shadow_style,%91object Object%93\" header_5_text_shadow_horizontal_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_vertical_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_blur_strength=\"header_5_text_shadow_style,%91object Object%93\" header_6_text_shadow_horizontal_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_vertical_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_blur_strength=\"header_6_text_shadow_style,%91object Object%93\"]\n\n</p>\n<h1 style=\"text-align: center;\"><a href=\"http://itcamefrombeyondpulp.com/books/\"><strong>BOOKS</strong></a></h1>\n<p>\n\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" global_parent=\"97\" _builder_version=\"3.26.3\"][et_pb_text global_parent=\"97\" _builder_version=\"3.26.3\" header_text_color=\"#ffffff\" z_index_tablet=\"500\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" text_text_shadow_horizontal_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_vertical_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_blur_strength=\"text_text_shadow_style,%91object Object%93\" link_text_shadow_horizontal_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_vertical_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_blur_strength=\"link_text_shadow_style,%91object Object%93\" ul_text_shadow_horizontal_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_vertical_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_blur_strength=\"ul_text_shadow_style,%91object Object%93\" ol_text_shadow_horizontal_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_vertical_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_blur_strength=\"ol_text_shadow_style,%91object Object%93\" quote_text_shadow_horizontal_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_vertical_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_blur_strength=\"quote_text_shadow_style,%91object Object%93\" header_text_shadow_horizontal_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_vertical_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_blur_strength=\"header_text_shadow_style,%91object Object%93\" header_2_text_shadow_horizontal_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_vertical_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_blur_strength=\"header_2_text_shadow_style,%91object Object%93\" header_3_text_shadow_horizontal_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_vertical_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_blur_strength=\"header_3_text_shadow_style,%91object Object%93\" header_4_text_shadow_horizontal_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_vertical_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_blur_strength=\"header_4_text_shadow_style,%91object Object%93\" header_5_text_shadow_horizontal_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_vertical_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_blur_strength=\"header_5_text_shadow_style,%91object Object%93\" header_6_text_shadow_horizontal_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_vertical_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_blur_strength=\"header_6_text_shadow_style,%91object Object%93\"]\n\n</p>\n<h1 style=\"text-align: center;\"><a href=\"http://itcamefrombeyondpulp.com/sales/\"><strong>SALES</strong></a></h1>\n<p>\n\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" background_color=\"#e02b20\" width=\"1080px\" module_alignment=\"center\" custom_padding=\"10px||0px|||\" prev_background_color=\"#000000\"][et_pb_row _builder_version=\"3.26.3\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" background_color=\"#ffffff\" custom_padding=\"10px|10px||10px|false|false\" border_width_bottom=\"5px\" border_color_bottom=\"#e02b20\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.26.3\" z_index_tablet=\"500\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" text_text_shadow_horizontal_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_vertical_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_blur_strength=\"text_text_shadow_style,%91object Object%93\" link_text_shadow_horizontal_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_vertical_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_blur_strength=\"link_text_shadow_style,%91object Object%93\" ul_text_shadow_horizontal_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_vertical_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_blur_strength=\"ul_text_shadow_style,%91object Object%93\" ol_text_shadow_horizontal_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_vertical_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_blur_strength=\"ol_text_shadow_style,%91object Object%93\" quote_text_shadow_horizontal_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_vertical_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_blur_strength=\"quote_text_shadow_style,%91object Object%93\" header_text_shadow_horizontal_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_vertical_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_blur_strength=\"header_text_shadow_style,%91object Object%93\" header_2_text_shadow_horizontal_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_vertical_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_blur_strength=\"header_2_text_shadow_style,%91object Object%93\" header_3_text_shadow_horizontal_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_vertical_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_blur_strength=\"header_3_text_shadow_style,%91object Object%93\" header_4_text_shadow_horizontal_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_vertical_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_blur_strength=\"header_4_text_shadow_style,%91object Object%93\" header_5_text_shadow_horizontal_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_vertical_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_blur_strength=\"header_5_text_shadow_style,%91object Object%93\" header_6_text_shadow_horizontal_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_vertical_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_blur_strength=\"header_6_text_shadow_style,%91object Object%93\"]\n\n<h3 style=\"text-align: center;\"><strong><em><img class=\"alignright size-medium wp-image-114\" src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/dolphins-177x300.jpg\" alt=\"\" width=\"177\" height=\"300\" />The Dolphins of Altair</em> (Margaret St. Clair, 1971)</strong></h3>\n<p>Joss Whedon\'s short-lived <i>Firefly</i> was one of the best science fiction shows ever made. It lasted 14 episodes, three of which never aired. Fox did everything it could to destroy it, airing the episodes out of order before finally pulling the plug. Out of Whedon\'s canon—the other shows being <i>Buffy the Vampire Slayer</i> and its spinoff <i>Angel</i>—<i>Firefly</i> showed the most potential for long-term story arcs and character developments. There were ample signs that Whedon hadn\'t even gotten started on all of the themes he wanted to explore, which is a bad idea if you\'re making a cult television show. The very things that made it a slowly building masterpiece likely doomed it: trigger-happy TV execs didn\'t see it going anywhere, so they offed it. The show had a cult following, though, and perhaps their efforts had something to do with Whedon getting the green light to go ahead on a culmination of sorts. The film has most of the qualities that made the show so wonderful, including the most important one: the feeling that it\'s not enough.</p>\n<p>The film is not perfect: the necessary scenes that clue newcomers in to the story, and the rather abrupt ending, leave a little to be desired. But the film contains sustained, masterful sequences, a surprise plot development that\'s like a kick in the teeth, and a memorable bad guy in Chiwetel Ejiofor. Also, and most importantly, it contains the things that make Joss Whedon\'s creations memorable: the interaction between characters who feel like they\'re real, who have histories that don\'t come across as plot points, who we can imagine existing before and after the film\'s events. There\'s comedy, there\'s tragedy, there\'s emotion, and Whedon is a master at balancing it all.</p>\n<p>Some backstory: it\'s around 500 years in the future, and around six years since the galactic Alliance has put down a rebellion by independent planets. The captain of the spaceship Serenity, Malcolm \"Mal\" Reynolds (Nathan Fillion), and his first mate Zoe (Gina Torres), fought on the side of the rebels. Since the war, they\'ve existed on the periphery, taking legal shipping jobs and illegal smuggling jobs. Slowly, they pieced together a crew: the snarky pilot Wash (Alan Tudyk), who is now Zoe\'s husband; the meatheaded, trigger-happy Jayne (Adam Baldwin); and the genius mechanic Kaylee (Jewel Staite). A little less than a year ago, they picked up Simon (Sean Maher), a doctor, and River (Summer Glau), his psychic/psychotic sister. The Alliance had been performing experiments on River, Simon rescued her, and now they\'re on the run. Although Mal pretends to be a hardened criminal, he has a heroic streak a mile wide, so he and the rest of the crew hide and protect Simon and River, as the Alliance comes closer and closer to finding them. That gets us to the beginning of the film.</p>\n<p>The plot involves a journey to the edge of the galaxy through the territory inhabited by Reavers, horrific men who murder and rape their way through the galaxy, to a mysterious planet where they discover a horrible secret that I wouldn\'t dream of divulging here. In the series, the Alliance sent various bounty hunters and operatives to attempt to kidnap River. Now there\'s someone new coming after her: an unnamed operative (Chiwetel Ejiofor), who has the serenity and sureness of a mad priest. It\'s his job to get River back, and he\'s capable of doing anything it takes to do so, including killing everyone in his path with a scary calm. He\'s doing it all in the name of a future without strife. He\'s scary because he\'s not angry or upset, or happy or eager. He\'s not doing it for reward; he doesn\'t think there\'s any place like him in the future he\'s working toward. I saw strong parallels between him and suicide bombers, except that he\'s sure that he can do more damage for the cause alive than dead.</p>\n<p>The film is Whedon\'s patented genre mash-up: science fiction, westerns, horror, martial arts—there\'s a place for everything in his universe. Sometimes there are gaps in the logic, though: the second language of space is Chinese, which is usually used to curse, but there\'s nary an Asian person to be seen. It\'s a matter of convenience that most of the planets in this galaxy, although \"terraformed,\" look like the dusty sets of a thousand oaters, because what Whedon most wanted to make here is an old-fashioned Western, complete with chases on horses, revolvers (which are space-age because they make electronic sounds before firing), funky 19th-century dress, and a sometimes amusingly anachronistic dialect that favors double negatives. Don\'t think for a minute that Whedon isn\'t chuckling along with us at some of it, though: he\'s one of the best writers of understated comedy and surprise laughs in the business.</p>\n<p>As I said, the ending feels false: it involves a seismic shift in a certain character\'s worldview, one that seems highly unlikely given the way that character was developed up to that point. It\'s a nice thought, a sort of shiny \"the truth will set you free\" twist, but it doesn\'t fit. However, it\'s the only real miscue in the film. Fans of the series will find everything they were hoping for, and people unfamiliar with it will likely find a rousing two hours of old-fashioned entertainment.</p>\n\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','book posts','','inherit','closed','closed','','112-autosave-v1','','','2019-07-23 02:52:22','2019-07-23 02:52:22','',112,'http://itcamefrombeyondpulp.com/uncategorized/112-autosave-v1/',0,'revision','',0),(114,1,'2019-07-23 02:50:55','2019-07-23 02:50:55','','dolphins','','inherit','closed','closed','','dolphins','','','2019-07-23 02:50:55','2019-07-23 02:50:55','',112,'http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/dolphins.jpg',0,'attachment','image/jpeg',0),(115,1,'2019-07-23 02:51:50','2019-07-23 02:51:50','[et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" custom_padding=\"0px|||||\" next_background_color=\"#e02b20\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\" global_module=\"74\"][et_pb_row global_parent=\"74\" custom_padding=\"0px||0px|||\" custom_margin=\"|auto|-66px|auto||\" _builder_version=\"3.26.3\"][et_pb_column type=\"4_4\" global_parent=\"74\" _builder_version=\"3.26.3\"][et_pb_image global_parent=\"74\" src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/itfbp-header.jpg\" _builder_version=\"3.26.3\" url=\"http://itcamefrombeyondpulp.com\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\"]\r\n\r\n</p>\r\n<p>\r\n\r\n[/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" background_color=\"#e02b20\" width=\"1080px\" module_alignment=\"center\" custom_padding=\"10px||0px|||\" prev_background_color=\"#ffffff\" border_width_bottom=\"5px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\" border_width_bottom_tablet=\"5px\" border_width_bottom_phone=\"5px\" next_background_color=\"#000000\" global_module=\"97\"][et_pb_row global_parent=\"97\" column_structure=\"1_3,1_3,1_3\" custom_padding=\"0px|0px|0px|0px\" custom_margin=\"0px|0px|0px|0px\" _builder_version=\"3.26.3\" min_height=\"0px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\" module_alignment=\"center\"][et_pb_column type=\"1_3\" global_parent=\"97\" _builder_version=\"3.26.3\"][et_pb_text global_parent=\"97\" _builder_version=\"3.26.3\" header_text_color=\"#ffffff\" z_index_tablet=\"500\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" text_text_shadow_horizontal_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_vertical_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_blur_strength=\"text_text_shadow_style,%91object Object%93\" link_text_shadow_horizontal_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_vertical_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_blur_strength=\"link_text_shadow_style,%91object Object%93\" ul_text_shadow_horizontal_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_vertical_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_blur_strength=\"ul_text_shadow_style,%91object Object%93\" ol_text_shadow_horizontal_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_vertical_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_blur_strength=\"ol_text_shadow_style,%91object Object%93\" quote_text_shadow_horizontal_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_vertical_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_blur_strength=\"quote_text_shadow_style,%91object Object%93\" header_text_shadow_horizontal_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_vertical_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_blur_strength=\"header_text_shadow_style,%91object Object%93\" header_2_text_shadow_horizontal_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_vertical_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_blur_strength=\"header_2_text_shadow_style,%91object Object%93\" header_3_text_shadow_horizontal_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_vertical_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_blur_strength=\"header_3_text_shadow_style,%91object Object%93\" header_4_text_shadow_horizontal_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_vertical_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_blur_strength=\"header_4_text_shadow_style,%91object Object%93\" header_5_text_shadow_horizontal_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_vertical_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_blur_strength=\"header_5_text_shadow_style,%91object Object%93\" header_6_text_shadow_horizontal_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_vertical_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_blur_strength=\"header_6_text_shadow_style,%91object Object%93\"]\r\n\r\n</p>\r\n<h1 style=\"text-align: center;\"><a href=\"http://itcamefrombeyondpulp.com/movies/\"><strong>MOVIES &amp; TV</strong></a></h1>\r\n<p>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" global_parent=\"97\" _builder_version=\"3.26.3\"][et_pb_text global_parent=\"97\" _builder_version=\"3.26.3\" header_text_color=\"#ffffff\" z_index_tablet=\"500\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" text_text_shadow_horizontal_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_vertical_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_blur_strength=\"text_text_shadow_style,%91object Object%93\" link_text_shadow_horizontal_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_vertical_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_blur_strength=\"link_text_shadow_style,%91object Object%93\" ul_text_shadow_horizontal_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_vertical_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_blur_strength=\"ul_text_shadow_style,%91object Object%93\" ol_text_shadow_horizontal_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_vertical_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_blur_strength=\"ol_text_shadow_style,%91object Object%93\" quote_text_shadow_horizontal_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_vertical_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_blur_strength=\"quote_text_shadow_style,%91object Object%93\" header_text_shadow_horizontal_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_vertical_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_blur_strength=\"header_text_shadow_style,%91object Object%93\" header_2_text_shadow_horizontal_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_vertical_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_blur_strength=\"header_2_text_shadow_style,%91object Object%93\" header_3_text_shadow_horizontal_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_vertical_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_blur_strength=\"header_3_text_shadow_style,%91object Object%93\" header_4_text_shadow_horizontal_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_vertical_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_blur_strength=\"header_4_text_shadow_style,%91object Object%93\" header_5_text_shadow_horizontal_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_vertical_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_blur_strength=\"header_5_text_shadow_style,%91object Object%93\" header_6_text_shadow_horizontal_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_vertical_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_blur_strength=\"header_6_text_shadow_style,%91object Object%93\"]\r\n\r\n</p>\r\n<h1 style=\"text-align: center;\"><a href=\"http://itcamefrombeyondpulp.com/books/\"><strong>BOOKS</strong></a></h1>\r\n<p>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" global_parent=\"97\" _builder_version=\"3.26.3\"][et_pb_text global_parent=\"97\" _builder_version=\"3.26.3\" header_text_color=\"#ffffff\" z_index_tablet=\"500\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" text_text_shadow_horizontal_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_vertical_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_blur_strength=\"text_text_shadow_style,%91object Object%93\" link_text_shadow_horizontal_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_vertical_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_blur_strength=\"link_text_shadow_style,%91object Object%93\" ul_text_shadow_horizontal_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_vertical_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_blur_strength=\"ul_text_shadow_style,%91object Object%93\" ol_text_shadow_horizontal_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_vertical_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_blur_strength=\"ol_text_shadow_style,%91object Object%93\" quote_text_shadow_horizontal_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_vertical_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_blur_strength=\"quote_text_shadow_style,%91object Object%93\" header_text_shadow_horizontal_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_vertical_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_blur_strength=\"header_text_shadow_style,%91object Object%93\" header_2_text_shadow_horizontal_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_vertical_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_blur_strength=\"header_2_text_shadow_style,%91object Object%93\" header_3_text_shadow_horizontal_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_vertical_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_blur_strength=\"header_3_text_shadow_style,%91object Object%93\" header_4_text_shadow_horizontal_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_vertical_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_blur_strength=\"header_4_text_shadow_style,%91object Object%93\" header_5_text_shadow_horizontal_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_vertical_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_blur_strength=\"header_5_text_shadow_style,%91object Object%93\" header_6_text_shadow_horizontal_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_vertical_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_blur_strength=\"header_6_text_shadow_style,%91object Object%93\"]\r\n\r\n</p>\r\n<h1 style=\"text-align: center;\"><a href=\"http://itcamefrombeyondpulp.com/sales/\"><strong>SALES</strong></a></h1>\r\n<p>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" background_color=\"#e02b20\" width=\"1080px\" module_alignment=\"center\" custom_padding=\"10px||0px|||\" prev_background_color=\"#000000\"][et_pb_row _builder_version=\"3.26.3\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" background_color=\"#ffffff\" custom_padding=\"10px|10px||10px|false|false\" border_width_bottom=\"5px\" border_color_bottom=\"#e02b20\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.26.3\" z_index_tablet=\"500\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" text_text_shadow_horizontal_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_vertical_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_blur_strength=\"text_text_shadow_style,%91object Object%93\" link_text_shadow_horizontal_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_vertical_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_blur_strength=\"link_text_shadow_style,%91object Object%93\" ul_text_shadow_horizontal_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_vertical_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_blur_strength=\"ul_text_shadow_style,%91object Object%93\" ol_text_shadow_horizontal_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_vertical_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_blur_strength=\"ol_text_shadow_style,%91object Object%93\" quote_text_shadow_horizontal_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_vertical_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_blur_strength=\"quote_text_shadow_style,%91object Object%93\" header_text_shadow_horizontal_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_vertical_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_blur_strength=\"header_text_shadow_style,%91object Object%93\" header_2_text_shadow_horizontal_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_vertical_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_blur_strength=\"header_2_text_shadow_style,%91object Object%93\" header_3_text_shadow_horizontal_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_vertical_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_blur_strength=\"header_3_text_shadow_style,%91object Object%93\" header_4_text_shadow_horizontal_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_vertical_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_blur_strength=\"header_4_text_shadow_style,%91object Object%93\" header_5_text_shadow_horizontal_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_vertical_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_blur_strength=\"header_5_text_shadow_style,%91object Object%93\" header_6_text_shadow_horizontal_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_vertical_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_blur_strength=\"header_6_text_shadow_style,%91object Object%93\"]\r\n\r\n<h3 style=\"text-align: center;\"><strong><em><img class=\"alignright size-medium wp-image-114\" src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/dolphins-177x300.jpg\" alt=\"\" width=\"177\" height=\"300\" />The Dolphins of Altair</em> (Margaret St. Clair, 1971)</strong></h3><p>Joss Whedon\'s short-lived <i>Firefly</i> was one of the best science fiction shows ever made. It lasted 14 episodes, three of which never aired. Fox did everything it could to destroy it, airing the episodes out of order before finally pulling the plug. Out of Whedon\'s canon—the other shows being <i>Buffy the Vampire Slayer</i> and its spinoff <i>Angel</i>—<i>Firefly</i> showed the most potential for long-term story arcs and character developments. There were ample signs that Whedon hadn\'t even gotten started on all of the themes he wanted to explore, which is a bad idea if you\'re making a cult television show. The very things that made it a slowly building masterpiece likely doomed it: trigger-happy TV execs didn\'t see it going anywhere, so they offed it. The show had a cult following, though, and perhaps their efforts had something to do with Whedon getting the green light to go ahead on a culmination of sorts. The film has most of the qualities that made the show so wonderful, including the most important one: the feeling that it\'s not enough.</p><p>The film is not perfect: the necessary scenes that clue newcomers in to the story, and the rather abrupt ending, leave a little to be desired. But the film contains sustained, masterful sequences, a surprise plot development that\'s like a kick in the teeth, and a memorable bad guy in Chiwetel Ejiofor. Also, and most importantly, it contains the things that make Joss Whedon\'s creations memorable: the interaction between characters who feel like they\'re real, who have histories that don\'t come across as plot points, who we can imagine existing before and after the film\'s events. There\'s comedy, there\'s tragedy, there\'s emotion, and Whedon is a master at balancing it all.</p><p>Some backstory: it\'s around 500 years in the future, and around six years since the galactic Alliance has put down a rebellion by independent planets. The captain of the spaceship Serenity, Malcolm \"Mal\" Reynolds (Nathan Fillion), and his first mate Zoe (Gina Torres), fought on the side of the rebels. Since the war, they\'ve existed on the periphery, taking legal shipping jobs and illegal smuggling jobs. Slowly, they pieced together a crew: the snarky pilot Wash (Alan Tudyk), who is now Zoe\'s husband; the meatheaded, trigger-happy Jayne (Adam Baldwin); and the genius mechanic Kaylee (Jewel Staite). A little less than a year ago, they picked up Simon (Sean Maher), a doctor, and River (Summer Glau), his psychic/psychotic sister. The Alliance had been performing experiments on River, Simon rescued her, and now they\'re on the run. Although Mal pretends to be a hardened criminal, he has a heroic streak a mile wide, so he and the rest of the crew hide and protect Simon and River, as the Alliance comes closer and closer to finding them. That gets us to the beginning of the film.</p><p>The plot involves a journey to the edge of the galaxy through the territory inhabited by Reavers, horrific men who murder and rape their way through the galaxy, to a mysterious planet where they discover a horrible secret that I wouldn\'t dream of divulging here. In the series, the Alliance sent various bounty hunters and operatives to attempt to kidnap River. Now there\'s someone new coming after her: an unnamed operative (Chiwetel Ejiofor), who has the serenity and sureness of a mad priest. It\'s his job to get River back, and he\'s capable of doing anything it takes to do so, including killing everyone in his path with a scary calm. He\'s doing it all in the name of a future without strife. He\'s scary because he\'s not angry or upset, or happy or eager. He\'s not doing it for reward; he doesn\'t think there\'s any place like him in the future he\'s working toward. I saw strong parallels between him and suicide bombers, except that he\'s sure that he can do more damage for the cause alive than dead.</p><p>The film is Whedon\'s patented genre mash-up: science fiction, westerns, horror, martial arts—there\'s a place for everything in his universe. Sometimes there are gaps in the logic, though: the second language of space is Chinese, which is usually used to curse, but there\'s nary an Asian person to be seen. It\'s a matter of convenience that most of the planets in this galaxy, although \"terraformed,\" look like the dusty sets of a thousand oaters, because what Whedon most wanted to make here is an old-fashioned Western, complete with chases on horses, revolvers (which are space-age because they make electronic sounds before firing), funky 19th-century dress, and a sometimes amusingly anachronistic dialect that favors double negatives. Don\'t think for a minute that Whedon isn\'t chuckling along with us at some of it, though: he\'s one of the best writers of understated comedy and surprise laughs in the business.</p><p>As I said, the ending feels false: it involves a seismic shift in a certain character\'s worldview, one that seems highly unlikely given the way that character was developed up to that point. It\'s a nice thought, a sort of shiny \"the truth will set you free\" twist, but it doesn\'t fit. However, it\'s the only real miscue in the film. Fans of the series will find everything they were hoping for, and people unfamiliar with it will likely find a rousing two hours of old-fashioned entertainment.</p>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','book posts','','inherit','closed','closed','','112-revision-v1','','','2019-07-23 02:51:50','2019-07-23 02:51:50','',112,'http://itcamefrombeyondpulp.com/uncategorized/112-revision-v1/',0,'revision','',0),(218,1,'2019-07-24 23:13:54','2019-07-24 23:13:54','[et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" custom_padding=\"0px|||||\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" custom_margin=\"||11px|||\" next_background_color=\"#000000\" global_module=\"74\"][et_pb_row global_parent=\"74\" custom_padding=\"0px||0px|||\" custom_margin=\"|auto|-66px|auto||\" _builder_version=\"3.26.3\"][et_pb_column type=\"4_4\" global_parent=\"74\" _builder_version=\"3.26.3\"][et_pb_image global_parent=\"74\" src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/header.jpg\" url=\"http://itcamefrombeyondpulp.com\" _builder_version=\"3.26.3\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.26.3\" width=\"1080px\" inner_module_alignment=\"center\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" module_alignment=\"center\" custom_padding=\"0px||0px||false|false\" next_background_color=\"#e02b20\" global_module=\"175\" prev_background_color=\"#000000\"][et_pb_fullwidth_menu global_parent=\"175\" menu_id=\"2\" submenu_direction=\"downwards\" fullwidth_menu=\"off\" dropdown_menu_text_color=\"#ffffff\" _builder_version=\"3.26.3\" menu_font=\"|800||on|||||\" menu_text_color=\"#ffffff\" menu_font_size=\"22px\" menu_letter_spacing=\"5px\" background_color=\"#e02b20\" border_width_bottom=\"5px\" text_orientation=\"center\" background_layout=\"dark\" custom_padding=\"1px||0px||false|false\" z_index_tablet=\"500\" menu_text_shadow_horizontal_length_tablet=\"0px\" menu_text_shadow_vertical_length_tablet=\"0px\" menu_text_shadow_blur_strength_tablet=\"1px\" border_width_bottom_tablet=\"5px\" border_width_bottom_phone=\"5px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" custom_margin=\"0px||||false|false\" /][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" background_color=\"#e02b20\" width=\"1080px\" module_alignment=\"center\" custom_padding=\"10px||0px|||\" prev_background_color=\"#ffffff\"][et_pb_row _builder_version=\"3.26.3\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" background_color=\"#ffffff\" custom_padding=\"10px|10px||10px|false|false\" border_width_bottom=\"5px\" border_color_bottom=\"#e02b20\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.26.3\" z_index_tablet=\"500\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" text_text_shadow_horizontal_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_vertical_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_blur_strength=\"text_text_shadow_style,%91object Object%93\" link_text_shadow_horizontal_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_vertical_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_blur_strength=\"link_text_shadow_style,%91object Object%93\" ul_text_shadow_horizontal_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_vertical_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_blur_strength=\"ul_text_shadow_style,%91object Object%93\" ol_text_shadow_horizontal_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_vertical_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_blur_strength=\"ol_text_shadow_style,%91object Object%93\" quote_text_shadow_horizontal_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_vertical_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_blur_strength=\"quote_text_shadow_style,%91object Object%93\" header_text_shadow_horizontal_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_vertical_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_blur_strength=\"header_text_shadow_style,%91object Object%93\" header_2_text_shadow_horizontal_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_vertical_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_blur_strength=\"header_2_text_shadow_style,%91object Object%93\" header_3_text_shadow_horizontal_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_vertical_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_blur_strength=\"header_3_text_shadow_style,%91object Object%93\" header_4_text_shadow_horizontal_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_vertical_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_blur_strength=\"header_4_text_shadow_style,%91object Object%93\" header_5_text_shadow_horizontal_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_vertical_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_blur_strength=\"header_5_text_shadow_style,%91object Object%93\" header_6_text_shadow_horizontal_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_vertical_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_blur_strength=\"header_6_text_shadow_style,%91object Object%93\"]\r\n\r\n<h3 style=\"text-align: center;\"><strong><em><img class=\"alignright size-medium wp-image-114\" src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/dolphins-177x300.jpg\" alt=\"\" width=\"177\" height=\"300\" />The Dolphins of Altair</em> (Margaret St. Clair, 1971)</strong></h3>\r\n<p>Joss Whedon\'s short-lived <i>Firefly</i> was one of the best science fiction shows ever made. It lasted 14 episodes, three of which never aired. Fox did everything it could to destroy it, airing the episodes out of order before finally pulling the plug. Out of Whedon\'s canon—the other shows being <i>Buffy the Vampire Slayer</i> and its spinoff <i>Angel</i>—<i>Firefly</i> showed the most potential for long-term story arcs and character developments. There were ample signs that Whedon hadn\'t even gotten started on all of the themes he wanted to explore, which is a bad idea if you\'re making a cult television show. The very things that made it a slowly building masterpiece likely doomed it: trigger-happy TV execs didn\'t see it going anywhere, so they offed it. The show had a cult following, though, and perhaps their efforts had something to do with Whedon getting the green light to go ahead on a culmination of sorts. The film has most of the qualities that made the show so wonderful, including the most important one: the feeling that it\'s not enough.</p>\r\n<p>The film is not perfect: the necessary scenes that clue newcomers in to the story, and the rather abrupt ending, leave a little to be desired. But the film contains sustained, masterful sequences, a surprise plot development that\'s like a kick in the teeth, and a memorable bad guy in Chiwetel Ejiofor. Also, and most importantly, it contains the things that make Joss Whedon\'s creations memorable: the interaction between characters who feel like they\'re real, who have histories that don\'t come across as plot points, who we can imagine existing before and after the film\'s events. There\'s comedy, there\'s tragedy, there\'s emotion, and Whedon is a master at balancing it all.</p>\r\n<p>Some backstory: it\'s around 500 years in the future, and around six years since the galactic Alliance has put down a rebellion by independent planets. The captain of the spaceship Serenity, Malcolm \"Mal\" Reynolds (Nathan Fillion), and his first mate Zoe (Gina Torres), fought on the side of the rebels. Since the war, they\'ve existed on the periphery, taking legal shipping jobs and illegal smuggling jobs. Slowly, they pieced together a crew: the snarky pilot Wash (Alan Tudyk), who is now Zoe\'s husband; the meatheaded, trigger-happy Jayne (Adam Baldwin); and the genius mechanic Kaylee (Jewel Staite). A little less than a year ago, they picked up Simon (Sean Maher), a doctor, and River (Summer Glau), his psychic/psychotic sister. The Alliance had been performing experiments on River, Simon rescued her, and now they\'re on the run. Although Mal pretends to be a hardened criminal, he has a heroic streak a mile wide, so he and the rest of the crew hide and protect Simon and River, as the Alliance comes closer and closer to finding them. That gets us to the beginning of the film.</p>\r\n<p>The plot involves a journey to the edge of the galaxy through the territory inhabited by Reavers, horrific men who murder and rape their way through the galaxy, to a mysterious planet where they discover a horrible secret that I wouldn\'t dream of divulging here. In the series, the Alliance sent various bounty hunters and operatives to attempt to kidnap River. Now there\'s someone new coming after her: an unnamed operative (Chiwetel Ejiofor), who has the serenity and sureness of a mad priest. It\'s his job to get River back, and he\'s capable of doing anything it takes to do so, including killing everyone in his path with a scary calm. He\'s doing it all in the name of a future without strife. He\'s scary because he\'s not angry or upset, or happy or eager. He\'s not doing it for reward; he doesn\'t think there\'s any place like him in the future he\'s working toward. I saw strong parallels between him and suicide bombers, except that he\'s sure that he can do more damage for the cause alive than dead.</p>\r\n<p>The film is Whedon\'s patented genre mash-up: science fiction, westerns, horror, martial arts—there\'s a place for everything in his universe. Sometimes there are gaps in the logic, though: the second language of space is Chinese, which is usually used to curse, but there\'s nary an Asian person to be seen. It\'s a matter of convenience that most of the planets in this galaxy, although \"terraformed,\" look like the dusty sets of a thousand oaters, because what Whedon most wanted to make here is an old-fashioned Western, complete with chases on horses, revolvers (which are space-age because they make electronic sounds before firing), funky 19th-century dress, and a sometimes amusingly anachronistic dialect that favors double negatives. Don\'t think for a minute that Whedon isn\'t chuckling along with us at some of it, though: he\'s one of the best writers of understated comedy and surprise laughs in the business.</p>\r\n<p>As I said, the ending feels false: it involves a seismic shift in a certain character\'s worldview, one that seems highly unlikely given the way that character was developed up to that point. It\'s a nice thought, a sort of shiny \"the truth will set you free\" twist, but it doesn\'t fit. However, it\'s the only real miscue in the film. Fans of the series will find everything they were hoping for, and people unfamiliar with it will likely find a rousing two hours of old-fashioned entertainment.</p>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','book posts','','inherit','closed','closed','','112-revision-v1','','','2019-07-24 23:13:54','2019-07-24 23:13:54','',112,'http://itcamefrombeyondpulp.com/uncategorized/112-revision-v1/',0,'revision','',0),(116,1,'2019-07-23 02:55:13','2019-07-23 02:55:13','[et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" custom_padding=\"0px|||||\" next_background_color=\"#e02b20\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\" global_module=\"74\"][et_pb_row global_parent=\"74\" custom_padding=\"0px||0px|||\" custom_margin=\"|auto|-66px|auto||\" _builder_version=\"3.26.3\"][et_pb_column type=\"4_4\" global_parent=\"74\" _builder_version=\"3.26.3\"][et_pb_image global_parent=\"74\" src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/itfbp-header.jpg\" _builder_version=\"3.26.3\" url=\"http://itcamefrombeyondpulp.com\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\"]\r\n\r\n</p>\r\n<p>\r\n\r\n[/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" background_color=\"#e02b20\" width=\"1080px\" module_alignment=\"center\" custom_padding=\"10px||0px|||\" prev_background_color=\"#ffffff\" border_width_bottom=\"5px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\" border_width_bottom_tablet=\"5px\" border_width_bottom_phone=\"5px\" next_background_color=\"#000000\" global_module=\"97\"][et_pb_row global_parent=\"97\" column_structure=\"1_3,1_3,1_3\" custom_padding=\"0px|0px|0px|0px\" custom_margin=\"0px|0px|0px|0px\" _builder_version=\"3.26.3\" min_height=\"0px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\" module_alignment=\"center\"][et_pb_column type=\"1_3\" global_parent=\"97\" _builder_version=\"3.26.3\"][et_pb_text global_parent=\"97\" _builder_version=\"3.26.3\" header_text_color=\"#ffffff\" z_index_tablet=\"500\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" text_text_shadow_horizontal_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_vertical_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_blur_strength=\"text_text_shadow_style,%91object Object%93\" link_text_shadow_horizontal_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_vertical_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_blur_strength=\"link_text_shadow_style,%91object Object%93\" ul_text_shadow_horizontal_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_vertical_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_blur_strength=\"ul_text_shadow_style,%91object Object%93\" ol_text_shadow_horizontal_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_vertical_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_blur_strength=\"ol_text_shadow_style,%91object Object%93\" quote_text_shadow_horizontal_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_vertical_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_blur_strength=\"quote_text_shadow_style,%91object Object%93\" header_text_shadow_horizontal_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_vertical_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_blur_strength=\"header_text_shadow_style,%91object Object%93\" header_2_text_shadow_horizontal_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_vertical_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_blur_strength=\"header_2_text_shadow_style,%91object Object%93\" header_3_text_shadow_horizontal_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_vertical_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_blur_strength=\"header_3_text_shadow_style,%91object Object%93\" header_4_text_shadow_horizontal_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_vertical_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_blur_strength=\"header_4_text_shadow_style,%91object Object%93\" header_5_text_shadow_horizontal_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_vertical_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_blur_strength=\"header_5_text_shadow_style,%91object Object%93\" header_6_text_shadow_horizontal_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_vertical_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_blur_strength=\"header_6_text_shadow_style,%91object Object%93\"]\r\n\r\n</p>\r\n<h1 style=\"text-align: center;\"><a href=\"http://itcamefrombeyondpulp.com/movies/\"><strong>MOVIES &amp; TV</strong></a></h1>\r\n<p>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" global_parent=\"97\" _builder_version=\"3.26.3\"][et_pb_text global_parent=\"97\" _builder_version=\"3.26.3\" header_text_color=\"#ffffff\" z_index_tablet=\"500\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" text_text_shadow_horizontal_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_vertical_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_blur_strength=\"text_text_shadow_style,%91object Object%93\" link_text_shadow_horizontal_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_vertical_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_blur_strength=\"link_text_shadow_style,%91object Object%93\" ul_text_shadow_horizontal_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_vertical_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_blur_strength=\"ul_text_shadow_style,%91object Object%93\" ol_text_shadow_horizontal_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_vertical_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_blur_strength=\"ol_text_shadow_style,%91object Object%93\" quote_text_shadow_horizontal_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_vertical_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_blur_strength=\"quote_text_shadow_style,%91object Object%93\" header_text_shadow_horizontal_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_vertical_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_blur_strength=\"header_text_shadow_style,%91object Object%93\" header_2_text_shadow_horizontal_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_vertical_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_blur_strength=\"header_2_text_shadow_style,%91object Object%93\" header_3_text_shadow_horizontal_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_vertical_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_blur_strength=\"header_3_text_shadow_style,%91object Object%93\" header_4_text_shadow_horizontal_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_vertical_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_blur_strength=\"header_4_text_shadow_style,%91object Object%93\" header_5_text_shadow_horizontal_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_vertical_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_blur_strength=\"header_5_text_shadow_style,%91object Object%93\" header_6_text_shadow_horizontal_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_vertical_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_blur_strength=\"header_6_text_shadow_style,%91object Object%93\"]\r\n\r\n</p>\r\n<h1 style=\"text-align: center;\"><a href=\"http://itcamefrombeyondpulp.com/books/\"><strong>BOOKS</strong></a></h1>\r\n<p>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" global_parent=\"97\" _builder_version=\"3.26.3\"][et_pb_text global_parent=\"97\" _builder_version=\"3.26.3\" header_text_color=\"#ffffff\" z_index_tablet=\"500\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" text_text_shadow_horizontal_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_vertical_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_blur_strength=\"text_text_shadow_style,%91object Object%93\" link_text_shadow_horizontal_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_vertical_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_blur_strength=\"link_text_shadow_style,%91object Object%93\" ul_text_shadow_horizontal_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_vertical_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_blur_strength=\"ul_text_shadow_style,%91object Object%93\" ol_text_shadow_horizontal_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_vertical_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_blur_strength=\"ol_text_shadow_style,%91object Object%93\" quote_text_shadow_horizontal_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_vertical_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_blur_strength=\"quote_text_shadow_style,%91object Object%93\" header_text_shadow_horizontal_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_vertical_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_blur_strength=\"header_text_shadow_style,%91object Object%93\" header_2_text_shadow_horizontal_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_vertical_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_blur_strength=\"header_2_text_shadow_style,%91object Object%93\" header_3_text_shadow_horizontal_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_vertical_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_blur_strength=\"header_3_text_shadow_style,%91object Object%93\" header_4_text_shadow_horizontal_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_vertical_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_blur_strength=\"header_4_text_shadow_style,%91object Object%93\" header_5_text_shadow_horizontal_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_vertical_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_blur_strength=\"header_5_text_shadow_style,%91object Object%93\" header_6_text_shadow_horizontal_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_vertical_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_blur_strength=\"header_6_text_shadow_style,%91object Object%93\"]\r\n\r\n</p>\r\n<h1 style=\"text-align: center;\"><a href=\"http://itcamefrombeyondpulp.com/sales/\"><strong>SALES</strong></a></h1>\r\n<p>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" background_color=\"#e02b20\" width=\"1080px\" module_alignment=\"center\" custom_padding=\"10px||0px|||\" prev_background_color=\"#000000\"][et_pb_row _builder_version=\"3.26.3\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" background_color=\"#ffffff\" custom_padding=\"10px|10px||10px|false|false\" border_width_bottom=\"5px\" border_color_bottom=\"#e02b20\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.26.3\" z_index_tablet=\"500\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" text_text_shadow_horizontal_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_vertical_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_blur_strength=\"text_text_shadow_style,%91object Object%93\" link_text_shadow_horizontal_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_vertical_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_blur_strength=\"link_text_shadow_style,%91object Object%93\" ul_text_shadow_horizontal_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_vertical_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_blur_strength=\"ul_text_shadow_style,%91object Object%93\" ol_text_shadow_horizontal_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_vertical_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_blur_strength=\"ol_text_shadow_style,%91object Object%93\" quote_text_shadow_horizontal_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_vertical_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_blur_strength=\"quote_text_shadow_style,%91object Object%93\" header_text_shadow_horizontal_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_vertical_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_blur_strength=\"header_text_shadow_style,%91object Object%93\" header_2_text_shadow_horizontal_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_vertical_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_blur_strength=\"header_2_text_shadow_style,%91object Object%93\" header_3_text_shadow_horizontal_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_vertical_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_blur_strength=\"header_3_text_shadow_style,%91object Object%93\" header_4_text_shadow_horizontal_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_vertical_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_blur_strength=\"header_4_text_shadow_style,%91object Object%93\" header_5_text_shadow_horizontal_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_vertical_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_blur_strength=\"header_5_text_shadow_style,%91object Object%93\" header_6_text_shadow_horizontal_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_vertical_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_blur_strength=\"header_6_text_shadow_style,%91object Object%93\"]\r\n\r\n<h3 style=\"text-align: center;\"><strong><em><img class=\"alignright size-medium wp-image-114\" src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/dolphins-177x300.jpg\" alt=\"\" width=\"177\" height=\"300\" />The Dolphins of Altair</em> (Margaret St. Clair, 1971)</strong></h3>\r\n<p>Joss Whedon\'s short-lived <i>Firefly</i> was one of the best science fiction shows ever made. It lasted 14 episodes, three of which never aired. Fox did everything it could to destroy it, airing the episodes out of order before finally pulling the plug. Out of Whedon\'s canon—the other shows being <i>Buffy the Vampire Slayer</i> and its spinoff <i>Angel</i>—<i>Firefly</i> showed the most potential for long-term story arcs and character developments. There were ample signs that Whedon hadn\'t even gotten started on all of the themes he wanted to explore, which is a bad idea if you\'re making a cult television show. The very things that made it a slowly building masterpiece likely doomed it: trigger-happy TV execs didn\'t see it going anywhere, so they offed it. The show had a cult following, though, and perhaps their efforts had something to do with Whedon getting the green light to go ahead on a culmination of sorts. The film has most of the qualities that made the show so wonderful, including the most important one: the feeling that it\'s not enough.</p>\r\n<p>The film is not perfect: the necessary scenes that clue newcomers in to the story, and the rather abrupt ending, leave a little to be desired. But the film contains sustained, masterful sequences, a surprise plot development that\'s like a kick in the teeth, and a memorable bad guy in Chiwetel Ejiofor. Also, and most importantly, it contains the things that make Joss Whedon\'s creations memorable: the interaction between characters who feel like they\'re real, who have histories that don\'t come across as plot points, who we can imagine existing before and after the film\'s events. There\'s comedy, there\'s tragedy, there\'s emotion, and Whedon is a master at balancing it all.</p>\r\n<p>Some backstory: it\'s around 500 years in the future, and around six years since the galactic Alliance has put down a rebellion by independent planets. The captain of the spaceship Serenity, Malcolm \"Mal\" Reynolds (Nathan Fillion), and his first mate Zoe (Gina Torres), fought on the side of the rebels. Since the war, they\'ve existed on the periphery, taking legal shipping jobs and illegal smuggling jobs. Slowly, they pieced together a crew: the snarky pilot Wash (Alan Tudyk), who is now Zoe\'s husband; the meatheaded, trigger-happy Jayne (Adam Baldwin); and the genius mechanic Kaylee (Jewel Staite). A little less than a year ago, they picked up Simon (Sean Maher), a doctor, and River (Summer Glau), his psychic/psychotic sister. The Alliance had been performing experiments on River, Simon rescued her, and now they\'re on the run. Although Mal pretends to be a hardened criminal, he has a heroic streak a mile wide, so he and the rest of the crew hide and protect Simon and River, as the Alliance comes closer and closer to finding them. That gets us to the beginning of the film.</p>\r\n<p>The plot involves a journey to the edge of the galaxy through the territory inhabited by Reavers, horrific men who murder and rape their way through the galaxy, to a mysterious planet where they discover a horrible secret that I wouldn\'t dream of divulging here. In the series, the Alliance sent various bounty hunters and operatives to attempt to kidnap River. Now there\'s someone new coming after her: an unnamed operative (Chiwetel Ejiofor), who has the serenity and sureness of a mad priest. It\'s his job to get River back, and he\'s capable of doing anything it takes to do so, including killing everyone in his path with a scary calm. He\'s doing it all in the name of a future without strife. He\'s scary because he\'s not angry or upset, or happy or eager. He\'s not doing it for reward; he doesn\'t think there\'s any place like him in the future he\'s working toward. I saw strong parallels between him and suicide bombers, except that he\'s sure that he can do more damage for the cause alive than dead.</p>\r\n<p>The film is Whedon\'s patented genre mash-up: science fiction, westerns, horror, martial arts—there\'s a place for everything in his universe. Sometimes there are gaps in the logic, though: the second language of space is Chinese, which is usually used to curse, but there\'s nary an Asian person to be seen. It\'s a matter of convenience that most of the planets in this galaxy, although \"terraformed,\" look like the dusty sets of a thousand oaters, because what Whedon most wanted to make here is an old-fashioned Western, complete with chases on horses, revolvers (which are space-age because they make electronic sounds before firing), funky 19th-century dress, and a sometimes amusingly anachronistic dialect that favors double negatives. Don\'t think for a minute that Whedon isn\'t chuckling along with us at some of it, though: he\'s one of the best writers of understated comedy and surprise laughs in the business.</p>\r\n<p>As I said, the ending feels false: it involves a seismic shift in a certain character\'s worldview, one that seems highly unlikely given the way that character was developed up to that point. It\'s a nice thought, a sort of shiny \"the truth will set you free\" twist, but it doesn\'t fit. However, it\'s the only real miscue in the film. Fans of the series will find everything they were hoping for, and people unfamiliar with it will likely find a rousing two hours of old-fashioned entertainment.</p>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','book posts','','inherit','closed','closed','','112-revision-v1','','','2019-07-23 02:55:13','2019-07-23 02:55:13','',112,'http://itcamefrombeyondpulp.com/uncategorized/112-revision-v1/',0,'revision','',0),(117,1,'2019-07-23 03:07:35','2019-07-23 03:07:35','[et_pb_section fb_built=\"1\" _builder_version=\"3.26.3\" custom_margin=\"||11px|||\" custom_padding=\"0px|||||\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" global_module=\"74\"][et_pb_row custom_padding=\"0px||0px|||\" custom_margin=\"|auto|-66px|auto||\" _builder_version=\"3.26.3\"][et_pb_column type=\"4_4\" _builder_version=\"3.26.3\"][et_pb_image src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/header.jpg\" url=\"http://itcamefrombeyondpulp.com\" _builder_version=\"3.26.3\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.26.3\" width=\"1080px\" width_tablet=\"100%\" width_last_edited=\"on|phone\" module_alignment=\"center\" inner_module_alignment=\"center\" custom_padding=\"0px||0px||false|false\" z_index_tablet=\"500\" hover_enabled=\"0\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" global_module=\"175\"][et_pb_fullwidth_menu menu_id=\"2\" submenu_direction=\"downwards\" fullwidth_menu=\"off\" dropdown_menu_text_color=\"#ffffff\" _builder_version=\"3.26.3\" menu_font=\"|800||on|||||\" menu_text_color=\"#ffffff\" menu_font_size=\"22px\" menu_letter_spacing=\"5px\" background_color=\"#e02b20\" border_width_bottom=\"5px\" text_orientation=\"center\" background_layout=\"dark\" custom_margin=\"0px||||false|false\" custom_padding=\"1px||0px||false|false\" z_index_tablet=\"500\" menu_text_shadow_horizontal_length_tablet=\"0px\" menu_text_shadow_vertical_length_tablet=\"0px\" menu_text_shadow_blur_strength_tablet=\"1px\" border_width_bottom_tablet=\"5px\" border_width_bottom_phone=\"5px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\"][/et_pb_fullwidth_menu][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.26.3\" background_color=\"#e02b20\" width=\"1080px\" module_alignment=\"center\" custom_padding=\"10px||0px|||\"][et_pb_row custom_padding=\"10px|10px||10px|false|false\" _builder_version=\"3.26.3\" background_color=\"#ffffff\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" border_width_bottom=\"5px\" border_color_bottom=\"#e02b20\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/children-of-men.png\" _builder_version=\"3.26.3\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\"][/et_pb_image][et_pb_text _builder_version=\"3.26.3\" z_index_tablet=\"500\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\"]<h3 style=\"text-align: center;\"><strong><em>Children of Men</em> (Alfonso Cuaron, 2006, 109 min.)</strong></h3>\r\n<p>Every day, <i>Children of Men</i> looks not only more possible, but more probable, at least in its vision of a future that has its roots in the present. But Alfonso Cuaron\'s chilling vision of the future goes one step beyond those things we can already see growing today; it\'s 2027, and it\'s been 18 years since the last human gave birth. It\'s a hell of a setup, and for the most part Cuaron and company deliver on that promise.</p>\r\n<p>Although the cast features such names as Clive Owen and Julianne Moore, the main attraction is Cuaron\'s direction, favoring restless handheld cameras and amazing, nearly impossibly choreographed tracking shots. Cuaron\'s genius for movement is one of the things that made <i>Y Tu Mama Tambien</i> so entrancing, and the main thing that made <i>Harry Potter and the Prisoner of Azkaban</i> so much more watchable than the first two installments. He has a knack for rushing things along without making them feel rushed; we feel swept along with the narrative or within a scene without feeling out of control. The highlights are surely the magnificent tracking shots, especially the ones in the film-closing sequence in the refugee camps, where Cuaron\'s camera takes us through battles in progress, the lens becoming spattered with blood in the controlled mayhem.</p>\r\n<p>On the day of the death of the youngest person in the world, Theo (Owen) is kidnapped by the Fish, a revolutionary group headed by his ex-wife Julian (Moore), who wants Theo to use his connections to secure safe passage to the coast for a young refugee named Kee (Claire-Hope Ashitey). After Julian is killing by a seemingly random attack by thugs, co-leader Luke (Chiwetel Ejiofor) and the matronly Miriam (Pam Ferris) take Theo and Kee to a Fish hideout, where Theo learns that Kee is pregnant and that Luke has his own plans for the baby that don\'t necessarily include leaving it with Kee. Theo, Kee, and Miriam flee in hopes that they can get Kee and her unborn child to the Human Project (a shadowy sort of leftist collective), with Luke and the rest of the Fish in hot pursuit. Along they way they seek aid from Theo\'s friend Jasper (Michael Caine) and a corrupt and probably insane cop named Syd (Peter Mullan), until they end up in a walled-in refugee city, caught in the middle of a battle between the army and the revolutionaries.</p>\r\n<p>Owen is the classic anti-hero, the reluctant savior whose gruff and resigned exterior conceals a big heart. Up until the very end, his heroics are of the decidedly average kind; he\'s presented as being able to help not because he\'s particularly adept, but because he\'s lucky. But then he\'s shot, and unlike every single other character in the film who is shot (they all drop, well, like they\'ve been shot), he\'s able to persevere to the end, apparently unmindful of a hole in his stomach until his sacred duty is performed. It\'s one of the film\'s few lapses of internal logic. Another comes during the attack in which Julian is killed; we learn later that one of the Fish used the attack as cover to assassinate Julian, which seems more than foolhardy—they knew Kee was in the car, and with all the shooting and fire-bombing, weren\'t they worried that maybe she or her baby would be harmed? But for the most part the film is well constructed and acted; its limitations are apparent on a different level. It\'s a very good film, but there are many things about it that keep me from joining in the ecstatic praise that has greeted it.</p>\r\n<p>Although the film\'s politics are mostly in the right place, there\'s ample room to criticize many of its underlying assumptions. A scholar friend sighed, saying that <i>Children of Men</i> seemed like the story of a white man saving a brown baby from the government, a sort of white man\'s burden for the left. There\'s something to that, and although I don\'t think it was intentional, it\'s obvious that Cuaron and company didn\'t think it through. And I\'ll add to that by pointing out that it\'s not just about a white man saving a brown baby, but about a white man saving a brown baby from, among others, a brown man. I\'m only halfheartedly advancing this theory; I don\'t for a minute think that Cuaron and company meant any of this. I\'d like to believe that the principle of colorblind casting was at work here: that Chiwetel Ejiofor is such a marvelous actor, and the role of Luke such a rich role, that they deserved to go together. I don\'t think Cuaron and company considered any alternate readings, which is a disappointment from a film that\'s so smart about other things.</p>\r\n<p>It fails again in its sexual politics. There\'s a kind of casual and distressingly typical misogyny at work. Women are the root cause of the infertility (of course men wouldn\'t have become infertile). There are only three types of women here, the helpless, the nurturers, and the ones who end up dead. And then there\'s that word in the title, \"men,\" which I\'m sure we\'re supposed to read in a more universal \"all mankind\" way, but which is actually a good description of the film\'s attitude about women. The entire film is about men fighting over a woman\'s child: over its existence, over its meaning, even over its sex. One of the finest moments comes when Ejiofor, spouting off about how important \"he\" will be, falls into dumbfounded silence when he learns that the baby is a girl; his face relaxes from anger to wonder, and he says, \"A girl? I had a sister.\" But in the end, it\'s really about the children of men, and women don\'t factor in except as carriers of those children. (And I\'m coming around to another friend\'s notion that the song over the end credits, \"Running the World\" by Jarvis Cocker, is another example of the filmmakers failing to think things through. The chorus, \"the cunts are still running the world,\" initially seemed to me to be a sort of wry admission that, even if the ending is a happy one, its happiness is muted by the fact that the government is still engaged in its slash-and-burn policies, and that maybe things won\'t be any better if the Human Project wins out. But there\'s that word, \"cunt,\" which was probably intended as a tossed-off British slang term devoid of sexual connotations, but given the weight of the film\'s sexual politics, is simply an unconscionable gaffe.)</p>\r\n<p>And then there\'s the utopian ending, which, although it worked for me sitting there in the theater—indeed, I would have been furious had it ended any other way—now strikes me as naive. Maybe the film\'s desperate hope for a better world clouded its filmmakers\' vision, a reading that\'s perfectly compatible with the resolution. Throughout, Owen is protecting the baby against the oppressive government, which would misuse the baby as a symbol, and the revolutionaries, who also want to misuse the baby as a symbol (they even call her a \"flag,\" something to rally behind). I\'d love to agree with the film\'s utopian hope that the members of the Human Project will be above such things, that \"society\'s greatest minds\" won\'t use the mother as a lab rat, that they wouldn\'t dream of separating the baby from her mother, but the entire history of scientific research advises against such hopes. I didn\'t think so at the time, but maybe the film would have ended better with Owen and the mother waiting in the fog for a boat that might never come. Uncertainty strikes me as a more honest ending to this story than does blind hope.</p>\r\n<div> </div>\r\n<div>Note that I wrote this shortly after seeing the film in the theater on its opening weekend. In the years since then, over repeated viewings, it has grown in my estimation, and I think it\'s one of the great films of the 21st century.</div>\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Children of Men (2006)','','publish','closed','closed','','children-of-men-2006','','','2019-07-26 03:14:22','2019-07-26 03:14:22','',0,'http://itcamefrombeyondpulp.com/?p=117',0,'post','',0),(118,1,'2019-07-23 02:57:07','2019-07-23 02:57:07','[et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" custom_padding=\"0px|||||\" next_background_color=\"#e02b20\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\" template_type=\"section\"][et_pb_row custom_padding=\"0px||0px|||\" custom_margin=\"|auto|-66px|auto||\" _builder_version=\"3.26.3\"][et_pb_column type=\"4_4\" _builder_version=\"3.26.3\"][et_pb_image src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/itfbp-header.jpg\" _builder_version=\"3.26.3\" url=\"http://itcamefrombeyondpulp.com\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\" /][/et_pb_column][/et_pb_row][/et_pb_section]','header','','inherit','closed','closed','','74-revision-v1','','','2019-07-23 02:57:07','2019-07-23 02:57:07','',74,'http://itcamefrombeyondpulp.com/uncategorized/74-revision-v1/',0,'revision','',0),(301,1,'2019-07-26 03:14:22','2019-07-26 03:14:22','[et_pb_section fb_built=\"1\" _builder_version=\"3.26.3\" custom_margin=\"||11px|||\" custom_padding=\"0px|||||\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" global_module=\"74\"][et_pb_row custom_padding=\"0px||0px|||\" custom_margin=\"|auto|-66px|auto||\" _builder_version=\"3.26.3\"][et_pb_column type=\"4_4\" _builder_version=\"3.26.3\"][et_pb_image src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/header.jpg\" url=\"http://itcamefrombeyondpulp.com\" _builder_version=\"3.26.3\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.26.3\" width=\"1080px\" width_tablet=\"100%\" width_last_edited=\"on|phone\" module_alignment=\"center\" inner_module_alignment=\"center\" custom_padding=\"0px||0px||false|false\" z_index_tablet=\"500\" hover_enabled=\"0\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" global_module=\"175\"][et_pb_fullwidth_menu menu_id=\"2\" submenu_direction=\"downwards\" fullwidth_menu=\"off\" dropdown_menu_text_color=\"#ffffff\" _builder_version=\"3.26.3\" menu_font=\"|800||on|||||\" menu_text_color=\"#ffffff\" menu_font_size=\"22px\" menu_letter_spacing=\"5px\" background_color=\"#e02b20\" border_width_bottom=\"5px\" text_orientation=\"center\" background_layout=\"dark\" custom_margin=\"0px||||false|false\" custom_padding=\"1px||0px||false|false\" z_index_tablet=\"500\" menu_text_shadow_horizontal_length_tablet=\"0px\" menu_text_shadow_vertical_length_tablet=\"0px\" menu_text_shadow_blur_strength_tablet=\"1px\" border_width_bottom_tablet=\"5px\" border_width_bottom_phone=\"5px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\"][/et_pb_fullwidth_menu][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.26.3\" background_color=\"#e02b20\" width=\"1080px\" module_alignment=\"center\" custom_padding=\"10px||0px|||\"][et_pb_row custom_padding=\"10px|10px||10px|false|false\" _builder_version=\"3.26.3\" background_color=\"#ffffff\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" border_width_bottom=\"5px\" border_color_bottom=\"#e02b20\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/children-of-men.png\" _builder_version=\"3.26.3\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\"][/et_pb_image][et_pb_text _builder_version=\"3.26.3\" z_index_tablet=\"500\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\"]<h3 style=\"text-align: center;\"><strong><em>Children of Men</em> (Alfonso Cuaron, 2006, 109 min.)</strong></h3>\r\n<p>Every day, <i>Children of Men</i> looks not only more possible, but more probable, at least in its vision of a future that has its roots in the present. But Alfonso Cuaron\'s chilling vision of the future goes one step beyond those things we can already see growing today; it\'s 2027, and it\'s been 18 years since the last human gave birth. It\'s a hell of a setup, and for the most part Cuaron and company deliver on that promise.</p>\r\n<p>Although the cast features such names as Clive Owen and Julianne Moore, the main attraction is Cuaron\'s direction, favoring restless handheld cameras and amazing, nearly impossibly choreographed tracking shots. Cuaron\'s genius for movement is one of the things that made <i>Y Tu Mama Tambien</i> so entrancing, and the main thing that made <i>Harry Potter and the Prisoner of Azkaban</i> so much more watchable than the first two installments. He has a knack for rushing things along without making them feel rushed; we feel swept along with the narrative or within a scene without feeling out of control. The highlights are surely the magnificent tracking shots, especially the ones in the film-closing sequence in the refugee camps, where Cuaron\'s camera takes us through battles in progress, the lens becoming spattered with blood in the controlled mayhem.</p>\r\n<p>On the day of the death of the youngest person in the world, Theo (Owen) is kidnapped by the Fish, a revolutionary group headed by his ex-wife Julian (Moore), who wants Theo to use his connections to secure safe passage to the coast for a young refugee named Kee (Claire-Hope Ashitey). After Julian is killing by a seemingly random attack by thugs, co-leader Luke (Chiwetel Ejiofor) and the matronly Miriam (Pam Ferris) take Theo and Kee to a Fish hideout, where Theo learns that Kee is pregnant and that Luke has his own plans for the baby that don\'t necessarily include leaving it with Kee. Theo, Kee, and Miriam flee in hopes that they can get Kee and her unborn child to the Human Project (a shadowy sort of leftist collective), with Luke and the rest of the Fish in hot pursuit. Along they way they seek aid from Theo\'s friend Jasper (Michael Caine) and a corrupt and probably insane cop named Syd (Peter Mullan), until they end up in a walled-in refugee city, caught in the middle of a battle between the army and the revolutionaries.</p>\r\n<p>Owen is the classic anti-hero, the reluctant savior whose gruff and resigned exterior conceals a big heart. Up until the very end, his heroics are of the decidedly average kind; he\'s presented as being able to help not because he\'s particularly adept, but because he\'s lucky. But then he\'s shot, and unlike every single other character in the film who is shot (they all drop, well, like they\'ve been shot), he\'s able to persevere to the end, apparently unmindful of a hole in his stomach until his sacred duty is performed. It\'s one of the film\'s few lapses of internal logic. Another comes during the attack in which Julian is killed; we learn later that one of the Fish used the attack as cover to assassinate Julian, which seems more than foolhardy—they knew Kee was in the car, and with all the shooting and fire-bombing, weren\'t they worried that maybe she or her baby would be harmed? But for the most part the film is well constructed and acted; its limitations are apparent on a different level. It\'s a very good film, but there are many things about it that keep me from joining in the ecstatic praise that has greeted it.</p>\r\n<p>Although the film\'s politics are mostly in the right place, there\'s ample room to criticize many of its underlying assumptions. A scholar friend sighed, saying that <i>Children of Men</i> seemed like the story of a white man saving a brown baby from the government, a sort of white man\'s burden for the left. There\'s something to that, and although I don\'t think it was intentional, it\'s obvious that Cuaron and company didn\'t think it through. And I\'ll add to that by pointing out that it\'s not just about a white man saving a brown baby, but about a white man saving a brown baby from, among others, a brown man. I\'m only halfheartedly advancing this theory; I don\'t for a minute think that Cuaron and company meant any of this. I\'d like to believe that the principle of colorblind casting was at work here: that Chiwetel Ejiofor is such a marvelous actor, and the role of Luke such a rich role, that they deserved to go together. I don\'t think Cuaron and company considered any alternate readings, which is a disappointment from a film that\'s so smart about other things.</p>\r\n<p>It fails again in its sexual politics. There\'s a kind of casual and distressingly typical misogyny at work. Women are the root cause of the infertility (of course men wouldn\'t have become infertile). There are only three types of women here, the helpless, the nurturers, and the ones who end up dead. And then there\'s that word in the title, \"men,\" which I\'m sure we\'re supposed to read in a more universal \"all mankind\" way, but which is actually a good description of the film\'s attitude about women. The entire film is about men fighting over a woman\'s child: over its existence, over its meaning, even over its sex. One of the finest moments comes when Ejiofor, spouting off about how important \"he\" will be, falls into dumbfounded silence when he learns that the baby is a girl; his face relaxes from anger to wonder, and he says, \"A girl? I had a sister.\" But in the end, it\'s really about the children of men, and women don\'t factor in except as carriers of those children. (And I\'m coming around to another friend\'s notion that the song over the end credits, \"Running the World\" by Jarvis Cocker, is another example of the filmmakers failing to think things through. The chorus, \"the cunts are still running the world,\" initially seemed to me to be a sort of wry admission that, even if the ending is a happy one, its happiness is muted by the fact that the government is still engaged in its slash-and-burn policies, and that maybe things won\'t be any better if the Human Project wins out. But there\'s that word, \"cunt,\" which was probably intended as a tossed-off British slang term devoid of sexual connotations, but given the weight of the film\'s sexual politics, is simply an unconscionable gaffe.)</p>\r\n<p>And then there\'s the utopian ending, which, although it worked for me sitting there in the theater—indeed, I would have been furious had it ended any other way—now strikes me as naive. Maybe the film\'s desperate hope for a better world clouded its filmmakers\' vision, a reading that\'s perfectly compatible with the resolution. Throughout, Owen is protecting the baby against the oppressive government, which would misuse the baby as a symbol, and the revolutionaries, who also want to misuse the baby as a symbol (they even call her a \"flag,\" something to rally behind). I\'d love to agree with the film\'s utopian hope that the members of the Human Project will be above such things, that \"society\'s greatest minds\" won\'t use the mother as a lab rat, that they wouldn\'t dream of separating the baby from her mother, but the entire history of scientific research advises against such hopes. I didn\'t think so at the time, but maybe the film would have ended better with Owen and the mother waiting in the fog for a boat that might never come. Uncertainty strikes me as a more honest ending to this story than does blind hope.</p>\r\n<div> </div>\r\n<div>Note that I wrote this shortly after seeing the film in the theater on its opening weekend. In the years since then, over repeated viewings, it has grown in my estimation, and I think it\'s one of the great films of the 21st century.</div>\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Children of Men (2006)','','inherit','closed','closed','','117-revision-v1','','','2019-07-26 03:14:22','2019-07-26 03:14:22','',117,'http://itcamefrombeyondpulp.com/uncategorized/117-revision-v1/',0,'revision','',0),(297,1,'2019-07-26 02:10:02','2019-07-26 02:10:02','[et_pb_section fb_built=\"1\" _builder_version=\"3.26.3\" custom_margin=\"||11px|||\" custom_padding=\"0px|||||\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" global_module=\"74\"][et_pb_row custom_padding=\"0px||0px|||\" custom_margin=\"|auto|-66px|auto||\" _builder_version=\"3.26.3\"][et_pb_column type=\"4_4\" _builder_version=\"3.26.3\"][et_pb_image src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/header.jpg\" url=\"http://itcamefrombeyondpulp.com\" _builder_version=\"3.26.3\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.26.3\" width=\"1080px\" width_tablet=\"100%\" width_phone=\"100%\" width_last_edited=\"on|phone\" module_alignment=\"center\" inner_module_alignment=\"center\" custom_padding=\"0px||0px||false|false\" z_index_tablet=\"500\" hover_enabled=\"0\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" global_module=\"175\"][et_pb_fullwidth_menu menu_id=\"2\" submenu_direction=\"downwards\" fullwidth_menu=\"off\" dropdown_menu_text_color=\"#ffffff\" _builder_version=\"3.26.3\" menu_font=\"|800||on|||||\" menu_text_color=\"#ffffff\" menu_font_size=\"22px\" menu_letter_spacing=\"5px\" background_color=\"#e02b20\" border_width_bottom=\"5px\" text_orientation=\"center\" background_layout=\"dark\" custom_margin=\"0px||||false|false\" custom_padding=\"1px||0px||false|false\" z_index_tablet=\"500\" menu_text_shadow_horizontal_length_tablet=\"0px\" menu_text_shadow_vertical_length_tablet=\"0px\" menu_text_shadow_blur_strength_tablet=\"1px\" border_width_bottom_tablet=\"5px\" border_width_bottom_phone=\"5px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\"][/et_pb_fullwidth_menu][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.26.3\" background_color=\"#e02b20\" width=\"1080px\" module_alignment=\"center\" custom_padding=\"10px||0px|||\" width_last_edited=\"on|desktop\" width_phone=\"100%\"][et_pb_row custom_padding=\"10px|10px||10px|false|false\" _builder_version=\"3.26.3\" background_color=\"#ffffff\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" border_width_bottom=\"5px\" border_color_bottom=\"#e02b20\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/children-of-men.png\" _builder_version=\"3.26.3\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\"][/et_pb_image][et_pb_text _builder_version=\"3.26.3\" z_index_tablet=\"500\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\"]<h3 style=\"text-align: center;\"><strong><em>Children of Men</em> (Alfonso Cuaron, 2006, 109 min.)</strong></h3>\r\n<p>Every day, <i>Children of Men</i> looks not only more possible, but more probable, at least in its vision of a future that has its roots in the present. But Alfonso Cuaron\'s chilling vision of the future goes one step beyond those things we can already see growing today; it\'s 2027, and it\'s been 18 years since the last human gave birth. It\'s a hell of a setup, and for the most part Cuaron and company deliver on that promise.</p>\r\n<p>Although the cast features such names as Clive Owen and Julianne Moore, the main attraction is Cuaron\'s direction, favoring restless handheld cameras and amazing, nearly impossibly choreographed tracking shots. Cuaron\'s genius for movement is one of the things that made <i>Y Tu Mama Tambien</i> so entrancing, and the main thing that made <i>Harry Potter and the Prisoner of Azkaban</i> so much more watchable than the first two installments. He has a knack for rushing things along without making them feel rushed; we feel swept along with the narrative or within a scene without feeling out of control. The highlights are surely the magnificent tracking shots, especially the ones in the film-closing sequence in the refugee camps, where Cuaron\'s camera takes us through battles in progress, the lens becoming spattered with blood in the controlled mayhem.</p>\r\n<p>On the day of the death of the youngest person in the world, Theo (Owen) is kidnapped by the Fish, a revolutionary group headed by his ex-wife Julian (Moore), who wants Theo to use his connections to secure safe passage to the coast for a young refugee named Kee (Claire-Hope Ashitey). After Julian is killing by a seemingly random attack by thugs, co-leader Luke (Chiwetel Ejiofor) and the matronly Miriam (Pam Ferris) take Theo and Kee to a Fish hideout, where Theo learns that Kee is pregnant and that Luke has his own plans for the baby that don\'t necessarily include leaving it with Kee. Theo, Kee, and Miriam flee in hopes that they can get Kee and her unborn child to the Human Project (a shadowy sort of leftist collective), with Luke and the rest of the Fish in hot pursuit. Along they way they seek aid from Theo\'s friend Jasper (Michael Caine) and a corrupt and probably insane cop named Syd (Peter Mullan), until they end up in a walled-in refugee city, caught in the middle of a battle between the army and the revolutionaries.</p>\r\n<p>Owen is the classic anti-hero, the reluctant savior whose gruff and resigned exterior conceals a big heart. Up until the very end, his heroics are of the decidedly average kind; he\'s presented as being able to help not because he\'s particularly adept, but because he\'s lucky. But then he\'s shot, and unlike every single other character in the film who is shot (they all drop, well, like they\'ve been shot), he\'s able to persevere to the end, apparently unmindful of a hole in his stomach until his sacred duty is performed. It\'s one of the film\'s few lapses of internal logic. Another comes during the attack in which Julian is killed; we learn later that one of the Fish used the attack as cover to assassinate Julian, which seems more than foolhardy—they knew Kee was in the car, and with all the shooting and fire-bombing, weren\'t they worried that maybe she or her baby would be harmed? But for the most part the film is well constructed and acted; its limitations are apparent on a different level. It\'s a very good film, but there are many things about it that keep me from joining in the ecstatic praise that has greeted it.</p>\r\n<p>Although the film\'s politics are mostly in the right place, there\'s ample room to criticize many of its underlying assumptions. A scholar friend sighed, saying that <i>Children of Men</i> seemed like the story of a white man saving a brown baby from the government, a sort of white man\'s burden for the left. There\'s something to that, and although I don\'t think it was intentional, it\'s obvious that Cuaron and company didn\'t think it through. And I\'ll add to that by pointing out that it\'s not just about a white man saving a brown baby, but about a white man saving a brown baby from, among others, a brown man. I\'m only halfheartedly advancing this theory; I don\'t for a minute think that Cuaron and company meant any of this. I\'d like to believe that the principle of colorblind casting was at work here: that Chiwetel Ejiofor is such a marvelous actor, and the role of Luke such a rich role, that they deserved to go together. I don\'t think Cuaron and company considered any alternate readings, which is a disappointment from a film that\'s so smart about other things.</p>\r\n<p>It fails again in its sexual politics. There\'s a kind of casual and distressingly typical misogyny at work. Women are the root cause of the infertility (of course men wouldn\'t have become infertile). There are only three types of women here, the helpless, the nurturers, and the ones who end up dead. And then there\'s that word in the title, \"men,\" which I\'m sure we\'re supposed to read in a more universal \"all mankind\" way, but which is actually a good description of the film\'s attitude about women. The entire film is about men fighting over a woman\'s child: over its existence, over its meaning, even over its sex. One of the finest moments comes when Ejiofor, spouting off about how important \"he\" will be, falls into dumbfounded silence when he learns that the baby is a girl; his face relaxes from anger to wonder, and he says, \"A girl? I had a sister.\" But in the end, it\'s really about the children of men, and women don\'t factor in except as carriers of those children. (And I\'m coming around to another friend\'s notion that the song over the end credits, \"Running the World\" by Jarvis Cocker, is another example of the filmmakers failing to think things through. The chorus, \"the cunts are still running the world,\" initially seemed to me to be a sort of wry admission that, even if the ending is a happy one, its happiness is muted by the fact that the government is still engaged in its slash-and-burn policies, and that maybe things won\'t be any better if the Human Project wins out. But there\'s that word, \"cunt,\" which was probably intended as a tossed-off British slang term devoid of sexual connotations, but given the weight of the film\'s sexual politics, is simply an unconscionable gaffe.)</p>\r\n<p>And then there\'s the utopian ending, which, although it worked for me sitting there in the theater—indeed, I would have been furious had it ended any other way—now strikes me as naive. Maybe the film\'s desperate hope for a better world clouded its filmmakers\' vision, a reading that\'s perfectly compatible with the resolution. Throughout, Owen is protecting the baby against the oppressive government, which would misuse the baby as a symbol, and the revolutionaries, who also want to misuse the baby as a symbol (they even call her a \"flag,\" something to rally behind). I\'d love to agree with the film\'s utopian hope that the members of the Human Project will be above such things, that \"society\'s greatest minds\" won\'t use the mother as a lab rat, that they wouldn\'t dream of separating the baby from her mother, but the entire history of scientific research advises against such hopes. I didn\'t think so at the time, but maybe the film would have ended better with Owen and the mother waiting in the fog for a boat that might never come. Uncertainty strikes me as a more honest ending to this story than does blind hope.</p>\r\n<div> </div>\r\n<div>Note that I wrote this shortly after seeing the film in the theater on its opening weekend. In the years since then, over repeated viewings, it has grown in my estimation, and I think it\'s one of the great films of the 21st century.</div>\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Children of Men (2006)','','inherit','closed','closed','','117-revision-v1','','','2019-07-26 02:10:02','2019-07-26 02:10:02','',117,'http://itcamefrombeyondpulp.com/uncategorized/117-revision-v1/',0,'revision','',0),(120,1,'2019-07-23 02:59:14','2019-07-23 02:59:14','','children of men','','inherit','closed','closed','','children-of-men','','','2019-07-23 02:59:14','2019-07-23 02:59:14','',117,'http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/children-of-men.png',0,'attachment','image/png',0),(246,1,'2019-07-25 20:52:45','2019-07-25 20:52:45','[et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" custom_padding=\"0px|||||\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" custom_margin=\"||11px|||\" next_background_color=\"#000000\" global_module=\"74\"][et_pb_row global_parent=\"74\" custom_padding=\"0px||0px|||\" custom_margin=\"|auto|-66px|auto||\" _builder_version=\"3.26.3\"][et_pb_column type=\"4_4\" global_parent=\"74\" _builder_version=\"3.26.3\"][et_pb_image global_parent=\"74\" src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/header.jpg\" url=\"http://itcamefrombeyondpulp.com\" _builder_version=\"3.26.3\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.26.3\" width=\"1080px\" inner_module_alignment=\"center\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" module_alignment=\"center\" custom_padding=\"0px||0px||false|false\" next_background_color=\"#e02b20\" global_module=\"175\" prev_background_color=\"#000000\"][et_pb_fullwidth_menu menu_id=\"2\" submenu_direction=\"downwards\" fullwidth_menu=\"off\" dropdown_menu_text_color=\"#ffffff\" _builder_version=\"3.26.3\" menu_font=\"|800||on|||||\" menu_text_color=\"#ffffff\" menu_font_size=\"22px\" menu_letter_spacing=\"5px\" background_color=\"#e02b20\" border_width_bottom=\"5px\" text_orientation=\"center\" background_layout=\"dark\" custom_padding=\"1px||0px||false|false\" z_index_tablet=\"500\" menu_text_shadow_horizontal_length_tablet=\"0px\" menu_text_shadow_vertical_length_tablet=\"0px\" menu_text_shadow_blur_strength_tablet=\"1px\" border_width_bottom_tablet=\"5px\" border_width_bottom_phone=\"5px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" custom_margin=\"0px||||false|false\" /][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" background_color=\"#e02b20\" width=\"1080px\" module_alignment=\"center\" custom_padding=\"10px||0px|||\" prev_background_color=\"#ffffff\"][et_pb_row _builder_version=\"3.26.3\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" background_color=\"#ffffff\" custom_padding=\"10px|10px||10px|false|false\" border_width_bottom=\"5px\" border_color_bottom=\"#e02b20\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image _builder_version=\"3.26.3\" src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/children-of-men.png\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\" /][et_pb_text _builder_version=\"3.26.3\" z_index_tablet=\"500\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" text_text_shadow_horizontal_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_vertical_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_blur_strength=\"text_text_shadow_style,%91object Object%93\" link_text_shadow_horizontal_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_vertical_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_blur_strength=\"link_text_shadow_style,%91object Object%93\" ul_text_shadow_horizontal_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_vertical_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_blur_strength=\"ul_text_shadow_style,%91object Object%93\" ol_text_shadow_horizontal_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_vertical_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_blur_strength=\"ol_text_shadow_style,%91object Object%93\" quote_text_shadow_horizontal_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_vertical_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_blur_strength=\"quote_text_shadow_style,%91object Object%93\" header_text_shadow_horizontal_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_vertical_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_blur_strength=\"header_text_shadow_style,%91object Object%93\" header_2_text_shadow_horizontal_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_vertical_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_blur_strength=\"header_2_text_shadow_style,%91object Object%93\" header_3_text_shadow_horizontal_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_vertical_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_blur_strength=\"header_3_text_shadow_style,%91object Object%93\" header_4_text_shadow_horizontal_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_vertical_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_blur_strength=\"header_4_text_shadow_style,%91object Object%93\" header_5_text_shadow_horizontal_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_vertical_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_blur_strength=\"header_5_text_shadow_style,%91object Object%93\" header_6_text_shadow_horizontal_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_vertical_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_blur_strength=\"header_6_text_shadow_style,%91object Object%93\"]\r\n\r\n<h3 style=\"text-align: center;\"><strong><em>Children of Men</em> (Alfonso Cuaron, 2006, 109 min.)</strong></h3>\r\n<p>Every day, <i>Children of Men</i> looks not only more possible, but more probable, at least in its vision of a future that has its roots in the present. But Alfonso Cuaron\'s chilling vision of the future goes one step beyond those things we can already see growing today; it\'s 2027, and it\'s been 18 years since the last human gave birth. It\'s a hell of a setup, and for the most part Cuaron and company deliver on that promise.</p>\r\n<p>Although the cast features such names as Clive Owen and Julianne Moore, the main attraction is Cuaron\'s direction, favoring restless handheld cameras and amazing, nearly impossibly choreographed tracking shots. Cuaron\'s genius for movement is one of the things that made <i>Y Tu Mama Tambien</i> so entrancing, and the main thing that made <i>Harry Potter and the Prisoner of Azkaban</i> so much more watchable than the first two installments. He has a knack for rushing things along without making them feel rushed; we feel swept along with the narrative or within a scene without feeling out of control. The highlights are surely the magnificent tracking shots, especially the ones in the film-closing sequence in the refugee camps, where Cuaron\'s camera takes us through battles in progress, the lens becoming spattered with blood in the controlled mayhem.</p>\r\n<p>On the day of the death of the youngest person in the world, Theo (Owen) is kidnapped by the Fish, a revolutionary group headed by his ex-wife Julian (Moore), who wants Theo to use his connections to secure safe passage to the coast for a young refugee named Kee (Claire-Hope Ashitey). After Julian is killing by a seemingly random attack by thugs, co-leader Luke (Chiwetel Ejiofor) and the matronly Miriam (Pam Ferris) take Theo and Kee to a Fish hideout, where Theo learns that Kee is pregnant and that Luke has his own plans for the baby that don\'t necessarily include leaving it with Kee. Theo, Kee, and Miriam flee in hopes that they can get Kee and her unborn child to the Human Project (a shadowy sort of leftist collective), with Luke and the rest of the Fish in hot pursuit. Along they way they seek aid from Theo\'s friend Jasper (Michael Caine) and a corrupt and probably insane cop named Syd (Peter Mullan), until they end up in a walled-in refugee city, caught in the middle of a battle between the army and the revolutionaries.</p>\r\n<p>Owen is the classic anti-hero, the reluctant savior whose gruff and resigned exterior conceals a big heart. Up until the very end, his heroics are of the decidedly average kind; he\'s presented as being able to help not because he\'s particularly adept, but because he\'s lucky. But then he\'s shot, and unlike every single other character in the film who is shot (they all drop, well, like they\'ve been shot), he\'s able to persevere to the end, apparently unmindful of a hole in his stomach until his sacred duty is performed. It\'s one of the film\'s few lapses of internal logic. Another comes during the attack in which Julian is killed; we learn later that one of the Fish used the attack as cover to assassinate Julian, which seems more than foolhardy—they knew Kee was in the car, and with all the shooting and fire-bombing, weren\'t they worried that maybe she or her baby would be harmed? But for the most part the film is well constructed and acted; its limitations are apparent on a different level. It\'s a very good film, but there are many things about it that keep me from joining in the ecstatic praise that has greeted it.</p>\r\n<p>Although the film\'s politics are mostly in the right place, there\'s ample room to criticize many of its underlying assumptions. A scholar friend sighed, saying that <i>Children of Men</i> seemed like the story of a white man saving a brown baby from the government, a sort of white man\'s burden for the left. There\'s something to that, and although I don\'t think it was intentional, it\'s obvious that Cuaron and company didn\'t think it through. And I\'ll add to that by pointing out that it\'s not just about a white man saving a brown baby, but about a white man saving a brown baby from, among others, a brown man. I\'m only halfheartedly advancing this theory; I don\'t for a minute think that Cuaron and company meant any of this. I\'d like to believe that the principle of colorblind casting was at work here: that Chiwetel Ejiofor is such a marvelous actor, and the role of Luke such a rich role, that they deserved to go together. I don\'t think Cuaron and company considered any alternate readings, which is a disappointment from a film that\'s so smart about other things.</p>\r\n<p>It fails again in its sexual politics. There\'s a kind of casual and distressingly typical misogyny at work. Women are the root cause of the infertility (of course men wouldn\'t have become infertile). There are only three types of women here, the helpless, the nurturers, and the ones who end up dead. And then there\'s that word in the title, \"men,\" which I\'m sure we\'re supposed to read in a more universal \"all mankind\" way, but which is actually a good description of the film\'s attitude about women. The entire film is about men fighting over a woman\'s child: over its existence, over its meaning, even over its sex. One of the finest moments comes when Ejiofor, spouting off about how important \"he\" will be, falls into dumbfounded silence when he learns that the baby is a girl; his face relaxes from anger to wonder, and he says, \"A girl? I had a sister.\" But in the end, it\'s really about the children of men, and women don\'t factor in except as carriers of those children. (And I\'m coming around to another friend\'s notion that the song over the end credits, \"Running the World\" by Jarvis Cocker, is another example of the filmmakers failing to think things through. The chorus, \"the cunts are still running the world,\" initially seemed to me to be a sort of wry admission that, even if the ending is a happy one, its happiness is muted by the fact that the government is still engaged in its slash-and-burn policies, and that maybe things won\'t be any better if the Human Project wins out. But there\'s that word, \"cunt,\" which was probably intended as a tossed-off British slang term devoid of sexual connotations, but given the weight of the film\'s sexual politics, is simply an unconscionable gaffe.)</p>\r\n<p>And then there\'s the utopian ending, which, although it worked for me sitting there in the theater—indeed, I would have been furious had it ended any other way—now strikes me as naive. Maybe the film\'s desperate hope for a better world clouded its filmmakers\' vision, a reading that\'s perfectly compatible with the resolution. Throughout, Owen is protecting the baby against the oppressive government, which would misuse the baby as a symbol, and the revolutionaries, who also want to misuse the baby as a symbol (they even call her a \"flag,\" something to rally behind). I\'d love to agree with the film\'s utopian hope that the members of the Human Project will be above such things, that \"society\'s greatest minds\" won\'t use the mother as a lab rat, that they wouldn\'t dream of separating the baby from her mother, but the entire history of scientific research advises against such hopes. I didn\'t think so at the time, but maybe the film would have ended better with Owen and the mother waiting in the fog for a boat that might never come. Uncertainty strikes me as a more honest ending to this story than does blind hope.</p>\r\n<div> </div>\r\n<div>Note that I wrote this shortly after seeing the film in the theater on its opening weekend. In the years since then, over repeated viewings, it has grown in my estimation, and I think it\'s one of the great films of the 21st century.</div>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Children of Men (2006)','','inherit','closed','closed','','117-revision-v1','','','2019-07-25 20:52:45','2019-07-25 20:52:45','',117,'http://itcamefrombeyondpulp.com/uncategorized/117-revision-v1/',0,'revision','',0),(121,1,'2019-07-23 03:07:35','2019-07-23 03:07:35','[et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" custom_padding=\"0px|||||\" next_background_color=\"#e02b20\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\" global_module=\"74\"][et_pb_row global_parent=\"74\" custom_padding=\"0px||0px|||\" custom_margin=\"|auto|-66px|auto||\" _builder_version=\"3.26.3\"][et_pb_column type=\"4_4\" global_parent=\"74\" _builder_version=\"3.26.3\"][et_pb_image global_parent=\"74\" src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/itfbp-header.jpg\" _builder_version=\"3.26.3\" url=\"http://itcamefrombeyondpulp.com\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" background_color=\"#e02b20\" width=\"1080px\" module_alignment=\"center\" custom_padding=\"10px||0px|||\" prev_background_color=\"#ffffff\" border_width_bottom=\"5px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\" border_width_bottom_tablet=\"5px\" border_width_bottom_phone=\"5px\" next_background_color=\"#000000\" global_module=\"97\"][et_pb_row global_parent=\"97\" column_structure=\"1_3,1_3,1_3\" custom_padding=\"0px|0px|0px|0px\" custom_margin=\"0px|0px|0px|0px\" _builder_version=\"3.26.3\" min_height=\"0px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\" module_alignment=\"center\"][et_pb_column type=\"1_3\" global_parent=\"97\" _builder_version=\"3.26.3\"][et_pb_text global_parent=\"97\" _builder_version=\"3.26.3\" header_text_color=\"#ffffff\" z_index_tablet=\"500\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" text_text_shadow_horizontal_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_vertical_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_blur_strength=\"text_text_shadow_style,%91object Object%93\" link_text_shadow_horizontal_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_vertical_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_blur_strength=\"link_text_shadow_style,%91object Object%93\" ul_text_shadow_horizontal_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_vertical_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_blur_strength=\"ul_text_shadow_style,%91object Object%93\" ol_text_shadow_horizontal_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_vertical_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_blur_strength=\"ol_text_shadow_style,%91object Object%93\" quote_text_shadow_horizontal_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_vertical_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_blur_strength=\"quote_text_shadow_style,%91object Object%93\" header_text_shadow_horizontal_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_vertical_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_blur_strength=\"header_text_shadow_style,%91object Object%93\" header_2_text_shadow_horizontal_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_vertical_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_blur_strength=\"header_2_text_shadow_style,%91object Object%93\" header_3_text_shadow_horizontal_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_vertical_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_blur_strength=\"header_3_text_shadow_style,%91object Object%93\" header_4_text_shadow_horizontal_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_vertical_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_blur_strength=\"header_4_text_shadow_style,%91object Object%93\" header_5_text_shadow_horizontal_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_vertical_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_blur_strength=\"header_5_text_shadow_style,%91object Object%93\" header_6_text_shadow_horizontal_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_vertical_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_blur_strength=\"header_6_text_shadow_style,%91object Object%93\"]\r\n\r\n<h1 style=\"text-align: center;\"><a href=\"http://itcamefrombeyondpulp.com/movies/\"><strong>MOVIES &amp; TV</strong></a></h1>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" global_parent=\"97\" _builder_version=\"3.26.3\"][et_pb_text global_parent=\"97\" _builder_version=\"3.26.3\" header_text_color=\"#ffffff\" z_index_tablet=\"500\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" text_text_shadow_horizontal_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_vertical_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_blur_strength=\"text_text_shadow_style,%91object Object%93\" link_text_shadow_horizontal_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_vertical_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_blur_strength=\"link_text_shadow_style,%91object Object%93\" ul_text_shadow_horizontal_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_vertical_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_blur_strength=\"ul_text_shadow_style,%91object Object%93\" ol_text_shadow_horizontal_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_vertical_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_blur_strength=\"ol_text_shadow_style,%91object Object%93\" quote_text_shadow_horizontal_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_vertical_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_blur_strength=\"quote_text_shadow_style,%91object Object%93\" header_text_shadow_horizontal_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_vertical_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_blur_strength=\"header_text_shadow_style,%91object Object%93\" header_2_text_shadow_horizontal_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_vertical_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_blur_strength=\"header_2_text_shadow_style,%91object Object%93\" header_3_text_shadow_horizontal_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_vertical_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_blur_strength=\"header_3_text_shadow_style,%91object Object%93\" header_4_text_shadow_horizontal_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_vertical_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_blur_strength=\"header_4_text_shadow_style,%91object Object%93\" header_5_text_shadow_horizontal_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_vertical_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_blur_strength=\"header_5_text_shadow_style,%91object Object%93\" header_6_text_shadow_horizontal_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_vertical_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_blur_strength=\"header_6_text_shadow_style,%91object Object%93\"]\r\n\r\n<h1 style=\"text-align: center;\"><a href=\"http://itcamefrombeyondpulp.com/books/\"><strong>BOOKS</strong></a></h1>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" global_parent=\"97\" _builder_version=\"3.26.3\"][et_pb_text global_parent=\"97\" _builder_version=\"3.26.3\" header_text_color=\"#ffffff\" z_index_tablet=\"500\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" text_text_shadow_horizontal_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_vertical_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_blur_strength=\"text_text_shadow_style,%91object Object%93\" link_text_shadow_horizontal_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_vertical_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_blur_strength=\"link_text_shadow_style,%91object Object%93\" ul_text_shadow_horizontal_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_vertical_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_blur_strength=\"ul_text_shadow_style,%91object Object%93\" ol_text_shadow_horizontal_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_vertical_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_blur_strength=\"ol_text_shadow_style,%91object Object%93\" quote_text_shadow_horizontal_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_vertical_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_blur_strength=\"quote_text_shadow_style,%91object Object%93\" header_text_shadow_horizontal_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_vertical_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_blur_strength=\"header_text_shadow_style,%91object Object%93\" header_2_text_shadow_horizontal_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_vertical_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_blur_strength=\"header_2_text_shadow_style,%91object Object%93\" header_3_text_shadow_horizontal_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_vertical_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_blur_strength=\"header_3_text_shadow_style,%91object Object%93\" header_4_text_shadow_horizontal_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_vertical_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_blur_strength=\"header_4_text_shadow_style,%91object Object%93\" header_5_text_shadow_horizontal_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_vertical_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_blur_strength=\"header_5_text_shadow_style,%91object Object%93\" header_6_text_shadow_horizontal_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_vertical_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_blur_strength=\"header_6_text_shadow_style,%91object Object%93\"]\r\n\r\n<h1 style=\"text-align: center;\"><a href=\"http://itcamefrombeyondpulp.com/sales/\"><strong>SALES</strong></a></h1>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" background_color=\"#e02b20\" width=\"1080px\" module_alignment=\"center\" custom_padding=\"10px||0px|||\" prev_background_color=\"#000000\"][et_pb_row _builder_version=\"3.26.3\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" background_color=\"#ffffff\" custom_padding=\"10px|10px||10px|false|false\" border_width_bottom=\"5px\" border_color_bottom=\"#e02b20\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image _builder_version=\"3.26.3\" src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/children-of-men.png\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\" /][et_pb_text _builder_version=\"3.26.3\" z_index_tablet=\"500\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" text_text_shadow_horizontal_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_vertical_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_blur_strength=\"text_text_shadow_style,%91object Object%93\" link_text_shadow_horizontal_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_vertical_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_blur_strength=\"link_text_shadow_style,%91object Object%93\" ul_text_shadow_horizontal_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_vertical_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_blur_strength=\"ul_text_shadow_style,%91object Object%93\" ol_text_shadow_horizontal_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_vertical_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_blur_strength=\"ol_text_shadow_style,%91object Object%93\" quote_text_shadow_horizontal_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_vertical_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_blur_strength=\"quote_text_shadow_style,%91object Object%93\" header_text_shadow_horizontal_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_vertical_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_blur_strength=\"header_text_shadow_style,%91object Object%93\" header_2_text_shadow_horizontal_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_vertical_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_blur_strength=\"header_2_text_shadow_style,%91object Object%93\" header_3_text_shadow_horizontal_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_vertical_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_blur_strength=\"header_3_text_shadow_style,%91object Object%93\" header_4_text_shadow_horizontal_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_vertical_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_blur_strength=\"header_4_text_shadow_style,%91object Object%93\" header_5_text_shadow_horizontal_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_vertical_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_blur_strength=\"header_5_text_shadow_style,%91object Object%93\" header_6_text_shadow_horizontal_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_vertical_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_blur_strength=\"header_6_text_shadow_style,%91object Object%93\"]\r\n\r\n<h3 style=\"text-align: center;\"><strong><em>Children of Men</em> (Alfonso Cuaron, 2006, 109 min.)</strong></h3><p>Every day, <i>Children of Men</i> looks not only more possible, but more probable, at least in its vision of a future that has its roots in the present. But Alfonso Cuaron\'s chilling vision of the future goes one step beyond those things we can already see growing today; it\'s 2027, and it\'s been 18 years since the last human gave birth. It\'s a hell of a setup, and for the most part Cuaron and company deliver on that promise.<br /><br />Although the cast features such names as Clive Owen and Julianne Moore, the main attraction is Cuaron\'s direction, favoring restless handheld cameras and amazing, nearly impossibly choreographed tracking shots. Cuaron\'s genius for movement is one of the things that made <i>Y Tu Mama Tambien</i> so entrancing, and the main thing that made <i>Harry Potter and the Prisoner of Azkaban</i> so much more watchable than the first two installments. He has a knack for rushing things along without making them feel rushed; we feel swept along with the narrative or within a scene without feeling out of control. The highlights are surely the magnificent tracking shots, especially the ones in the film-closing sequence in the refugee camps, where Cuaron\'s camera takes us through battles in progress, the lens becoming spattered with blood in the controlled mayhem.<br /><br />On the day of the death of the youngest person in the world, Theo (Owen) is kidnapped by the Fish, a revolutionary group headed by his ex-wife Julian (Moore), who wants Theo to use his connections to secure safe passage to the coast for a young refugee named Kee (Claire-Hope Ashitey). After Julian is killing by a seemingly random attack by thugs, co-leader Luke (Chiwetel Ejiofor) and the matronly Miriam (Pam Ferris) take Theo and Kee to a Fish hideout, where Theo learns that Kee is pregnant and that Luke has his own plans for the baby that don\'t necessarily include leaving it with Kee. Theo, Kee, and Miriam flee in hopes that they can get Kee and her unborn child to the Human Project (a shadowy sort of leftist collective), with Luke and the rest of the Fish in hot pursuit. Along they way they seek aid from Theo\'s friend Jasper (Michael Caine) and a corrupt and probably insane cop named Syd (Peter Mullan), until they end up in a walled-in refugee city, caught in the middle of a battle between the army and the revolutionaries.<br /><br />Owen is the classic anti-hero, the reluctant savior whose gruff and resigned exterior conceals a big heart. Up until the very end, his heroics are of the decidedly average kind; he\'s presented as being able to help not because he\'s particularly adept, but because he\'s lucky. But then he\'s shot, and unlike every single other character in the film who is shot (they all drop, well, like they\'ve been shot), he\'s able to persevere to the end, apparently unmindful of a hole in his stomach until his sacred duty is performed. It\'s one of the film\'s few lapses of internal logic. Another comes during the attack in which Julian is killed; we learn later that one of the Fish used the attack as cover to assassinate Julian, which seems more than foolhardy—they knew Kee was in the car, and with all the shooting and fire-bombing, weren\'t they worried that maybe she or her baby would be harmed? But for the most part the film is well constructed and acted; its limitations are apparent on a different level. It\'s a very good film, but there are many things about it that keep me from joining in the ecstatic praise that has greeted it.<br /><br />Although the film\'s politics are mostly in the right place, there\'s ample room to criticize many of its underlying assumptions. A scholar friend sighed, saying that <i>Children of Men</i> seemed like the story of a white man saving a brown baby from the government, a sort of white man\'s burden for the left. There\'s something to that, and although I don\'t think it was intentional, it\'s obvious that Cuaron and company didn\'t think it through. And I\'ll add to that by pointing out that it\'s not just about a white man saving a brown baby, but about a white man saving a brown baby from, among others, a brown man. I\'m only halfheartedly advancing this theory; I don\'t for a minute think that Cuaron and company meant any of this. I\'d like to believe that the principle of colorblind casting was at work here: that Chiwetel Ejiofor is such a marvelous actor, and the role of Luke such a rich role, that they deserved to go together. I don\'t think Cuaron and company considered any alternate readings, which is a disappointment from a film that\'s so smart about other things.<br /><br />It fails again in its sexual politics. There\'s a kind of casual and distressingly typical misogyny at work. Women are the root cause of the infertility (of course men wouldn\'t have become infertile). There are only three types of women here, the helpless, the nurturers, and the ones who end up dead. And then there\'s that word in the title, \"men,\" which I\'m sure we\'re supposed to read in a more universal \"all mankind\" way, but which is actually a good description of the film\'s attitude about women. The entire film is about men fighting over a woman\'s child: over its existence, over its meaning, even over its sex. One of the finest moments comes when Ejiofor, spouting off about how important \"he\" will be, falls into dumbfounded silence when he learns that the baby is a girl; his face relaxes from anger to wonder, and he says, \"A girl? I had a sister.\" But in the end, it\'s really about the children of men, and women don\'t factor in except as carriers of those children. (And I\'m coming around to another friend\'s notion that the song over the end credits, \"Running the World\" by Jarvis Cocker, is another example of the filmmakers failing to think things through. The chorus, \"the cunts are still running the world,\" initially seemed to me to be a sort of wry admission that, even if the ending is a happy one, its happiness is muted by the fact that the government is still engaged in its slash-and-burn policies, and that maybe things won\'t be any better if the Human Project wins out. But there\'s that word, \"cunt,\" which was probably intended as a tossed-off British slang term devoid of sexual connotations, but given the weight of the film\'s sexual politics, is simply an unconscionable gaffe.)<br /><br />And then there\'s the utopian ending, which, although it worked for me sitting there in the theater—indeed, I would have been furious had it ended any other way—now strikes me as naive. Maybe the film\'s desperate hope for a better world clouded its filmmakers\' vision, a reading that\'s perfectly compatible with the resolution. Throughout, Owen is protecting the baby against the oppressive government, which would misuse the baby as a symbol, and the revolutionaries, who also want to misuse the baby as a symbol (they even call her a \"flag,\" something to rally behind). I\'d love to agree with the film\'s utopian hope that the members of the Human Project will be above such things, that \"society\'s greatest minds\" won\'t use the mother as a lab rat, that they wouldn\'t dream of separating the baby from her mother, but the entire history of scientific research advises against such hopes. I didn\'t think so at the time, but maybe the film would have ended better with Owen and the mother waiting in the fog for a boat that might never come. Uncertainty strikes me as a more honest ending to this story than does blind hope.</p><div> </div><div>Note that I wrote this shortly after seeing the film in the theater on its opening weekend. In the years since then, over repeated viewings, it has grown in my estimation, and I think it\'s one of the great films of the 21st century.</div>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Children of Men (2006)','','inherit','closed','closed','','117-revision-v1','','','2019-07-23 03:07:35','2019-07-23 03:07:35','',117,'http://itcamefrombeyondpulp.com/uncategorized/117-revision-v1/',0,'revision','',0);
INSERT INTO `wp6h_posts` VALUES (124,1,'2019-07-23 03:09:45','2019-07-23 03:09:45','[et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" custom_padding=\"0px|||||\" next_background_color=\"#e02b20\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\" global_module=\"74\"][et_pb_row global_parent=\"74\" custom_padding=\"0px||0px|||\" custom_margin=\"|auto|-66px|auto||\" _builder_version=\"3.26.3\"][et_pb_column type=\"4_4\" global_parent=\"74\" _builder_version=\"3.26.3\"][et_pb_image global_parent=\"74\" src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/itfbp-header.jpg\" _builder_version=\"3.26.3\" url=\"http://itcamefrombeyondpulp.com\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" background_color=\"#e02b20\" width=\"1080px\" module_alignment=\"center\" custom_padding=\"10px||0px|||\" prev_background_color=\"#ffffff\" border_width_bottom=\"5px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\" border_width_bottom_tablet=\"5px\" border_width_bottom_phone=\"5px\" next_background_color=\"#000000\" global_module=\"97\"][et_pb_row global_parent=\"97\" column_structure=\"1_3,1_3,1_3\" custom_padding=\"0px|0px|0px|0px\" custom_margin=\"0px|0px|0px|0px\" _builder_version=\"3.26.3\" min_height=\"0px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\" module_alignment=\"center\"][et_pb_column type=\"1_3\" global_parent=\"97\" _builder_version=\"3.26.3\"][et_pb_text global_parent=\"97\" _builder_version=\"3.26.3\" header_text_color=\"#ffffff\" z_index_tablet=\"500\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" text_text_shadow_horizontal_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_vertical_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_blur_strength=\"text_text_shadow_style,%91object Object%93\" link_text_shadow_horizontal_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_vertical_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_blur_strength=\"link_text_shadow_style,%91object Object%93\" ul_text_shadow_horizontal_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_vertical_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_blur_strength=\"ul_text_shadow_style,%91object Object%93\" ol_text_shadow_horizontal_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_vertical_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_blur_strength=\"ol_text_shadow_style,%91object Object%93\" quote_text_shadow_horizontal_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_vertical_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_blur_strength=\"quote_text_shadow_style,%91object Object%93\" header_text_shadow_horizontal_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_vertical_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_blur_strength=\"header_text_shadow_style,%91object Object%93\" header_2_text_shadow_horizontal_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_vertical_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_blur_strength=\"header_2_text_shadow_style,%91object Object%93\" header_3_text_shadow_horizontal_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_vertical_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_blur_strength=\"header_3_text_shadow_style,%91object Object%93\" header_4_text_shadow_horizontal_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_vertical_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_blur_strength=\"header_4_text_shadow_style,%91object Object%93\" header_5_text_shadow_horizontal_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_vertical_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_blur_strength=\"header_5_text_shadow_style,%91object Object%93\" header_6_text_shadow_horizontal_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_vertical_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_blur_strength=\"header_6_text_shadow_style,%91object Object%93\"]\r\n\r\n</p>\r\n<h1 style=\"text-align: center;\"><a href=\"http://itcamefrombeyondpulp.com/movies/\"><strong>MOVIES &amp; TV</strong></a></h1>\r\n<p>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" global_parent=\"97\" _builder_version=\"3.26.3\"][et_pb_text global_parent=\"97\" _builder_version=\"3.26.3\" header_text_color=\"#ffffff\" z_index_tablet=\"500\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" text_text_shadow_horizontal_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_vertical_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_blur_strength=\"text_text_shadow_style,%91object Object%93\" link_text_shadow_horizontal_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_vertical_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_blur_strength=\"link_text_shadow_style,%91object Object%93\" ul_text_shadow_horizontal_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_vertical_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_blur_strength=\"ul_text_shadow_style,%91object Object%93\" ol_text_shadow_horizontal_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_vertical_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_blur_strength=\"ol_text_shadow_style,%91object Object%93\" quote_text_shadow_horizontal_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_vertical_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_blur_strength=\"quote_text_shadow_style,%91object Object%93\" header_text_shadow_horizontal_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_vertical_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_blur_strength=\"header_text_shadow_style,%91object Object%93\" header_2_text_shadow_horizontal_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_vertical_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_blur_strength=\"header_2_text_shadow_style,%91object Object%93\" header_3_text_shadow_horizontal_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_vertical_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_blur_strength=\"header_3_text_shadow_style,%91object Object%93\" header_4_text_shadow_horizontal_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_vertical_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_blur_strength=\"header_4_text_shadow_style,%91object Object%93\" header_5_text_shadow_horizontal_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_vertical_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_blur_strength=\"header_5_text_shadow_style,%91object Object%93\" header_6_text_shadow_horizontal_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_vertical_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_blur_strength=\"header_6_text_shadow_style,%91object Object%93\"]\r\n\r\n</p>\r\n<h1 style=\"text-align: center;\"><a href=\"http://itcamefrombeyondpulp.com/books/\"><strong>BOOKS</strong></a></h1>\r\n<p>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" global_parent=\"97\" _builder_version=\"3.26.3\"][et_pb_text global_parent=\"97\" _builder_version=\"3.26.3\" header_text_color=\"#ffffff\" z_index_tablet=\"500\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" text_text_shadow_horizontal_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_vertical_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_blur_strength=\"text_text_shadow_style,%91object Object%93\" link_text_shadow_horizontal_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_vertical_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_blur_strength=\"link_text_shadow_style,%91object Object%93\" ul_text_shadow_horizontal_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_vertical_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_blur_strength=\"ul_text_shadow_style,%91object Object%93\" ol_text_shadow_horizontal_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_vertical_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_blur_strength=\"ol_text_shadow_style,%91object Object%93\" quote_text_shadow_horizontal_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_vertical_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_blur_strength=\"quote_text_shadow_style,%91object Object%93\" header_text_shadow_horizontal_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_vertical_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_blur_strength=\"header_text_shadow_style,%91object Object%93\" header_2_text_shadow_horizontal_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_vertical_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_blur_strength=\"header_2_text_shadow_style,%91object Object%93\" header_3_text_shadow_horizontal_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_vertical_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_blur_strength=\"header_3_text_shadow_style,%91object Object%93\" header_4_text_shadow_horizontal_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_vertical_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_blur_strength=\"header_4_text_shadow_style,%91object Object%93\" header_5_text_shadow_horizontal_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_vertical_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_blur_strength=\"header_5_text_shadow_style,%91object Object%93\" header_6_text_shadow_horizontal_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_vertical_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_blur_strength=\"header_6_text_shadow_style,%91object Object%93\"]\r\n\r\n</p>\r\n<h1 style=\"text-align: center;\"><a href=\"http://itcamefrombeyondpulp.com/sales/\"><strong>SALES</strong></a></h1>\r\n<p>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" background_color=\"#e02b20\" width=\"1080px\" module_alignment=\"center\" custom_padding=\"10px||0px|||\" prev_background_color=\"#000000\"][et_pb_row custom_padding=\"10px|10px||\" _builder_version=\"3.26.3\" background_color=\"#ffffff\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.26.3\" text_text_shadow_horizontal_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\"]\r\n\r\n<h1 style=\"text-align: center;\">Movies &amp; TV Reviews</h1><p style=\"text-align: center;\"><strong><a href=\"http://itcamefrombeyondpulp.com/movies/children-of-men-2006/\">Children of Men (2006)</a></strong></p><p style=\"text-align: center;\"><a href=\"http://itcamefrombeyondpulp.com/movies/serenity-2005/\"><strong>Serenity (2005)</strong></a></p>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Movies','','inherit','closed','closed','','45-revision-v1','','','2019-07-23 03:09:45','2019-07-23 03:09:45','',45,'http://itcamefrombeyondpulp.com/uncategorized/45-revision-v1/',0,'revision','',0),(125,1,'2019-07-23 03:17:20','2019-07-23 03:17:20','[et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" custom_padding=\"0px|||||\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" custom_margin=\"||11px|||\" next_background_color=\"#000000\" global_module=\"74\"][et_pb_row global_parent=\"74\" custom_padding=\"0px||0px|||\" custom_margin=\"|auto|-66px|auto||\" _builder_version=\"3.26.3\"][et_pb_column type=\"4_4\" global_parent=\"74\" _builder_version=\"3.26.3\"][et_pb_image global_parent=\"74\" src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/header.jpg\" url=\"http://itcamefrombeyondpulp.com\" _builder_version=\"3.26.3\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.26.3\" width=\"1080px\" inner_module_alignment=\"center\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" module_alignment=\"center\" custom_padding=\"0px||0px||false|false\" next_background_color=\"#e02b20\" global_module=\"175\" prev_background_color=\"#000000\"][et_pb_fullwidth_menu menu_id=\"2\" submenu_direction=\"downwards\" fullwidth_menu=\"off\" dropdown_menu_text_color=\"#ffffff\" _builder_version=\"3.26.3\" menu_font=\"|800||on|||||\" menu_text_color=\"#ffffff\" menu_font_size=\"22px\" menu_letter_spacing=\"5px\" background_color=\"#e02b20\" border_width_bottom=\"5px\" text_orientation=\"center\" background_layout=\"dark\" custom_padding=\"1px||0px||false|false\" z_index_tablet=\"500\" menu_text_shadow_horizontal_length_tablet=\"0px\" menu_text_shadow_vertical_length_tablet=\"0px\" menu_text_shadow_blur_strength_tablet=\"1px\" border_width_bottom_tablet=\"5px\" border_width_bottom_phone=\"5px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" custom_margin=\"0px||||false|false\" /][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" background_color=\"#e02b20\" width=\"1080px\" module_alignment=\"center\" custom_padding=\"10px||0px|||\" prev_background_color=\"#ffffff\"][et_pb_row _builder_version=\"3.26.3\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" background_color=\"#ffffff\" custom_padding=\"10px|10px||10px|false|false\" border_width_bottom=\"5px\" border_color_bottom=\"#e02b20\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image _builder_version=\"3.26.3\" src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/cloverfield.jpg\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\" /][et_pb_text _builder_version=\"3.26.3\" z_index_tablet=\"500\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" text_text_shadow_horizontal_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_vertical_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_blur_strength=\"text_text_shadow_style,%91object Object%93\" link_text_shadow_horizontal_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_vertical_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_blur_strength=\"link_text_shadow_style,%91object Object%93\" ul_text_shadow_horizontal_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_vertical_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_blur_strength=\"ul_text_shadow_style,%91object Object%93\" ol_text_shadow_horizontal_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_vertical_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_blur_strength=\"ol_text_shadow_style,%91object Object%93\" quote_text_shadow_horizontal_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_vertical_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_blur_strength=\"quote_text_shadow_style,%91object Object%93\" header_text_shadow_horizontal_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_vertical_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_blur_strength=\"header_text_shadow_style,%91object Object%93\" header_2_text_shadow_horizontal_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_vertical_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_blur_strength=\"header_2_text_shadow_style,%91object Object%93\" header_3_text_shadow_horizontal_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_vertical_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_blur_strength=\"header_3_text_shadow_style,%91object Object%93\" header_4_text_shadow_horizontal_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_vertical_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_blur_strength=\"header_4_text_shadow_style,%91object Object%93\" header_5_text_shadow_horizontal_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_vertical_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_blur_strength=\"header_5_text_shadow_style,%91object Object%93\" header_6_text_shadow_horizontal_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_vertical_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_blur_strength=\"header_6_text_shadow_style,%91object Object%93\"]\r\n\r\n<h3 style=\"text-align: center;\"><strong><em>Cloverfield</em> (Matt Reeves, 2008, 85 min.)</strong></h3>\r\n<p>A giant leap forward from <i>The Blair Witch Project</i>\'s found footage conceit, <i>Cloverfield</i> asks the audience to accept only three things: (1) that someone would lug a video camera around for 90 minutes in the middle of an alien invasion, (2) that the camera includes some kind of storage device that holds more footage than a standard 60-minute DV tape, and (3) that, in the face of a citywide attack by a gigantic killer monster from outer space, three people would run toward it instead of away from it. Viewers willing to accept those three things and resistant to the seasickness that the film\'s hyper-shaky-cam induces in some people will be blown away by one of the most exciting and frightening sci-fi/horror films of the last decade.</p>\r\n<p>When a giant monster attacks Manhattan during his going-away party, Jason (Mike Vogel) puts off his impending trip to Tokyo to run uptown, his brother Rob (Michael Stahl-David), his friend Hud (T.J. Miller), Rob\'s girlfriend Lily (Jessica Lucas), and the shell-shocked Marlena (Lizzy Caplan) in tow, in search of his best friend Beth (Odette Yustman), to do a combination of things: (1) apologize for sleeping with her and then disappearing, (2) tell her he loves her, and (3) maybe save her from the giant monster. The latter looks increasingly unlikely as the true extent of the chaos emerges. Hud insists on lugging along the video camera he was using to record testimonials at the party; \"People are going to want to know what happened,\" he explains uncertainly.</p>\r\n<p>Although the first assumption of some characters is that the explosions and screaming they can barely make out are the result of another terrorist attack, the film shouldn\'t be considered as obvious a political allegory as, say, <i>Gojira</i>, whose A-bomb = monster equation is reinforced throughout the film. The attacks of September 11 inform the characters\' first reactions, but they\'re quickly dropped; one could read the military and government\'s reactions as either effective or ineffective, and the film seems to purposefully avoid easy parallels, aside from the inevitable echoes of falling buildings and people running through lower Manhattan.</p>\r\n<p>The actors are capable, if unremarkable: the situation calls for believable reactions to unbelievable events, and the actors sell the conceit. One could argue that the opening sequence, before the fireworks start, goes on a bit too long, and I\'ll admit that they\'re not the most interesting people around. But that\'s almost the point: they\'re completely average, and they basically serve as our guide through the nightmare; because they\'re semi-entities, we can imagine ourselves in the situation, and the convenient first-person camera helps cement our connection to the events onscreen. The most interesting character is Hud, whom we seldom see. His insistence on recording, which the others disparage, might be his generally annoying personality—he\'s the kind of inexplicable but realistic best friend who tends to annoy everyone else in the room—but it might be his way of feeling like he\'s doing something in a situation where utter helplessness reigns. Jason\'s helplessness propels his Quixotic quest to rescue his friend; the others are there so they won\'t have to be alone. The real stars are the visual effects—which, perhaps aided by the intentionally amateurish look of the film, are among the most convincing digital effects of all time—and the conceit.</p>\r\n<p>A colleague called it \"the most aesthetically rigorous film I\'ve ever seen,\" and I can\'t improve on that assessment. It never, not even for an instant, strays from its mission: unlike George Romero\'s recent <i>Diary of the Dead</i>, which talks its way around some concessions to dramatics (\"I added music to make it scarier\") and hopes you won\'t notice others (early-film cuts without breaks in the sound, despite the presence of only one camera and one microphone), <i>Cloverfield</i> simply refuses to be anything except a grainy, sometimes washed-out, shaky-as-hell video document of an alien invasion, shot by a single camera held by a non-professional and found in the rubble in the aftermath. That\'s it: there\'s no music, no cutting, and no cheating. By itself, that\'s among the greatest achievements in the cinema of the last few years. That it comes packaged in a peerless thriller is just a bonus.</p>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Cloverfield (2008)','','publish','closed','closed','','cloverfield-2008','','','2019-07-25 20:51:58','2019-07-25 20:51:58','',0,'http://itcamefrombeyondpulp.com/?p=125',0,'post','',0),(244,1,'2019-07-25 20:52:13','2019-07-25 20:52:13','[et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" custom_padding=\"0px|||||\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" custom_margin=\"||11px|||\" next_background_color=\"#000000\" template_type=\"section\"][et_pb_row custom_padding=\"0px||0px|||\" custom_margin=\"|auto|-66px|auto||\" _builder_version=\"3.26.3\"][et_pb_column type=\"4_4\" _builder_version=\"3.26.3\"][et_pb_image src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/header.jpg\" url=\"http://itcamefrombeyondpulp.com\" _builder_version=\"3.26.3\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" /][/et_pb_column][/et_pb_row][/et_pb_section]','header','','inherit','closed','closed','','74-revision-v1','','','2019-07-25 20:52:13','2019-07-25 20:52:13','',74,'http://itcamefrombeyondpulp.com/uncategorized/74-revision-v1/',0,'revision','',0),(245,1,'2019-07-25 20:52:34','2019-07-25 20:52:34','[et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" custom_padding=\"0px|||||\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" custom_margin=\"||11px|||\" next_background_color=\"#e02b20\" template_type=\"section\"][et_pb_row custom_padding=\"0px||0px|||\" custom_margin=\"|auto|-66px|auto||\" _builder_version=\"3.26.3\"][et_pb_column type=\"4_4\" _builder_version=\"3.26.3\"][et_pb_image src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/header.jpg\" url=\"http://itcamefrombeyondpulp.com\" _builder_version=\"3.26.3\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" /][/et_pb_column][/et_pb_row][/et_pb_section]','header','','inherit','closed','closed','','74-revision-v1','','','2019-07-25 20:52:34','2019-07-25 20:52:34','',74,'http://itcamefrombeyondpulp.com/uncategorized/74-revision-v1/',0,'revision','',0),(127,1,'2019-07-23 03:16:14','2019-07-23 03:16:14','','cloverfield','','inherit','closed','closed','','cloverfield','','','2019-07-23 03:16:14','2019-07-23 03:16:14','',125,'http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/cloverfield.jpg',0,'attachment','image/jpeg',0),(243,1,'2019-07-25 20:51:58','2019-07-25 20:51:58','[et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" custom_padding=\"0px|||||\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" custom_margin=\"||11px|||\" next_background_color=\"#000000\" global_module=\"74\"][et_pb_row global_parent=\"74\" custom_padding=\"0px||0px|||\" custom_margin=\"|auto|-66px|auto||\" _builder_version=\"3.26.3\"][et_pb_column type=\"4_4\" global_parent=\"74\" _builder_version=\"3.26.3\"][et_pb_image global_parent=\"74\" src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/header.jpg\" url=\"http://itcamefrombeyondpulp.com\" _builder_version=\"3.26.3\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.26.3\" width=\"1080px\" inner_module_alignment=\"center\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" module_alignment=\"center\" custom_padding=\"0px||0px||false|false\" next_background_color=\"#e02b20\" global_module=\"175\" prev_background_color=\"#000000\"][et_pb_fullwidth_menu menu_id=\"2\" submenu_direction=\"downwards\" fullwidth_menu=\"off\" dropdown_menu_text_color=\"#ffffff\" _builder_version=\"3.26.3\" menu_font=\"|800||on|||||\" menu_text_color=\"#ffffff\" menu_font_size=\"22px\" menu_letter_spacing=\"5px\" background_color=\"#e02b20\" border_width_bottom=\"5px\" text_orientation=\"center\" background_layout=\"dark\" custom_padding=\"1px||0px||false|false\" z_index_tablet=\"500\" menu_text_shadow_horizontal_length_tablet=\"0px\" menu_text_shadow_vertical_length_tablet=\"0px\" menu_text_shadow_blur_strength_tablet=\"1px\" border_width_bottom_tablet=\"5px\" border_width_bottom_phone=\"5px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" custom_margin=\"0px||||false|false\" /][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" background_color=\"#e02b20\" width=\"1080px\" module_alignment=\"center\" custom_padding=\"10px||0px|||\" prev_background_color=\"#ffffff\"][et_pb_row _builder_version=\"3.26.3\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" background_color=\"#ffffff\" custom_padding=\"10px|10px||10px|false|false\" border_width_bottom=\"5px\" border_color_bottom=\"#e02b20\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image _builder_version=\"3.26.3\" src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/cloverfield.jpg\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\" /][et_pb_text _builder_version=\"3.26.3\" z_index_tablet=\"500\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" text_text_shadow_horizontal_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_vertical_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_blur_strength=\"text_text_shadow_style,%91object Object%93\" link_text_shadow_horizontal_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_vertical_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_blur_strength=\"link_text_shadow_style,%91object Object%93\" ul_text_shadow_horizontal_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_vertical_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_blur_strength=\"ul_text_shadow_style,%91object Object%93\" ol_text_shadow_horizontal_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_vertical_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_blur_strength=\"ol_text_shadow_style,%91object Object%93\" quote_text_shadow_horizontal_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_vertical_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_blur_strength=\"quote_text_shadow_style,%91object Object%93\" header_text_shadow_horizontal_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_vertical_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_blur_strength=\"header_text_shadow_style,%91object Object%93\" header_2_text_shadow_horizontal_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_vertical_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_blur_strength=\"header_2_text_shadow_style,%91object Object%93\" header_3_text_shadow_horizontal_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_vertical_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_blur_strength=\"header_3_text_shadow_style,%91object Object%93\" header_4_text_shadow_horizontal_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_vertical_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_blur_strength=\"header_4_text_shadow_style,%91object Object%93\" header_5_text_shadow_horizontal_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_vertical_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_blur_strength=\"header_5_text_shadow_style,%91object Object%93\" header_6_text_shadow_horizontal_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_vertical_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_blur_strength=\"header_6_text_shadow_style,%91object Object%93\"]\r\n\r\n<h3 style=\"text-align: center;\"><strong><em>Cloverfield</em> (Matt Reeves, 2008, 85 min.)</strong></h3>\r\n<p>A giant leap forward from <i>The Blair Witch Project</i>\'s found footage conceit, <i>Cloverfield</i> asks the audience to accept only three things: (1) that someone would lug a video camera around for 90 minutes in the middle of an alien invasion, (2) that the camera includes some kind of storage device that holds more footage than a standard 60-minute DV tape, and (3) that, in the face of a citywide attack by a gigantic killer monster from outer space, three people would run toward it instead of away from it. Viewers willing to accept those three things and resistant to the seasickness that the film\'s hyper-shaky-cam induces in some people will be blown away by one of the most exciting and frightening sci-fi/horror films of the last decade.</p>\r\n<p>When a giant monster attacks Manhattan during his going-away party, Jason (Mike Vogel) puts off his impending trip to Tokyo to run uptown, his brother Rob (Michael Stahl-David), his friend Hud (T.J. Miller), Rob\'s girlfriend Lily (Jessica Lucas), and the shell-shocked Marlena (Lizzy Caplan) in tow, in search of his best friend Beth (Odette Yustman), to do a combination of things: (1) apologize for sleeping with her and then disappearing, (2) tell her he loves her, and (3) maybe save her from the giant monster. The latter looks increasingly unlikely as the true extent of the chaos emerges. Hud insists on lugging along the video camera he was using to record testimonials at the party; \"People are going to want to know what happened,\" he explains uncertainly.</p>\r\n<p>Although the first assumption of some characters is that the explosions and screaming they can barely make out are the result of another terrorist attack, the film shouldn\'t be considered as obvious a political allegory as, say, <i>Gojira</i>, whose A-bomb = monster equation is reinforced throughout the film. The attacks of September 11 inform the characters\' first reactions, but they\'re quickly dropped; one could read the military and government\'s reactions as either effective or ineffective, and the film seems to purposefully avoid easy parallels, aside from the inevitable echoes of falling buildings and people running through lower Manhattan.</p>\r\n<p>The actors are capable, if unremarkable: the situation calls for believable reactions to unbelievable events, and the actors sell the conceit. One could argue that the opening sequence, before the fireworks start, goes on a bit too long, and I\'ll admit that they\'re not the most interesting people around. But that\'s almost the point: they\'re completely average, and they basically serve as our guide through the nightmare; because they\'re semi-entities, we can imagine ourselves in the situation, and the convenient first-person camera helps cement our connection to the events onscreen. The most interesting character is Hud, whom we seldom see. His insistence on recording, which the others disparage, might be his generally annoying personality—he\'s the kind of inexplicable but realistic best friend who tends to annoy everyone else in the room—but it might be his way of feeling like he\'s doing something in a situation where utter helplessness reigns. Jason\'s helplessness propels his Quixotic quest to rescue his friend; the others are there so they won\'t have to be alone. The real stars are the visual effects—which, perhaps aided by the intentionally amateurish look of the film, are among the most convincing digital effects of all time—and the conceit.</p>\r\n<p>A colleague called it \"the most aesthetically rigorous film I\'ve ever seen,\" and I can\'t improve on that assessment. It never, not even for an instant, strays from its mission: unlike George Romero\'s recent <i>Diary of the Dead</i>, which talks its way around some concessions to dramatics (\"I added music to make it scarier\") and hopes you won\'t notice others (early-film cuts without breaks in the sound, despite the presence of only one camera and one microphone), <i>Cloverfield</i> simply refuses to be anything except a grainy, sometimes washed-out, shaky-as-hell video document of an alien invasion, shot by a single camera held by a non-professional and found in the rubble in the aftermath. That\'s it: there\'s no music, no cutting, and no cheating. By itself, that\'s among the greatest achievements in the cinema of the last few years. That it comes packaged in a peerless thriller is just a bonus.</p>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Cloverfield (2008)','','inherit','closed','closed','','125-revision-v1','','','2019-07-25 20:51:58','2019-07-25 20:51:58','',125,'http://itcamefrombeyondpulp.com/uncategorized/125-revision-v1/',0,'revision','',0),(128,1,'2019-07-23 03:17:20','2019-07-23 03:17:20','[et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" custom_padding=\"0px|||||\" next_background_color=\"#e02b20\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\" global_module=\"74\"][et_pb_row global_parent=\"74\" custom_padding=\"0px||0px|||\" custom_margin=\"|auto|-66px|auto||\" _builder_version=\"3.26.3\"][et_pb_column type=\"4_4\" global_parent=\"74\" _builder_version=\"3.26.3\"][et_pb_image global_parent=\"74\" src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/itfbp-header.jpg\" _builder_version=\"3.26.3\" url=\"http://itcamefrombeyondpulp.com\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" background_color=\"#e02b20\" width=\"1080px\" module_alignment=\"center\" custom_padding=\"10px||0px|||\" prev_background_color=\"#ffffff\" border_width_bottom=\"5px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\" border_width_bottom_tablet=\"5px\" border_width_bottom_phone=\"5px\" next_background_color=\"#000000\" global_module=\"97\"][et_pb_row global_parent=\"97\" column_structure=\"1_3,1_3,1_3\" custom_padding=\"0px|0px|0px|0px\" custom_margin=\"0px|0px|0px|0px\" _builder_version=\"3.26.3\" min_height=\"0px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\" module_alignment=\"center\"][et_pb_column type=\"1_3\" global_parent=\"97\" _builder_version=\"3.26.3\"][et_pb_text global_parent=\"97\" _builder_version=\"3.26.3\" header_text_color=\"#ffffff\" z_index_tablet=\"500\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" text_text_shadow_horizontal_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_vertical_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_blur_strength=\"text_text_shadow_style,%91object Object%93\" link_text_shadow_horizontal_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_vertical_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_blur_strength=\"link_text_shadow_style,%91object Object%93\" ul_text_shadow_horizontal_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_vertical_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_blur_strength=\"ul_text_shadow_style,%91object Object%93\" ol_text_shadow_horizontal_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_vertical_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_blur_strength=\"ol_text_shadow_style,%91object Object%93\" quote_text_shadow_horizontal_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_vertical_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_blur_strength=\"quote_text_shadow_style,%91object Object%93\" header_text_shadow_horizontal_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_vertical_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_blur_strength=\"header_text_shadow_style,%91object Object%93\" header_2_text_shadow_horizontal_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_vertical_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_blur_strength=\"header_2_text_shadow_style,%91object Object%93\" header_3_text_shadow_horizontal_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_vertical_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_blur_strength=\"header_3_text_shadow_style,%91object Object%93\" header_4_text_shadow_horizontal_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_vertical_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_blur_strength=\"header_4_text_shadow_style,%91object Object%93\" header_5_text_shadow_horizontal_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_vertical_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_blur_strength=\"header_5_text_shadow_style,%91object Object%93\" header_6_text_shadow_horizontal_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_vertical_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_blur_strength=\"header_6_text_shadow_style,%91object Object%93\"]\r\n\r\n<h1 style=\"text-align: center;\"><a href=\"http://itcamefrombeyondpulp.com/movies/\"><strong>MOVIES &amp; TV</strong></a></h1>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" global_parent=\"97\" _builder_version=\"3.26.3\"][et_pb_text global_parent=\"97\" _builder_version=\"3.26.3\" header_text_color=\"#ffffff\" z_index_tablet=\"500\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" text_text_shadow_horizontal_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_vertical_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_blur_strength=\"text_text_shadow_style,%91object Object%93\" link_text_shadow_horizontal_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_vertical_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_blur_strength=\"link_text_shadow_style,%91object Object%93\" ul_text_shadow_horizontal_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_vertical_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_blur_strength=\"ul_text_shadow_style,%91object Object%93\" ol_text_shadow_horizontal_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_vertical_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_blur_strength=\"ol_text_shadow_style,%91object Object%93\" quote_text_shadow_horizontal_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_vertical_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_blur_strength=\"quote_text_shadow_style,%91object Object%93\" header_text_shadow_horizontal_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_vertical_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_blur_strength=\"header_text_shadow_style,%91object Object%93\" header_2_text_shadow_horizontal_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_vertical_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_blur_strength=\"header_2_text_shadow_style,%91object Object%93\" header_3_text_shadow_horizontal_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_vertical_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_blur_strength=\"header_3_text_shadow_style,%91object Object%93\" header_4_text_shadow_horizontal_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_vertical_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_blur_strength=\"header_4_text_shadow_style,%91object Object%93\" header_5_text_shadow_horizontal_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_vertical_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_blur_strength=\"header_5_text_shadow_style,%91object Object%93\" header_6_text_shadow_horizontal_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_vertical_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_blur_strength=\"header_6_text_shadow_style,%91object Object%93\"]\r\n\r\n<h1 style=\"text-align: center;\"><a href=\"http://itcamefrombeyondpulp.com/books/\"><strong>BOOKS</strong></a></h1>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" global_parent=\"97\" _builder_version=\"3.26.3\"][et_pb_text global_parent=\"97\" _builder_version=\"3.26.3\" header_text_color=\"#ffffff\" z_index_tablet=\"500\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" text_text_shadow_horizontal_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_vertical_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_blur_strength=\"text_text_shadow_style,%91object Object%93\" link_text_shadow_horizontal_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_vertical_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_blur_strength=\"link_text_shadow_style,%91object Object%93\" ul_text_shadow_horizontal_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_vertical_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_blur_strength=\"ul_text_shadow_style,%91object Object%93\" ol_text_shadow_horizontal_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_vertical_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_blur_strength=\"ol_text_shadow_style,%91object Object%93\" quote_text_shadow_horizontal_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_vertical_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_blur_strength=\"quote_text_shadow_style,%91object Object%93\" header_text_shadow_horizontal_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_vertical_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_blur_strength=\"header_text_shadow_style,%91object Object%93\" header_2_text_shadow_horizontal_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_vertical_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_blur_strength=\"header_2_text_shadow_style,%91object Object%93\" header_3_text_shadow_horizontal_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_vertical_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_blur_strength=\"header_3_text_shadow_style,%91object Object%93\" header_4_text_shadow_horizontal_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_vertical_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_blur_strength=\"header_4_text_shadow_style,%91object Object%93\" header_5_text_shadow_horizontal_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_vertical_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_blur_strength=\"header_5_text_shadow_style,%91object Object%93\" header_6_text_shadow_horizontal_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_vertical_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_blur_strength=\"header_6_text_shadow_style,%91object Object%93\"]\r\n\r\n<h1 style=\"text-align: center;\"><a href=\"http://itcamefrombeyondpulp.com/sales/\"><strong>SALES</strong></a></h1>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" background_color=\"#e02b20\" width=\"1080px\" module_alignment=\"center\" custom_padding=\"10px||0px|||\" prev_background_color=\"#000000\"][et_pb_row _builder_version=\"3.26.3\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" background_color=\"#ffffff\" custom_padding=\"10px|10px||10px|false|false\" border_width_bottom=\"5px\" border_color_bottom=\"#e02b20\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image _builder_version=\"3.26.3\" src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/cloverfield.jpg\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\" /][et_pb_text _builder_version=\"3.26.3\" z_index_tablet=\"500\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" text_text_shadow_horizontal_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_vertical_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_blur_strength=\"text_text_shadow_style,%91object Object%93\" link_text_shadow_horizontal_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_vertical_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_blur_strength=\"link_text_shadow_style,%91object Object%93\" ul_text_shadow_horizontal_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_vertical_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_blur_strength=\"ul_text_shadow_style,%91object Object%93\" ol_text_shadow_horizontal_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_vertical_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_blur_strength=\"ol_text_shadow_style,%91object Object%93\" quote_text_shadow_horizontal_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_vertical_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_blur_strength=\"quote_text_shadow_style,%91object Object%93\" header_text_shadow_horizontal_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_vertical_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_blur_strength=\"header_text_shadow_style,%91object Object%93\" header_2_text_shadow_horizontal_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_vertical_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_blur_strength=\"header_2_text_shadow_style,%91object Object%93\" header_3_text_shadow_horizontal_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_vertical_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_blur_strength=\"header_3_text_shadow_style,%91object Object%93\" header_4_text_shadow_horizontal_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_vertical_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_blur_strength=\"header_4_text_shadow_style,%91object Object%93\" header_5_text_shadow_horizontal_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_vertical_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_blur_strength=\"header_5_text_shadow_style,%91object Object%93\" header_6_text_shadow_horizontal_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_vertical_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_blur_strength=\"header_6_text_shadow_style,%91object Object%93\"]\r\n\r\n<h3 style=\"text-align: center;\"><strong><em>Cloverfield</em> (Matt Reeves, 2008, 85 min.)</strong></h3><p>A giant leap forward from <i>The Blair Witch Project</i>\'s found footage conceit, <i>Cloverfield</i> asks the audience to accept only three things: (1) that someone would lug a video camera around for 90 minutes in the middle of an alien invasion, (2) that the camera includes some kind of storage device that holds more footage than a standard 60-minute DV tape, and (3) that, in the face of a citywide attack by a gigantic killer monster from outer space, three people would run toward it instead of away from it. Viewers willing to accept those three things and resistant to the seasickness that the film\'s hyper-shaky-cam induces in some people will be blown away by one of the most exciting and frightening sci-fi/horror films of the last decade.<br /><br />When a giant monster attacks Manhattan during his going-away party, Jason (Mike Vogel) puts off his impending trip to Tokyo to run uptown, his brother Rob (Michael Stahl-David), his friend Hud (T.J. Miller), Rob\'s girlfriend Lily (Jessica Lucas), and the shell-shocked Marlena (Lizzy Caplan) in tow, in search of his best friend Beth (Odette Yustman), to do a combination of things: (1) apologize for sleeping with her and then disappearing, (2) tell her he loves her, and (3) maybe save her from the giant monster. The latter looks increasingly unlikely as the true extent of the chaos emerges. Hud insists on lugging along the video camera he was using to record testimonials at the party; \"People are going to want to know what happened,\" he explains uncertainly.<br /><br />Although the first assumption of some characters is that the explosions and screaming they can barely make out are the result of another terrorist attack, the film shouldn\'t be considered as obvious a political allegory as, say, <i>Gojira</i>, whose A-bomb = monster equation is reinforced throughout the film. The attacks of September 11 inform the characters\' first reactions, but they\'re quickly dropped; one could read the military and government\'s reactions as either effective or ineffective, and the film seems to purposefully avoid easy parallels, aside from the inevitable echoes of falling buildings and people running through lower Manhattan.<br /><br />The actors are capable, if unremarkable: the situation calls for believable reactions to unbelievable events, and the actors sell the conceit. One could argue that the opening sequence, before the fireworks start, goes on a bit too long, and I\'ll admit that they\'re not the most interesting people around. But that\'s almost the point: they\'re completely average, and they basically serve as our guide through the nightmare; because they\'re semi-entities, we can imagine ourselves in the situation, and the convenient first-person camera helps cement our connection to the events onscreen. The most interesting character is Hud, whom we seldom see. His insistence on recording, which the others disparage, might be his generally annoying personality—he\'s the kind of inexplicable but realistic best friend who tends to annoy everyone else in the room—but it might be his way of feeling like he\'s doing something in a situation where utter helplessness reigns. Jason\'s helplessness propels his Quixotic quest to rescue his friend; the others are there so they won\'t have to be alone. The real stars are the visual effects—which, perhaps aided by the intentionally amateurish look of the film, are among the most convincing digital effects of all time—and the conceit.<br /><br />A colleague called it \"the most aesthetically rigorous film I\'ve ever seen,\" and I can\'t improve on that assessment. It never, not even for an instant, strays from its mission: unlike George Romero\'s recent <i>Diary of the Dead</i>, which talks its way around some concessions to dramatics (\"I added music to make it scarier\") and hopes you won\'t notice others (early-film cuts without breaks in the sound, despite the presence of only one camera and one microphone), <i>Cloverfield</i> simply refuses to be anything except a grainy, sometimes washed-out, shaky-as-hell video document of an alien invasion, shot by a single camera held by a non-professional and found in the rubble in the aftermath. That\'s it: there\'s no music, no cutting, and no cheating. By itself, that\'s among the greatest achievements in the cinema of the last few years. That it comes packaged in a peerless thriller is just a bonus.</p>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Cloverfield (2008)','','inherit','closed','closed','','125-revision-v1','','','2019-07-23 03:17:20','2019-07-23 03:17:20','',125,'http://itcamefrombeyondpulp.com/uncategorized/125-revision-v1/',0,'revision','',0),(130,1,'2019-07-23 03:19:32','2019-07-23 03:19:32','[et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" custom_padding=\"0px|||||\" next_background_color=\"#e02b20\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\" global_module=\"74\"][et_pb_row global_parent=\"74\" custom_padding=\"0px||0px|||\" custom_margin=\"|auto|-66px|auto||\" _builder_version=\"3.26.3\"][et_pb_column type=\"4_4\" global_parent=\"74\" _builder_version=\"3.26.3\"][et_pb_image global_parent=\"74\" src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/itfbp-header.jpg\" _builder_version=\"3.26.3\" url=\"http://itcamefrombeyondpulp.com\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" background_color=\"#e02b20\" width=\"1080px\" module_alignment=\"center\" custom_padding=\"10px||0px|||\" prev_background_color=\"#ffffff\" border_width_bottom=\"5px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\" border_width_bottom_tablet=\"5px\" border_width_bottom_phone=\"5px\" next_background_color=\"#000000\" global_module=\"97\"][et_pb_row global_parent=\"97\" column_structure=\"1_3,1_3,1_3\" custom_padding=\"0px|0px|0px|0px\" custom_margin=\"0px|0px|0px|0px\" _builder_version=\"3.26.3\" min_height=\"0px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\" module_alignment=\"center\"][et_pb_column type=\"1_3\" global_parent=\"97\" _builder_version=\"3.26.3\"][et_pb_text global_parent=\"97\" _builder_version=\"3.26.3\" header_text_color=\"#ffffff\" z_index_tablet=\"500\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" text_text_shadow_horizontal_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_vertical_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_blur_strength=\"text_text_shadow_style,%91object Object%93\" link_text_shadow_horizontal_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_vertical_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_blur_strength=\"link_text_shadow_style,%91object Object%93\" ul_text_shadow_horizontal_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_vertical_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_blur_strength=\"ul_text_shadow_style,%91object Object%93\" ol_text_shadow_horizontal_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_vertical_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_blur_strength=\"ol_text_shadow_style,%91object Object%93\" quote_text_shadow_horizontal_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_vertical_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_blur_strength=\"quote_text_shadow_style,%91object Object%93\" header_text_shadow_horizontal_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_vertical_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_blur_strength=\"header_text_shadow_style,%91object Object%93\" header_2_text_shadow_horizontal_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_vertical_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_blur_strength=\"header_2_text_shadow_style,%91object Object%93\" header_3_text_shadow_horizontal_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_vertical_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_blur_strength=\"header_3_text_shadow_style,%91object Object%93\" header_4_text_shadow_horizontal_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_vertical_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_blur_strength=\"header_4_text_shadow_style,%91object Object%93\" header_5_text_shadow_horizontal_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_vertical_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_blur_strength=\"header_5_text_shadow_style,%91object Object%93\" header_6_text_shadow_horizontal_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_vertical_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_blur_strength=\"header_6_text_shadow_style,%91object Object%93\"]\r\n\r\n</p>\r\n<h1 style=\"text-align: center;\"><a href=\"http://itcamefrombeyondpulp.com/movies/\"><strong>MOVIES &amp; TV</strong></a></h1>\r\n<p>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" global_parent=\"97\" _builder_version=\"3.26.3\"][et_pb_text global_parent=\"97\" _builder_version=\"3.26.3\" header_text_color=\"#ffffff\" z_index_tablet=\"500\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" text_text_shadow_horizontal_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_vertical_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_blur_strength=\"text_text_shadow_style,%91object Object%93\" link_text_shadow_horizontal_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_vertical_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_blur_strength=\"link_text_shadow_style,%91object Object%93\" ul_text_shadow_horizontal_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_vertical_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_blur_strength=\"ul_text_shadow_style,%91object Object%93\" ol_text_shadow_horizontal_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_vertical_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_blur_strength=\"ol_text_shadow_style,%91object Object%93\" quote_text_shadow_horizontal_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_vertical_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_blur_strength=\"quote_text_shadow_style,%91object Object%93\" header_text_shadow_horizontal_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_vertical_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_blur_strength=\"header_text_shadow_style,%91object Object%93\" header_2_text_shadow_horizontal_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_vertical_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_blur_strength=\"header_2_text_shadow_style,%91object Object%93\" header_3_text_shadow_horizontal_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_vertical_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_blur_strength=\"header_3_text_shadow_style,%91object Object%93\" header_4_text_shadow_horizontal_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_vertical_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_blur_strength=\"header_4_text_shadow_style,%91object Object%93\" header_5_text_shadow_horizontal_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_vertical_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_blur_strength=\"header_5_text_shadow_style,%91object Object%93\" header_6_text_shadow_horizontal_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_vertical_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_blur_strength=\"header_6_text_shadow_style,%91object Object%93\"]\r\n\r\n</p>\r\n<h1 style=\"text-align: center;\"><a href=\"http://itcamefrombeyondpulp.com/books/\"><strong>BOOKS</strong></a></h1>\r\n<p>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" global_parent=\"97\" _builder_version=\"3.26.3\"][et_pb_text global_parent=\"97\" _builder_version=\"3.26.3\" header_text_color=\"#ffffff\" z_index_tablet=\"500\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" text_text_shadow_horizontal_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_vertical_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_blur_strength=\"text_text_shadow_style,%91object Object%93\" link_text_shadow_horizontal_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_vertical_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_blur_strength=\"link_text_shadow_style,%91object Object%93\" ul_text_shadow_horizontal_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_vertical_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_blur_strength=\"ul_text_shadow_style,%91object Object%93\" ol_text_shadow_horizontal_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_vertical_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_blur_strength=\"ol_text_shadow_style,%91object Object%93\" quote_text_shadow_horizontal_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_vertical_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_blur_strength=\"quote_text_shadow_style,%91object Object%93\" header_text_shadow_horizontal_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_vertical_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_blur_strength=\"header_text_shadow_style,%91object Object%93\" header_2_text_shadow_horizontal_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_vertical_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_blur_strength=\"header_2_text_shadow_style,%91object Object%93\" header_3_text_shadow_horizontal_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_vertical_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_blur_strength=\"header_3_text_shadow_style,%91object Object%93\" header_4_text_shadow_horizontal_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_vertical_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_blur_strength=\"header_4_text_shadow_style,%91object Object%93\" header_5_text_shadow_horizontal_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_vertical_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_blur_strength=\"header_5_text_shadow_style,%91object Object%93\" header_6_text_shadow_horizontal_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_vertical_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_blur_strength=\"header_6_text_shadow_style,%91object Object%93\"]\r\n\r\n</p>\r\n<h1 style=\"text-align: center;\"><a href=\"http://itcamefrombeyondpulp.com/sales/\"><strong>SALES</strong></a></h1>\r\n<p>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" background_color=\"#e02b20\" width=\"1080px\" module_alignment=\"center\" custom_padding=\"10px||0px|||\" prev_background_color=\"#000000\"][et_pb_row custom_padding=\"10px|10px||\" _builder_version=\"3.26.3\" background_color=\"#ffffff\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.26.3\" text_text_shadow_horizontal_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\"]\r\n\r\n<h1 style=\"text-align: center;\">Movies &amp; TV Reviews</h1><p style=\"text-align: center;\"><strong><a href=\"http://itcamefrombeyondpulp.com/movies/children-of-men-2006/\">Children of Men (2006)</a><br /></strong><strong><a href=\"http://itcamefrombeyondpulp.com/movies/cloverfield-2008/\">Cloverfield (2008)</a><br /></strong><a href=\"http://itcamefrombeyondpulp.com/movies/serenity-2005/\"><strong>Serenity (2005)</strong></a></p>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Movies','','inherit','closed','closed','','45-revision-v1','','','2019-07-23 03:19:32','2019-07-23 03:19:32','',45,'http://itcamefrombeyondpulp.com/uncategorized/45-revision-v1/',0,'revision','',0),(131,1,'2019-07-23 03:29:44','2019-07-23 03:29:44','[et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" custom_padding=\"0px|||||\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" custom_margin=\"||11px|||\" next_background_color=\"#000000\" global_module=\"74\"][et_pb_row global_parent=\"74\" custom_padding=\"0px||0px|||\" custom_margin=\"|auto|-66px|auto||\" _builder_version=\"3.26.3\"][et_pb_column type=\"4_4\" global_parent=\"74\" _builder_version=\"3.26.3\"][et_pb_image global_parent=\"74\" src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/header.jpg\" url=\"http://itcamefrombeyondpulp.com\" _builder_version=\"3.26.3\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.26.3\" width=\"1080px\" inner_module_alignment=\"center\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" module_alignment=\"center\" custom_padding=\"0px||0px||false|false\" next_background_color=\"#e02b20\" global_module=\"175\" prev_background_color=\"#000000\"][et_pb_fullwidth_menu global_parent=\"175\" menu_id=\"2\" submenu_direction=\"downwards\" fullwidth_menu=\"off\" dropdown_menu_text_color=\"#ffffff\" _builder_version=\"3.26.3\" menu_font=\"|800||on|||||\" menu_text_color=\"#ffffff\" menu_font_size=\"22px\" menu_letter_spacing=\"5px\" background_color=\"#e02b20\" border_width_bottom=\"5px\" text_orientation=\"center\" background_layout=\"dark\" custom_padding=\"1px||0px||false|false\" z_index_tablet=\"500\" menu_text_shadow_horizontal_length_tablet=\"0px\" menu_text_shadow_vertical_length_tablet=\"0px\" menu_text_shadow_blur_strength_tablet=\"1px\" border_width_bottom_tablet=\"5px\" border_width_bottom_phone=\"5px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" custom_margin=\"0px||||false|false\" /][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" background_color=\"#e02b20\" width=\"1080px\" module_alignment=\"center\" custom_padding=\"10px||0px|||\" prev_background_color=\"#ffffff\"][et_pb_row _builder_version=\"3.26.3\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" background_color=\"#ffffff\" custom_padding=\"10px|10px||10px|false|false\" border_width_bottom=\"5px\" border_color_bottom=\"#e02b20\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image _builder_version=\"3.26.3\" src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/dark-knight.jpg\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\" /][et_pb_text _builder_version=\"3.26.3\" z_index_tablet=\"500\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" text_text_shadow_horizontal_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_vertical_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_blur_strength=\"text_text_shadow_style,%91object Object%93\" link_text_shadow_horizontal_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_vertical_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_blur_strength=\"link_text_shadow_style,%91object Object%93\" ul_text_shadow_horizontal_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_vertical_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_blur_strength=\"ul_text_shadow_style,%91object Object%93\" ol_text_shadow_horizontal_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_vertical_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_blur_strength=\"ol_text_shadow_style,%91object Object%93\" quote_text_shadow_horizontal_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_vertical_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_blur_strength=\"quote_text_shadow_style,%91object Object%93\" header_text_shadow_horizontal_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_vertical_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_blur_strength=\"header_text_shadow_style,%91object Object%93\" header_2_text_shadow_horizontal_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_vertical_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_blur_strength=\"header_2_text_shadow_style,%91object Object%93\" header_3_text_shadow_horizontal_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_vertical_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_blur_strength=\"header_3_text_shadow_style,%91object Object%93\" header_4_text_shadow_horizontal_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_vertical_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_blur_strength=\"header_4_text_shadow_style,%91object Object%93\" header_5_text_shadow_horizontal_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_vertical_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_blur_strength=\"header_5_text_shadow_style,%91object Object%93\" header_6_text_shadow_horizontal_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_vertical_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_blur_strength=\"header_6_text_shadow_style,%91object Object%93\"]\r\n\r\n<h3 style=\"text-align: center;\"><strong><em>The Dark Knight</em> (Christopher Nolan, 2008, 152 min.)</strong></h3>\r\n<p>This isn\'t a review per se, but a commentary on a few aspects of the film.</p>\r\n<div> </div>\r\n<div><p>By its constant references to terrorism, <i>The Dark Knight</i> sets itself up, perhaps unwittingly and perhaps not, in opposition to the over-intellectualized films that have attempted to address the War on Terror and the Iraq war. Invariably, these films, including <i>Rendition</i>, <i>The Kingdom</i>, and <i>Lions for Lambs</i> seem aloof; they\'re thinking deep thoughts about the moral issues raised by things like torture and wars of aggression; they\'re logical and talky, raising important points and measuring their answers carefully. <i>The Dark Knight</i>, in contrast, is visceral and terrifying; instead of asking you to think about what you\'d do if you were forced to choose between your son and your wife, it grabs you by the face, sticks a gun down your throat, and screams that you have to choose <i>right fucking now</i>. It\'s an almost physical assault on your moral compass, demanding that you go further than merely thinking about what you\'d do in that situation. Of course, sometimes it\'s not sure what side of various lines it should be on: Batman advises against the use of torture, then indulges in it himself, and his final, terrifying invasion of privacy, even in the service of good, is something that even the film is uncomfortable with.</p>\r\n<p>My most serious reservations are about the ending: by rescuing Dent\'s reputation, they\'re engaging in the same kind of lying \"for the people\'s own good\" that the Bush administration engaged in. Batman et al. are wrong about the need to keep Harvey Dent as a pure symbol of goodness, and the crazy thing is that the answer was there for them, in the scenes immediately preceding the fabrication. Think back to what the Joker said about Batman et al. being \"schemers obsessed with their schemes.\" Nolan\'s biggest scheme is for Harvey to be the white knight, with Batman as the dark one, and they bend over backward at the end to maintain it, even to the extent that they make Batman the bad guy. But was this really necessary, or are they completely misreading their audience? The people on the two ferries, civilians and criminals alike, have just proved that average, ordinary people are capable of acting honorably and selflessly, of rejecting easy answers to complex problems, even when they know they might die because of their refusal to play the Joker\'s game. So why does Batman, who seemed to understand this during the confrontation with the Joker (he says something like \"they\'re not like you\"), suddenly forget that people are complex when the ending rolls around? Why does he deny them their ability to deal with difficult issues? I think he\'s a bit deluded; even a crazy guy like the Joker can be right about stuff like this, at least once in a while. Batman is obsessed with his framework of good and evil, and he lets it obscure his vision. I don\'t think I\'m too far out on a limb suggesting that a guy who dresses up like a bat to fight the forces of evil is a little bit mentally off-kilter.</p>\r\n<p>Of course, this is because the filmmakers are obsessed with their own framework of good and evil, which can\'t be completely separated from any reading of the film. I haven\'t seen the brothers Nolan coming out in favor of my reading, so I admit that I\'m taking away a meaning that they probably didn\'t intend. But that\'s the great and scary thing about art—its makers can\'t control it once it\'s out in the public (director\'s cuts and \"extended editions\" be damned), and it can take on meanings they never intended. I\'m sticking with my reading, because it allows me to leave the theater and remember the film without a sour taste in my mouth.</div>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','The Dark Knight (2008)','','publish','closed','closed','','the-dark-knight-2008','','','2019-07-25 20:51:13','2019-07-25 20:51:13','',0,'http://itcamefrombeyondpulp.com/?p=131',0,'post','',0),(241,1,'2019-07-25 20:51:27','2019-07-25 20:51:27','[et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" custom_padding=\"0px|||||\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" custom_margin=\"||11px|||\" next_background_color=\"#000000\" template_type=\"section\"][et_pb_row custom_padding=\"0px||0px|||\" custom_margin=\"|auto|-66px|auto||\" _builder_version=\"3.26.3\"][et_pb_column type=\"4_4\" _builder_version=\"3.26.3\"][et_pb_image src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/header.jpg\" url=\"http://itcamefrombeyondpulp.com\" _builder_version=\"3.26.3\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" /][/et_pb_column][/et_pb_row][/et_pb_section]','header','','inherit','closed','closed','','74-revision-v1','','','2019-07-25 20:51:27','2019-07-25 20:51:27','',74,'http://itcamefrombeyondpulp.com/uncategorized/74-revision-v1/',0,'revision','',0),(242,1,'2019-07-25 20:51:49','2019-07-25 20:51:49','[et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" custom_padding=\"0px|||||\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" custom_margin=\"||11px|||\" next_background_color=\"#e02b20\" template_type=\"section\"][et_pb_row custom_padding=\"0px||0px|||\" custom_margin=\"|auto|-66px|auto||\" _builder_version=\"3.26.3\"][et_pb_column type=\"4_4\" _builder_version=\"3.26.3\"][et_pb_image src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/header.jpg\" url=\"http://itcamefrombeyondpulp.com\" _builder_version=\"3.26.3\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" /][/et_pb_column][/et_pb_row][/et_pb_section]','header','','inherit','closed','closed','','74-revision-v1','','','2019-07-25 20:51:49','2019-07-25 20:51:49','',74,'http://itcamefrombeyondpulp.com/uncategorized/74-revision-v1/',0,'revision','',0),(133,1,'2019-07-23 03:29:21','2019-07-23 03:29:21','','dark knight','','inherit','closed','closed','','dark-knight','','','2019-07-23 03:29:21','2019-07-23 03:29:21','',131,'http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/dark-knight.jpg',0,'attachment','image/jpeg',0),(240,1,'2019-07-25 20:51:13','2019-07-25 20:51:13','[et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" custom_padding=\"0px|||||\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" custom_margin=\"||11px|||\" next_background_color=\"#000000\" global_module=\"74\"][et_pb_row global_parent=\"74\" custom_padding=\"0px||0px|||\" custom_margin=\"|auto|-66px|auto||\" _builder_version=\"3.26.3\"][et_pb_column type=\"4_4\" global_parent=\"74\" _builder_version=\"3.26.3\"][et_pb_image global_parent=\"74\" src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/header.jpg\" url=\"http://itcamefrombeyondpulp.com\" _builder_version=\"3.26.3\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.26.3\" width=\"1080px\" inner_module_alignment=\"center\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" module_alignment=\"center\" custom_padding=\"0px||0px||false|false\" next_background_color=\"#e02b20\" global_module=\"175\" prev_background_color=\"#000000\"][et_pb_fullwidth_menu global_parent=\"175\" menu_id=\"2\" submenu_direction=\"downwards\" fullwidth_menu=\"off\" dropdown_menu_text_color=\"#ffffff\" _builder_version=\"3.26.3\" menu_font=\"|800||on|||||\" menu_text_color=\"#ffffff\" menu_font_size=\"22px\" menu_letter_spacing=\"5px\" background_color=\"#e02b20\" border_width_bottom=\"5px\" text_orientation=\"center\" background_layout=\"dark\" custom_padding=\"1px||0px||false|false\" z_index_tablet=\"500\" menu_text_shadow_horizontal_length_tablet=\"0px\" menu_text_shadow_vertical_length_tablet=\"0px\" menu_text_shadow_blur_strength_tablet=\"1px\" border_width_bottom_tablet=\"5px\" border_width_bottom_phone=\"5px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" custom_margin=\"0px||||false|false\" /][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" background_color=\"#e02b20\" width=\"1080px\" module_alignment=\"center\" custom_padding=\"10px||0px|||\" prev_background_color=\"#ffffff\"][et_pb_row _builder_version=\"3.26.3\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" background_color=\"#ffffff\" custom_padding=\"10px|10px||10px|false|false\" border_width_bottom=\"5px\" border_color_bottom=\"#e02b20\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image _builder_version=\"3.26.3\" src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/dark-knight.jpg\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\" /][et_pb_text _builder_version=\"3.26.3\" z_index_tablet=\"500\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" text_text_shadow_horizontal_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_vertical_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_blur_strength=\"text_text_shadow_style,%91object Object%93\" link_text_shadow_horizontal_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_vertical_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_blur_strength=\"link_text_shadow_style,%91object Object%93\" ul_text_shadow_horizontal_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_vertical_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_blur_strength=\"ul_text_shadow_style,%91object Object%93\" ol_text_shadow_horizontal_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_vertical_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_blur_strength=\"ol_text_shadow_style,%91object Object%93\" quote_text_shadow_horizontal_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_vertical_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_blur_strength=\"quote_text_shadow_style,%91object Object%93\" header_text_shadow_horizontal_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_vertical_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_blur_strength=\"header_text_shadow_style,%91object Object%93\" header_2_text_shadow_horizontal_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_vertical_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_blur_strength=\"header_2_text_shadow_style,%91object Object%93\" header_3_text_shadow_horizontal_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_vertical_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_blur_strength=\"header_3_text_shadow_style,%91object Object%93\" header_4_text_shadow_horizontal_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_vertical_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_blur_strength=\"header_4_text_shadow_style,%91object Object%93\" header_5_text_shadow_horizontal_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_vertical_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_blur_strength=\"header_5_text_shadow_style,%91object Object%93\" header_6_text_shadow_horizontal_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_vertical_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_blur_strength=\"header_6_text_shadow_style,%91object Object%93\"]\r\n\r\n<h3 style=\"text-align: center;\"><strong><em>The Dark Knight</em> (Christopher Nolan, 2008, 152 min.)</strong></h3>\r\n<p>This isn\'t a review per se, but a commentary on a few aspects of the film.</p>\r\n<div> </div>\r\n<div><p>By its constant references to terrorism, <i>The Dark Knight</i> sets itself up, perhaps unwittingly and perhaps not, in opposition to the over-intellectualized films that have attempted to address the War on Terror and the Iraq war. Invariably, these films, including <i>Rendition</i>, <i>The Kingdom</i>, and <i>Lions for Lambs</i> seem aloof; they\'re thinking deep thoughts about the moral issues raised by things like torture and wars of aggression; they\'re logical and talky, raising important points and measuring their answers carefully. <i>The Dark Knight</i>, in contrast, is visceral and terrifying; instead of asking you to think about what you\'d do if you were forced to choose between your son and your wife, it grabs you by the face, sticks a gun down your throat, and screams that you have to choose <i>right fucking now</i>. It\'s an almost physical assault on your moral compass, demanding that you go further than merely thinking about what you\'d do in that situation. Of course, sometimes it\'s not sure what side of various lines it should be on: Batman advises against the use of torture, then indulges in it himself, and his final, terrifying invasion of privacy, even in the service of good, is something that even the film is uncomfortable with.</p>\r\n<p>My most serious reservations are about the ending: by rescuing Dent\'s reputation, they\'re engaging in the same kind of lying \"for the people\'s own good\" that the Bush administration engaged in. Batman et al. are wrong about the need to keep Harvey Dent as a pure symbol of goodness, and the crazy thing is that the answer was there for them, in the scenes immediately preceding the fabrication. Think back to what the Joker said about Batman et al. being \"schemers obsessed with their schemes.\" Nolan\'s biggest scheme is for Harvey to be the white knight, with Batman as the dark one, and they bend over backward at the end to maintain it, even to the extent that they make Batman the bad guy. But was this really necessary, or are they completely misreading their audience? The people on the two ferries, civilians and criminals alike, have just proved that average, ordinary people are capable of acting honorably and selflessly, of rejecting easy answers to complex problems, even when they know they might die because of their refusal to play the Joker\'s game. So why does Batman, who seemed to understand this during the confrontation with the Joker (he says something like \"they\'re not like you\"), suddenly forget that people are complex when the ending rolls around? Why does he deny them their ability to deal with difficult issues? I think he\'s a bit deluded; even a crazy guy like the Joker can be right about stuff like this, at least once in a while. Batman is obsessed with his framework of good and evil, and he lets it obscure his vision. I don\'t think I\'m too far out on a limb suggesting that a guy who dresses up like a bat to fight the forces of evil is a little bit mentally off-kilter.</p>\r\n<p>Of course, this is because the filmmakers are obsessed with their own framework of good and evil, which can\'t be completely separated from any reading of the film. I haven\'t seen the brothers Nolan coming out in favor of my reading, so I admit that I\'m taking away a meaning that they probably didn\'t intend. But that\'s the great and scary thing about art—its makers can\'t control it once it\'s out in the public (director\'s cuts and \"extended editions\" be damned), and it can take on meanings they never intended. I\'m sticking with my reading, because it allows me to leave the theater and remember the film without a sour taste in my mouth.</div>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','The Dark Knight (2008)','','inherit','closed','closed','','131-revision-v1','','','2019-07-25 20:51:13','2019-07-25 20:51:13','',131,'http://itcamefrombeyondpulp.com/uncategorized/131-revision-v1/',0,'revision','',0),(134,1,'2019-07-23 03:29:44','2019-07-23 03:29:44','[et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" custom_padding=\"0px|||||\" next_background_color=\"#e02b20\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\" global_module=\"74\"][et_pb_row global_parent=\"74\" custom_padding=\"0px||0px|||\" custom_margin=\"|auto|-66px|auto||\" _builder_version=\"3.26.3\"][et_pb_column type=\"4_4\" global_parent=\"74\" _builder_version=\"3.26.3\"][et_pb_image global_parent=\"74\" src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/itfbp-header.jpg\" _builder_version=\"3.26.3\" url=\"http://itcamefrombeyondpulp.com\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" background_color=\"#e02b20\" width=\"1080px\" module_alignment=\"center\" custom_padding=\"10px||0px|||\" prev_background_color=\"#ffffff\" border_width_bottom=\"5px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\" border_width_bottom_tablet=\"5px\" border_width_bottom_phone=\"5px\" next_background_color=\"#000000\" global_module=\"97\"][et_pb_row global_parent=\"97\" column_structure=\"1_3,1_3,1_3\" custom_padding=\"0px|0px|0px|0px\" custom_margin=\"0px|0px|0px|0px\" _builder_version=\"3.26.3\" min_height=\"0px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\" module_alignment=\"center\"][et_pb_column type=\"1_3\" global_parent=\"97\" _builder_version=\"3.26.3\"][et_pb_text global_parent=\"97\" _builder_version=\"3.26.3\" header_text_color=\"#ffffff\" z_index_tablet=\"500\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" text_text_shadow_horizontal_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_vertical_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_blur_strength=\"text_text_shadow_style,%91object Object%93\" link_text_shadow_horizontal_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_vertical_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_blur_strength=\"link_text_shadow_style,%91object Object%93\" ul_text_shadow_horizontal_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_vertical_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_blur_strength=\"ul_text_shadow_style,%91object Object%93\" ol_text_shadow_horizontal_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_vertical_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_blur_strength=\"ol_text_shadow_style,%91object Object%93\" quote_text_shadow_horizontal_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_vertical_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_blur_strength=\"quote_text_shadow_style,%91object Object%93\" header_text_shadow_horizontal_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_vertical_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_blur_strength=\"header_text_shadow_style,%91object Object%93\" header_2_text_shadow_horizontal_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_vertical_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_blur_strength=\"header_2_text_shadow_style,%91object Object%93\" header_3_text_shadow_horizontal_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_vertical_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_blur_strength=\"header_3_text_shadow_style,%91object Object%93\" header_4_text_shadow_horizontal_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_vertical_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_blur_strength=\"header_4_text_shadow_style,%91object Object%93\" header_5_text_shadow_horizontal_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_vertical_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_blur_strength=\"header_5_text_shadow_style,%91object Object%93\" header_6_text_shadow_horizontal_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_vertical_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_blur_strength=\"header_6_text_shadow_style,%91object Object%93\"]\r\n\r\n<h1 style=\"text-align: center;\"><a href=\"http://itcamefrombeyondpulp.com/movies/\"><strong>MOVIES &amp; TV</strong></a></h1>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" global_parent=\"97\" _builder_version=\"3.26.3\"][et_pb_text global_parent=\"97\" _builder_version=\"3.26.3\" header_text_color=\"#ffffff\" z_index_tablet=\"500\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" text_text_shadow_horizontal_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_vertical_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_blur_strength=\"text_text_shadow_style,%91object Object%93\" link_text_shadow_horizontal_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_vertical_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_blur_strength=\"link_text_shadow_style,%91object Object%93\" ul_text_shadow_horizontal_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_vertical_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_blur_strength=\"ul_text_shadow_style,%91object Object%93\" ol_text_shadow_horizontal_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_vertical_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_blur_strength=\"ol_text_shadow_style,%91object Object%93\" quote_text_shadow_horizontal_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_vertical_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_blur_strength=\"quote_text_shadow_style,%91object Object%93\" header_text_shadow_horizontal_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_vertical_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_blur_strength=\"header_text_shadow_style,%91object Object%93\" header_2_text_shadow_horizontal_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_vertical_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_blur_strength=\"header_2_text_shadow_style,%91object Object%93\" header_3_text_shadow_horizontal_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_vertical_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_blur_strength=\"header_3_text_shadow_style,%91object Object%93\" header_4_text_shadow_horizontal_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_vertical_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_blur_strength=\"header_4_text_shadow_style,%91object Object%93\" header_5_text_shadow_horizontal_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_vertical_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_blur_strength=\"header_5_text_shadow_style,%91object Object%93\" header_6_text_shadow_horizontal_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_vertical_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_blur_strength=\"header_6_text_shadow_style,%91object Object%93\"]\r\n\r\n<h1 style=\"text-align: center;\"><a href=\"http://itcamefrombeyondpulp.com/books/\"><strong>BOOKS</strong></a></h1>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" global_parent=\"97\" _builder_version=\"3.26.3\"][et_pb_text global_parent=\"97\" _builder_version=\"3.26.3\" header_text_color=\"#ffffff\" z_index_tablet=\"500\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" text_text_shadow_horizontal_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_vertical_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_blur_strength=\"text_text_shadow_style,%91object Object%93\" link_text_shadow_horizontal_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_vertical_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_blur_strength=\"link_text_shadow_style,%91object Object%93\" ul_text_shadow_horizontal_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_vertical_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_blur_strength=\"ul_text_shadow_style,%91object Object%93\" ol_text_shadow_horizontal_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_vertical_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_blur_strength=\"ol_text_shadow_style,%91object Object%93\" quote_text_shadow_horizontal_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_vertical_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_blur_strength=\"quote_text_shadow_style,%91object Object%93\" header_text_shadow_horizontal_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_vertical_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_blur_strength=\"header_text_shadow_style,%91object Object%93\" header_2_text_shadow_horizontal_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_vertical_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_blur_strength=\"header_2_text_shadow_style,%91object Object%93\" header_3_text_shadow_horizontal_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_vertical_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_blur_strength=\"header_3_text_shadow_style,%91object Object%93\" header_4_text_shadow_horizontal_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_vertical_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_blur_strength=\"header_4_text_shadow_style,%91object Object%93\" header_5_text_shadow_horizontal_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_vertical_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_blur_strength=\"header_5_text_shadow_style,%91object Object%93\" header_6_text_shadow_horizontal_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_vertical_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_blur_strength=\"header_6_text_shadow_style,%91object Object%93\"]\r\n\r\n<h1 style=\"text-align: center;\"><a href=\"http://itcamefrombeyondpulp.com/sales/\"><strong>SALES</strong></a></h1>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" background_color=\"#e02b20\" width=\"1080px\" module_alignment=\"center\" custom_padding=\"10px||0px|||\" prev_background_color=\"#000000\"][et_pb_row _builder_version=\"3.26.3\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" background_color=\"#ffffff\" custom_padding=\"10px|10px||10px|false|false\" border_width_bottom=\"5px\" border_color_bottom=\"#e02b20\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image _builder_version=\"3.26.3\" src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/dark-knight.jpg\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\" /][et_pb_text _builder_version=\"3.26.3\" z_index_tablet=\"500\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" text_text_shadow_horizontal_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_vertical_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_blur_strength=\"text_text_shadow_style,%91object Object%93\" link_text_shadow_horizontal_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_vertical_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_blur_strength=\"link_text_shadow_style,%91object Object%93\" ul_text_shadow_horizontal_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_vertical_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_blur_strength=\"ul_text_shadow_style,%91object Object%93\" ol_text_shadow_horizontal_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_vertical_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_blur_strength=\"ol_text_shadow_style,%91object Object%93\" quote_text_shadow_horizontal_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_vertical_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_blur_strength=\"quote_text_shadow_style,%91object Object%93\" header_text_shadow_horizontal_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_vertical_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_blur_strength=\"header_text_shadow_style,%91object Object%93\" header_2_text_shadow_horizontal_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_vertical_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_blur_strength=\"header_2_text_shadow_style,%91object Object%93\" header_3_text_shadow_horizontal_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_vertical_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_blur_strength=\"header_3_text_shadow_style,%91object Object%93\" header_4_text_shadow_horizontal_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_vertical_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_blur_strength=\"header_4_text_shadow_style,%91object Object%93\" header_5_text_shadow_horizontal_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_vertical_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_blur_strength=\"header_5_text_shadow_style,%91object Object%93\" header_6_text_shadow_horizontal_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_vertical_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_blur_strength=\"header_6_text_shadow_style,%91object Object%93\"]\r\n\r\n<h3 style=\"text-align: center;\"><strong><em>The Dark Knight</em> (Christopher Nolan, 2008, 152 min.)</strong></h3><p>This isn\'t a review per se, but a commentary on a few aspects of the film.</p><div> </div><div>By its constant references to terrorism, <i>The Dark Knight</i> sets itself up, perhaps unwittingly and perhaps not, in opposition to the over-intellectualized films that have attempted to address the War on Terror and the Iraq war. Invariably, these films, including <i>Rendition</i>, <i>The Kingdom</i>, and <i>Lions for Lambs</i> seem aloof; they\'re thinking deep thoughts about the moral issues raised by things like torture and wars of aggression; they\'re logical and talky, raising important points and measuring their answers carefully. <i>The Dark Knight</i>, in contrast, is visceral and terrifying; instead of asking you to think about what you\'d do if you were forced to choose between your son and your wife, it grabs you by the face, sticks a gun down your throat, and screams that you have to choose <i>right fucking now</i>. It\'s an almost physical assault on your moral compass, demanding that you go further than merely thinking about what you\'d do in that situation. Of course, sometimes it\'s not sure what side of various lines it should be on: Batman advises against the use of torture, then indulges in it himself, and his final, terrifying invasion of privacy, even in the service of good, is something that even the film is uncomfortable with.<br /><br />My most serious reservations are about the ending: by rescuing Dent\'s reputation, they\'re engaging in the same kind of lying \"for the people\'s own good\" that the Bush administration engaged in. Batman et al. are wrong about the need to keep Harvey Dent as a pure symbol of goodness, and the crazy thing is that the answer was there for them, in the scenes immediately preceding the fabrication. Think back to what the Joker said about Batman et al. being \"schemers obsessed with their schemes.\" Nolan\'s biggest scheme is for Harvey to be the white knight, with Batman as the dark one, and they bend over backward at the end to maintain it, even to the extent that they make Batman the bad guy. But was this really necessary, or are they completely misreading their audience? The people on the two ferries, civilians and criminals alike, have just proved that average, ordinary people are capable of acting honorably and selflessly, of rejecting easy answers to complex problems, even when they know they might die because of their refusal to play the Joker\'s game. So why does Batman, who seemed to understand this during the confrontation with the Joker (he says something like \"they\'re not like you\"), suddenly forget that people are complex when the ending rolls around? Why does he deny them their ability to deal with difficult issues? I think he\'s a bit deluded; even a crazy guy like the Joker can be right about stuff like this, at least once in a while. Batman is obsessed with his framework of good and evil, and he lets it obscure his vision. I don\'t think I\'m too far out on a limb suggesting that a guy who dresses up like a bat to fight the forces of evil is a little bit mentally off-kilter.<br /><br />Of course, this is because the filmmakers are obsessed with their own framework of good and evil, which can\'t be completely separated from any reading of the film. I haven\'t seen the brothers Nolan coming out in favor of my reading, so I admit that I\'m taking away a meaning that they probably didn\'t intend. But that\'s the great and scary thing about art—its makers can\'t control it once it\'s out in the public (director\'s cuts and \"extended editions\" be damned), and it can take on meanings they never intended. I\'m sticking with my reading, because it allows me to leave the theater and remember the film without a sour taste in my mouth.</div>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','The Dark Knight (2008)','','inherit','closed','closed','','131-revision-v1','','','2019-07-23 03:29:44','2019-07-23 03:29:44','',131,'http://itcamefrombeyondpulp.com/uncategorized/131-revision-v1/',0,'revision','',0),(136,1,'2019-07-23 03:31:37','2019-07-23 03:31:37','[et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" custom_padding=\"0px|||||\" next_background_color=\"#e02b20\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\" global_module=\"74\"][et_pb_row global_parent=\"74\" custom_padding=\"0px||0px|||\" custom_margin=\"|auto|-66px|auto||\" _builder_version=\"3.26.3\"][et_pb_column type=\"4_4\" global_parent=\"74\" _builder_version=\"3.26.3\"][et_pb_image global_parent=\"74\" src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/itfbp-header.jpg\" _builder_version=\"3.26.3\" url=\"http://itcamefrombeyondpulp.com\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" background_color=\"#e02b20\" width=\"1080px\" module_alignment=\"center\" custom_padding=\"10px||0px|||\" prev_background_color=\"#ffffff\" border_width_bottom=\"5px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\" border_width_bottom_tablet=\"5px\" border_width_bottom_phone=\"5px\" next_background_color=\"#000000\" global_module=\"97\"][et_pb_row global_parent=\"97\" column_structure=\"1_3,1_3,1_3\" custom_padding=\"0px|0px|0px|0px\" custom_margin=\"0px|0px|0px|0px\" _builder_version=\"3.26.3\" min_height=\"0px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\" module_alignment=\"center\"][et_pb_column type=\"1_3\" global_parent=\"97\" _builder_version=\"3.26.3\"][et_pb_text global_parent=\"97\" _builder_version=\"3.26.3\" header_text_color=\"#ffffff\" z_index_tablet=\"500\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" text_text_shadow_horizontal_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_vertical_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_blur_strength=\"text_text_shadow_style,%91object Object%93\" link_text_shadow_horizontal_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_vertical_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_blur_strength=\"link_text_shadow_style,%91object Object%93\" ul_text_shadow_horizontal_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_vertical_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_blur_strength=\"ul_text_shadow_style,%91object Object%93\" ol_text_shadow_horizontal_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_vertical_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_blur_strength=\"ol_text_shadow_style,%91object Object%93\" quote_text_shadow_horizontal_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_vertical_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_blur_strength=\"quote_text_shadow_style,%91object Object%93\" header_text_shadow_horizontal_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_vertical_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_blur_strength=\"header_text_shadow_style,%91object Object%93\" header_2_text_shadow_horizontal_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_vertical_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_blur_strength=\"header_2_text_shadow_style,%91object Object%93\" header_3_text_shadow_horizontal_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_vertical_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_blur_strength=\"header_3_text_shadow_style,%91object Object%93\" header_4_text_shadow_horizontal_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_vertical_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_blur_strength=\"header_4_text_shadow_style,%91object Object%93\" header_5_text_shadow_horizontal_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_vertical_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_blur_strength=\"header_5_text_shadow_style,%91object Object%93\" header_6_text_shadow_horizontal_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_vertical_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_blur_strength=\"header_6_text_shadow_style,%91object Object%93\"]\r\n\r\n</p>\r\n<h1 style=\"text-align: center;\"><a href=\"http://itcamefrombeyondpulp.com/movies/\"><strong>MOVIES &amp; TV</strong></a></h1>\r\n<p>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" global_parent=\"97\" _builder_version=\"3.26.3\"][et_pb_text global_parent=\"97\" _builder_version=\"3.26.3\" header_text_color=\"#ffffff\" z_index_tablet=\"500\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" text_text_shadow_horizontal_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_vertical_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_blur_strength=\"text_text_shadow_style,%91object Object%93\" link_text_shadow_horizontal_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_vertical_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_blur_strength=\"link_text_shadow_style,%91object Object%93\" ul_text_shadow_horizontal_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_vertical_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_blur_strength=\"ul_text_shadow_style,%91object Object%93\" ol_text_shadow_horizontal_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_vertical_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_blur_strength=\"ol_text_shadow_style,%91object Object%93\" quote_text_shadow_horizontal_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_vertical_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_blur_strength=\"quote_text_shadow_style,%91object Object%93\" header_text_shadow_horizontal_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_vertical_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_blur_strength=\"header_text_shadow_style,%91object Object%93\" header_2_text_shadow_horizontal_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_vertical_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_blur_strength=\"header_2_text_shadow_style,%91object Object%93\" header_3_text_shadow_horizontal_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_vertical_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_blur_strength=\"header_3_text_shadow_style,%91object Object%93\" header_4_text_shadow_horizontal_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_vertical_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_blur_strength=\"header_4_text_shadow_style,%91object Object%93\" header_5_text_shadow_horizontal_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_vertical_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_blur_strength=\"header_5_text_shadow_style,%91object Object%93\" header_6_text_shadow_horizontal_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_vertical_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_blur_strength=\"header_6_text_shadow_style,%91object Object%93\"]\r\n\r\n</p>\r\n<h1 style=\"text-align: center;\"><a href=\"http://itcamefrombeyondpulp.com/books/\"><strong>BOOKS</strong></a></h1>\r\n<p>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" global_parent=\"97\" _builder_version=\"3.26.3\"][et_pb_text global_parent=\"97\" _builder_version=\"3.26.3\" header_text_color=\"#ffffff\" z_index_tablet=\"500\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" text_text_shadow_horizontal_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_vertical_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_blur_strength=\"text_text_shadow_style,%91object Object%93\" link_text_shadow_horizontal_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_vertical_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_blur_strength=\"link_text_shadow_style,%91object Object%93\" ul_text_shadow_horizontal_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_vertical_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_blur_strength=\"ul_text_shadow_style,%91object Object%93\" ol_text_shadow_horizontal_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_vertical_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_blur_strength=\"ol_text_shadow_style,%91object Object%93\" quote_text_shadow_horizontal_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_vertical_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_blur_strength=\"quote_text_shadow_style,%91object Object%93\" header_text_shadow_horizontal_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_vertical_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_blur_strength=\"header_text_shadow_style,%91object Object%93\" header_2_text_shadow_horizontal_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_vertical_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_blur_strength=\"header_2_text_shadow_style,%91object Object%93\" header_3_text_shadow_horizontal_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_vertical_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_blur_strength=\"header_3_text_shadow_style,%91object Object%93\" header_4_text_shadow_horizontal_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_vertical_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_blur_strength=\"header_4_text_shadow_style,%91object Object%93\" header_5_text_shadow_horizontal_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_vertical_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_blur_strength=\"header_5_text_shadow_style,%91object Object%93\" header_6_text_shadow_horizontal_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_vertical_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_blur_strength=\"header_6_text_shadow_style,%91object Object%93\"]\r\n\r\n</p>\r\n<h1 style=\"text-align: center;\"><a href=\"http://itcamefrombeyondpulp.com/sales/\"><strong>SALES</strong></a></h1>\r\n<p>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" background_color=\"#e02b20\" width=\"1080px\" module_alignment=\"center\" custom_padding=\"10px||0px|||\" prev_background_color=\"#000000\"][et_pb_row custom_padding=\"10px|10px||\" _builder_version=\"3.26.3\" background_color=\"#ffffff\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.26.3\" text_text_shadow_horizontal_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\"]\r\n\r\n<h1 style=\"text-align: center;\">Movies &amp; TV Reviews</h1><p style=\"text-align: center;\"><strong><a href=\"http://itcamefrombeyondpulp.com/movies/children-of-men-2006/\">Children of Men (2006)</a><br /></strong><strong><a href=\"http://itcamefrombeyondpulp.com/movies/cloverfield-2008/\">Cloverfield (2008)</a><br /><a href=\"http://itcamefrombeyondpulp.com/movies/the-dark-knight-2008/\">The Dark Knight (2008)</a><br /></strong><a href=\"http://itcamefrombeyondpulp.com/movies/serenity-2005/\"><strong>Serenity (2005)</strong></a></p>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Movies','','inherit','closed','closed','','45-revision-v1','','','2019-07-23 03:31:37','2019-07-23 03:31:37','',45,'http://itcamefrombeyondpulp.com/uncategorized/45-revision-v1/',0,'revision','',0),(137,1,'2019-07-23 03:49:54','2019-07-23 03:49:54','[et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" custom_padding=\"0px|||||\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" custom_margin=\"||11px|||\" next_background_color=\"#000000\" global_module=\"74\"][et_pb_row global_parent=\"74\" custom_padding=\"0px||0px|||\" custom_margin=\"|auto|-66px|auto||\" _builder_version=\"3.26.3\"][et_pb_column type=\"4_4\" global_parent=\"74\" _builder_version=\"3.26.3\"][et_pb_image global_parent=\"74\" src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/header.jpg\" url=\"http://itcamefrombeyondpulp.com\" _builder_version=\"3.26.3\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.26.3\" width=\"1080px\" inner_module_alignment=\"center\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" module_alignment=\"center\" custom_padding=\"0px||0px||false|false\" next_background_color=\"#e02b20\" global_module=\"175\" prev_background_color=\"#000000\"][et_pb_fullwidth_menu global_parent=\"175\" menu_id=\"2\" submenu_direction=\"downwards\" fullwidth_menu=\"off\" dropdown_menu_text_color=\"#ffffff\" _builder_version=\"3.26.3\" menu_font=\"|800||on|||||\" menu_text_color=\"#ffffff\" menu_font_size=\"22px\" menu_letter_spacing=\"5px\" background_color=\"#e02b20\" border_width_bottom=\"5px\" text_orientation=\"center\" background_layout=\"dark\" custom_padding=\"1px||0px||false|false\" z_index_tablet=\"500\" menu_text_shadow_horizontal_length_tablet=\"0px\" menu_text_shadow_vertical_length_tablet=\"0px\" menu_text_shadow_blur_strength_tablet=\"1px\" border_width_bottom_tablet=\"5px\" border_width_bottom_phone=\"5px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" custom_margin=\"0px||||false|false\" /][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" background_color=\"#e02b20\" width=\"1080px\" module_alignment=\"center\" custom_padding=\"10px||0px|||\" prev_background_color=\"#ffffff\"][et_pb_row _builder_version=\"3.26.3\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" background_color=\"#ffffff\" custom_padding=\"10px|10px||10px|false|false\" border_width_bottom=\"5px\" border_color_bottom=\"#e02b20\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image _builder_version=\"3.26.3\" src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/fountain.jpeg\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\" /][et_pb_text _builder_version=\"3.26.3\" z_index_tablet=\"500\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" text_text_shadow_horizontal_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_vertical_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_blur_strength=\"text_text_shadow_style,%91object Object%93\" link_text_shadow_horizontal_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_vertical_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_blur_strength=\"link_text_shadow_style,%91object Object%93\" ul_text_shadow_horizontal_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_vertical_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_blur_strength=\"ul_text_shadow_style,%91object Object%93\" ol_text_shadow_horizontal_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_vertical_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_blur_strength=\"ol_text_shadow_style,%91object Object%93\" quote_text_shadow_horizontal_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_vertical_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_blur_strength=\"quote_text_shadow_style,%91object Object%93\" header_text_shadow_horizontal_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_vertical_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_blur_strength=\"header_text_shadow_style,%91object Object%93\" header_2_text_shadow_horizontal_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_vertical_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_blur_strength=\"header_2_text_shadow_style,%91object Object%93\" header_3_text_shadow_horizontal_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_vertical_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_blur_strength=\"header_3_text_shadow_style,%91object Object%93\" header_4_text_shadow_horizontal_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_vertical_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_blur_strength=\"header_4_text_shadow_style,%91object Object%93\" header_5_text_shadow_horizontal_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_vertical_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_blur_strength=\"header_5_text_shadow_style,%91object Object%93\" header_6_text_shadow_horizontal_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_vertical_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_blur_strength=\"header_6_text_shadow_style,%91object Object%93\"]\r\n\r\n<h3 style=\"text-align: center;\"><strong><em>The Fountain</em> (Darren Aronofsky, 2006, 96 min.)</strong></h3>\r\n<p>Darren Aronofsky\'s <i>The Fountain</i> is many things, but primarily it\'s a film about love. Countless films address the same topic, or use it as a framework to tell a story, but few are as passionate and insistent in their focus. This isn\'t the superficial love of pop songs; it\'s not cynical <i>Ghost</i>-style manipulation. It\'s a naked, fearless film about Love and Forever, with strident capital letters, about a fierce, time-defying love that connects one couple through a thousand years of history. It\'s also a poignant mediation on how missed chances can echo forever. It\'s also a bold artistic statement from a director who has never let a limited budget stand in his way. It might not always make perfect sense, but it\'s the best film of the year, the most moving and romantic film to come out in a long time.</p>\r\n<p>Five hundred years ago, a conquistador named Tomas (Hugh Jackman) vows to the Spanish Queen Isabella (Rachel Weisz) that he will travel to Central America and find the Tree of Life so that they can live together forever. In the present day, a neuroscientist named Tommy Creo (Jackman) is frantically trying to find a cure for cancer to in time to save his wife Izzy (Weisz), who is dying of a brain tumor while attempting to finish a novel about the conquistador and his queen. In his desperation, Tommy turns to some bark from an \"old growth\" Central American tree, with surprising results. Five hundred years in the future, Tommy floats through space in a sphere containing a gigantic tree, traveling toward a distant nebula as the events of the past thousand years haunt him. According to the film, the Mayans believed that this nebula was their underworld; its location had helped Tomas find the Tree of Life; now Tommy is traveling there so he can be with Izzy forever. After 1000 years, Tommy has learned patience; he does Tae Bo in front of a blanket of stars, and tattoos rings on his skin to remind him of how long he\'s waited, and how he can wait a little while longer. \"Finish it,\" Izzy\'s voice echoes. \"We\'re almost there,\" he replies.</p>\r\n<p>Some of the Eastern elements of future-Tommy\'s world are poorly integrated, and this prompted an involuntary guffaw when future-Tommy and past-Tomas\'s stories connect in an unexpected way. I wish the sap from the Tree of Life didn\'t look like Elmer\'s Glue. I wish Aronofsky hadn\'t gone with the cheap, artificial tactic of suspense-building music just before the beautiful scene on the roof in the snow. There are significant problems with the past segments of the film: Weisz seemed a little lost as the Queen, forced, as she is, to shoulder a little too much iconographic burden, and the segment lacks the kind of circular resolution that the other segments have. The love between Queen Isabella and Tomas the Conquistador would more properly be called worship, which is part of love but not all. What\'s missing is tenderness, which develops during the present-day segments. Whatever problems the film might have are all but forgiven here. Their scenes together are almost unbearably tender; it\'s as if we\'re intruding on private moments between them. Aronofsky\'s camera caresses Weisz; his adoration for her is palpable and catching. If she didn\'t seem up to the earlier segments, she blossoms here. And Jackman shines as well, delivering one of the finest male performances of the year.</p>\r\n<p>If Aronofsky owes a lot to other films, most obviously Stanley Kubrick\'s <i>2001: A Space Odyssey</i>, the specific vision and scope are all his. Many of the amazing special effects were created not via CGI, which Aronofsky felt (rightly) would ruin the film\'s timelessness, but via micro-photography of chemical reactions in petrie dishes. This is simply brilliant: first, because the resulting effects have a vivid three-dimensionality that CGI effects often lack, and second, because the very method of creating the effects ties in with the themes of the film. Aronofsky\'s limited budget, cut in half after an earlier attempt starring Brad Pitt fell through, is a blessing in other ways. The exteriors are limited, forcing creative transitions between times and places.</p>\r\n<p>I feel like, unlike so many films, <i>The Fountain</i> rewards repeat viewings; there are elements here, thought out in incredible detail, that I missed the first time but I picked up on when I saw it again the next morning. I liked how even in the cold laboratory settings of the present-day segments, Tommy walks through pools of warm, golden light, tying together the torchlight of the past and the nebular light of the future. At first it seemed out of place, but made sense when I thought about it as future-Tommy working through his memories. I liked how the same triangular pattern of the star system with the nebula in the center kept popping up in the set decoration and shot framings, and also how the starburst pattern from Tomas\'s shrine to his queen kept showing up in much the same ways. But most of all, I loved how it made me want to believe in forever. There\'s not a trace of cynicism here, just incredibly honest and emotional filmmaking that\'s not afraid to slip up in its pursuit of something beautiful. It\'s cinematic poetry in an age when poetry is considered quaint.</p>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','The Fountain (2006)','','publish','closed','closed','','the-fountain-2006','','','2019-07-25 20:48:26','2019-07-25 20:48:26','',0,'http://itcamefrombeyondpulp.com/?p=137',0,'post','',0),(238,1,'2019-07-25 20:48:46','2019-07-25 20:48:46','[et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" custom_padding=\"0px|||||\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" custom_margin=\"||11px|||\" next_background_color=\"#000000\" template_type=\"section\"][et_pb_row custom_padding=\"0px||0px|||\" custom_margin=\"|auto|-66px|auto||\" _builder_version=\"3.26.3\"][et_pb_column type=\"4_4\" _builder_version=\"3.26.3\"][et_pb_image src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/header.jpg\" url=\"http://itcamefrombeyondpulp.com\" _builder_version=\"3.26.3\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" /][/et_pb_column][/et_pb_row][/et_pb_section]','header','','inherit','closed','closed','','74-revision-v1','','','2019-07-25 20:48:46','2019-07-25 20:48:46','',74,'http://itcamefrombeyondpulp.com/uncategorized/74-revision-v1/',0,'revision','',0),(139,1,'2019-07-23 03:48:55','2019-07-23 03:48:55','','fountain','','inherit','closed','closed','','fountain','','','2019-07-23 03:48:55','2019-07-23 03:48:55','',137,'http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/fountain.jpeg',0,'attachment','image/jpeg',0),(237,1,'2019-07-25 20:48:26','2019-07-25 20:48:26','[et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" custom_padding=\"0px|||||\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" custom_margin=\"||11px|||\" next_background_color=\"#000000\" global_module=\"74\"][et_pb_row global_parent=\"74\" custom_padding=\"0px||0px|||\" custom_margin=\"|auto|-66px|auto||\" _builder_version=\"3.26.3\"][et_pb_column type=\"4_4\" global_parent=\"74\" _builder_version=\"3.26.3\"][et_pb_image global_parent=\"74\" src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/header.jpg\" url=\"http://itcamefrombeyondpulp.com\" _builder_version=\"3.26.3\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.26.3\" width=\"1080px\" inner_module_alignment=\"center\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" module_alignment=\"center\" custom_padding=\"0px||0px||false|false\" next_background_color=\"#e02b20\" global_module=\"175\" prev_background_color=\"#000000\"][et_pb_fullwidth_menu global_parent=\"175\" menu_id=\"2\" submenu_direction=\"downwards\" fullwidth_menu=\"off\" dropdown_menu_text_color=\"#ffffff\" _builder_version=\"3.26.3\" menu_font=\"|800||on|||||\" menu_text_color=\"#ffffff\" menu_font_size=\"22px\" menu_letter_spacing=\"5px\" background_color=\"#e02b20\" border_width_bottom=\"5px\" text_orientation=\"center\" background_layout=\"dark\" custom_padding=\"1px||0px||false|false\" z_index_tablet=\"500\" menu_text_shadow_horizontal_length_tablet=\"0px\" menu_text_shadow_vertical_length_tablet=\"0px\" menu_text_shadow_blur_strength_tablet=\"1px\" border_width_bottom_tablet=\"5px\" border_width_bottom_phone=\"5px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" custom_margin=\"0px||||false|false\" /][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" background_color=\"#e02b20\" width=\"1080px\" module_alignment=\"center\" custom_padding=\"10px||0px|||\" prev_background_color=\"#ffffff\"][et_pb_row _builder_version=\"3.26.3\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" background_color=\"#ffffff\" custom_padding=\"10px|10px||10px|false|false\" border_width_bottom=\"5px\" border_color_bottom=\"#e02b20\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image _builder_version=\"3.26.3\" src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/fountain.jpeg\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\" /][et_pb_text _builder_version=\"3.26.3\" z_index_tablet=\"500\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" text_text_shadow_horizontal_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_vertical_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_blur_strength=\"text_text_shadow_style,%91object Object%93\" link_text_shadow_horizontal_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_vertical_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_blur_strength=\"link_text_shadow_style,%91object Object%93\" ul_text_shadow_horizontal_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_vertical_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_blur_strength=\"ul_text_shadow_style,%91object Object%93\" ol_text_shadow_horizontal_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_vertical_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_blur_strength=\"ol_text_shadow_style,%91object Object%93\" quote_text_shadow_horizontal_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_vertical_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_blur_strength=\"quote_text_shadow_style,%91object Object%93\" header_text_shadow_horizontal_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_vertical_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_blur_strength=\"header_text_shadow_style,%91object Object%93\" header_2_text_shadow_horizontal_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_vertical_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_blur_strength=\"header_2_text_shadow_style,%91object Object%93\" header_3_text_shadow_horizontal_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_vertical_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_blur_strength=\"header_3_text_shadow_style,%91object Object%93\" header_4_text_shadow_horizontal_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_vertical_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_blur_strength=\"header_4_text_shadow_style,%91object Object%93\" header_5_text_shadow_horizontal_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_vertical_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_blur_strength=\"header_5_text_shadow_style,%91object Object%93\" header_6_text_shadow_horizontal_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_vertical_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_blur_strength=\"header_6_text_shadow_style,%91object Object%93\"]\r\n\r\n<h3 style=\"text-align: center;\"><strong><em>The Fountain</em> (Darren Aronofsky, 2006, 96 min.)</strong></h3>\r\n<p>Darren Aronofsky\'s <i>The Fountain</i> is many things, but primarily it\'s a film about love. Countless films address the same topic, or use it as a framework to tell a story, but few are as passionate and insistent in their focus. This isn\'t the superficial love of pop songs; it\'s not cynical <i>Ghost</i>-style manipulation. It\'s a naked, fearless film about Love and Forever, with strident capital letters, about a fierce, time-defying love that connects one couple through a thousand years of history. It\'s also a poignant mediation on how missed chances can echo forever. It\'s also a bold artistic statement from a director who has never let a limited budget stand in his way. It might not always make perfect sense, but it\'s the best film of the year, the most moving and romantic film to come out in a long time.</p>\r\n<p>Five hundred years ago, a conquistador named Tomas (Hugh Jackman) vows to the Spanish Queen Isabella (Rachel Weisz) that he will travel to Central America and find the Tree of Life so that they can live together forever. In the present day, a neuroscientist named Tommy Creo (Jackman) is frantically trying to find a cure for cancer to in time to save his wife Izzy (Weisz), who is dying of a brain tumor while attempting to finish a novel about the conquistador and his queen. In his desperation, Tommy turns to some bark from an \"old growth\" Central American tree, with surprising results. Five hundred years in the future, Tommy floats through space in a sphere containing a gigantic tree, traveling toward a distant nebula as the events of the past thousand years haunt him. According to the film, the Mayans believed that this nebula was their underworld; its location had helped Tomas find the Tree of Life; now Tommy is traveling there so he can be with Izzy forever. After 1000 years, Tommy has learned patience; he does Tae Bo in front of a blanket of stars, and tattoos rings on his skin to remind him of how long he\'s waited, and how he can wait a little while longer. \"Finish it,\" Izzy\'s voice echoes. \"We\'re almost there,\" he replies.</p>\r\n<p>Some of the Eastern elements of future-Tommy\'s world are poorly integrated, and this prompted an involuntary guffaw when future-Tommy and past-Tomas\'s stories connect in an unexpected way. I wish the sap from the Tree of Life didn\'t look like Elmer\'s Glue. I wish Aronofsky hadn\'t gone with the cheap, artificial tactic of suspense-building music just before the beautiful scene on the roof in the snow. There are significant problems with the past segments of the film: Weisz seemed a little lost as the Queen, forced, as she is, to shoulder a little too much iconographic burden, and the segment lacks the kind of circular resolution that the other segments have. The love between Queen Isabella and Tomas the Conquistador would more properly be called worship, which is part of love but not all. What\'s missing is tenderness, which develops during the present-day segments. Whatever problems the film might have are all but forgiven here. Their scenes together are almost unbearably tender; it\'s as if we\'re intruding on private moments between them. Aronofsky\'s camera caresses Weisz; his adoration for her is palpable and catching. If she didn\'t seem up to the earlier segments, she blossoms here. And Jackman shines as well, delivering one of the finest male performances of the year.</p>\r\n<p>If Aronofsky owes a lot to other films, most obviously Stanley Kubrick\'s <i>2001: A Space Odyssey</i>, the specific vision and scope are all his. Many of the amazing special effects were created not via CGI, which Aronofsky felt (rightly) would ruin the film\'s timelessness, but via micro-photography of chemical reactions in petrie dishes. This is simply brilliant: first, because the resulting effects have a vivid three-dimensionality that CGI effects often lack, and second, because the very method of creating the effects ties in with the themes of the film. Aronofsky\'s limited budget, cut in half after an earlier attempt starring Brad Pitt fell through, is a blessing in other ways. The exteriors are limited, forcing creative transitions between times and places.</p>\r\n<p>I feel like, unlike so many films, <i>The Fountain</i> rewards repeat viewings; there are elements here, thought out in incredible detail, that I missed the first time but I picked up on when I saw it again the next morning. I liked how even in the cold laboratory settings of the present-day segments, Tommy walks through pools of warm, golden light, tying together the torchlight of the past and the nebular light of the future. At first it seemed out of place, but made sense when I thought about it as future-Tommy working through his memories. I liked how the same triangular pattern of the star system with the nebula in the center kept popping up in the set decoration and shot framings, and also how the starburst pattern from Tomas\'s shrine to his queen kept showing up in much the same ways. But most of all, I loved how it made me want to believe in forever. There\'s not a trace of cynicism here, just incredibly honest and emotional filmmaking that\'s not afraid to slip up in its pursuit of something beautiful. It\'s cinematic poetry in an age when poetry is considered quaint.</p>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','The Fountain (2006)','','inherit','closed','closed','','137-revision-v1','','','2019-07-25 20:48:26','2019-07-25 20:48:26','',137,'http://itcamefrombeyondpulp.com/uncategorized/137-revision-v1/',0,'revision','',0),(140,1,'2019-07-23 03:49:54','2019-07-23 03:49:54','[et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" custom_padding=\"0px|||||\" next_background_color=\"#e02b20\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\" global_module=\"74\"][et_pb_row global_parent=\"74\" custom_padding=\"0px||0px|||\" custom_margin=\"|auto|-66px|auto||\" _builder_version=\"3.26.3\"][et_pb_column type=\"4_4\" global_parent=\"74\" _builder_version=\"3.26.3\"][et_pb_image global_parent=\"74\" src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/itfbp-header.jpg\" _builder_version=\"3.26.3\" url=\"http://itcamefrombeyondpulp.com\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" background_color=\"#e02b20\" width=\"1080px\" module_alignment=\"center\" custom_padding=\"10px||0px|||\" prev_background_color=\"#ffffff\" border_width_bottom=\"5px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\" border_width_bottom_tablet=\"5px\" border_width_bottom_phone=\"5px\" next_background_color=\"#000000\" global_module=\"97\"][et_pb_row global_parent=\"97\" column_structure=\"1_3,1_3,1_3\" custom_padding=\"0px|0px|0px|0px\" custom_margin=\"0px|0px|0px|0px\" _builder_version=\"3.26.3\" min_height=\"0px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\" module_alignment=\"center\"][et_pb_column type=\"1_3\" global_parent=\"97\" _builder_version=\"3.26.3\"][et_pb_text global_parent=\"97\" _builder_version=\"3.26.3\" header_text_color=\"#ffffff\" z_index_tablet=\"500\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" text_text_shadow_horizontal_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_vertical_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_blur_strength=\"text_text_shadow_style,%91object Object%93\" link_text_shadow_horizontal_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_vertical_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_blur_strength=\"link_text_shadow_style,%91object Object%93\" ul_text_shadow_horizontal_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_vertical_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_blur_strength=\"ul_text_shadow_style,%91object Object%93\" ol_text_shadow_horizontal_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_vertical_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_blur_strength=\"ol_text_shadow_style,%91object Object%93\" quote_text_shadow_horizontal_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_vertical_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_blur_strength=\"quote_text_shadow_style,%91object Object%93\" header_text_shadow_horizontal_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_vertical_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_blur_strength=\"header_text_shadow_style,%91object Object%93\" header_2_text_shadow_horizontal_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_vertical_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_blur_strength=\"header_2_text_shadow_style,%91object Object%93\" header_3_text_shadow_horizontal_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_vertical_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_blur_strength=\"header_3_text_shadow_style,%91object Object%93\" header_4_text_shadow_horizontal_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_vertical_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_blur_strength=\"header_4_text_shadow_style,%91object Object%93\" header_5_text_shadow_horizontal_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_vertical_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_blur_strength=\"header_5_text_shadow_style,%91object Object%93\" header_6_text_shadow_horizontal_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_vertical_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_blur_strength=\"header_6_text_shadow_style,%91object Object%93\"]\r\n\r\n<h1 style=\"text-align: center;\"><a href=\"http://itcamefrombeyondpulp.com/movies/\"><strong>MOVIES &amp; TV</strong></a></h1>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" global_parent=\"97\" _builder_version=\"3.26.3\"][et_pb_text global_parent=\"97\" _builder_version=\"3.26.3\" header_text_color=\"#ffffff\" z_index_tablet=\"500\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" text_text_shadow_horizontal_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_vertical_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_blur_strength=\"text_text_shadow_style,%91object Object%93\" link_text_shadow_horizontal_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_vertical_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_blur_strength=\"link_text_shadow_style,%91object Object%93\" ul_text_shadow_horizontal_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_vertical_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_blur_strength=\"ul_text_shadow_style,%91object Object%93\" ol_text_shadow_horizontal_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_vertical_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_blur_strength=\"ol_text_shadow_style,%91object Object%93\" quote_text_shadow_horizontal_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_vertical_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_blur_strength=\"quote_text_shadow_style,%91object Object%93\" header_text_shadow_horizontal_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_vertical_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_blur_strength=\"header_text_shadow_style,%91object Object%93\" header_2_text_shadow_horizontal_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_vertical_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_blur_strength=\"header_2_text_shadow_style,%91object Object%93\" header_3_text_shadow_horizontal_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_vertical_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_blur_strength=\"header_3_text_shadow_style,%91object Object%93\" header_4_text_shadow_horizontal_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_vertical_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_blur_strength=\"header_4_text_shadow_style,%91object Object%93\" header_5_text_shadow_horizontal_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_vertical_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_blur_strength=\"header_5_text_shadow_style,%91object Object%93\" header_6_text_shadow_horizontal_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_vertical_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_blur_strength=\"header_6_text_shadow_style,%91object Object%93\"]\r\n\r\n<h1 style=\"text-align: center;\"><a href=\"http://itcamefrombeyondpulp.com/books/\"><strong>BOOKS</strong></a></h1>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" global_parent=\"97\" _builder_version=\"3.26.3\"][et_pb_text global_parent=\"97\" _builder_version=\"3.26.3\" header_text_color=\"#ffffff\" z_index_tablet=\"500\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" text_text_shadow_horizontal_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_vertical_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_blur_strength=\"text_text_shadow_style,%91object Object%93\" link_text_shadow_horizontal_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_vertical_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_blur_strength=\"link_text_shadow_style,%91object Object%93\" ul_text_shadow_horizontal_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_vertical_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_blur_strength=\"ul_text_shadow_style,%91object Object%93\" ol_text_shadow_horizontal_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_vertical_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_blur_strength=\"ol_text_shadow_style,%91object Object%93\" quote_text_shadow_horizontal_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_vertical_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_blur_strength=\"quote_text_shadow_style,%91object Object%93\" header_text_shadow_horizontal_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_vertical_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_blur_strength=\"header_text_shadow_style,%91object Object%93\" header_2_text_shadow_horizontal_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_vertical_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_blur_strength=\"header_2_text_shadow_style,%91object Object%93\" header_3_text_shadow_horizontal_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_vertical_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_blur_strength=\"header_3_text_shadow_style,%91object Object%93\" header_4_text_shadow_horizontal_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_vertical_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_blur_strength=\"header_4_text_shadow_style,%91object Object%93\" header_5_text_shadow_horizontal_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_vertical_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_blur_strength=\"header_5_text_shadow_style,%91object Object%93\" header_6_text_shadow_horizontal_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_vertical_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_blur_strength=\"header_6_text_shadow_style,%91object Object%93\"]\r\n\r\n<h1 style=\"text-align: center;\"><a href=\"http://itcamefrombeyondpulp.com/sales/\"><strong>SALES</strong></a></h1>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" background_color=\"#e02b20\" width=\"1080px\" module_alignment=\"center\" custom_padding=\"10px||0px|||\" prev_background_color=\"#000000\"][et_pb_row _builder_version=\"3.26.3\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" background_color=\"#ffffff\" custom_padding=\"10px|10px||10px|false|false\" border_width_bottom=\"5px\" border_color_bottom=\"#e02b20\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image _builder_version=\"3.26.3\" src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/fountain.jpeg\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\" /][et_pb_text _builder_version=\"3.26.3\" z_index_tablet=\"500\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" text_text_shadow_horizontal_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_vertical_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_blur_strength=\"text_text_shadow_style,%91object Object%93\" link_text_shadow_horizontal_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_vertical_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_blur_strength=\"link_text_shadow_style,%91object Object%93\" ul_text_shadow_horizontal_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_vertical_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_blur_strength=\"ul_text_shadow_style,%91object Object%93\" ol_text_shadow_horizontal_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_vertical_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_blur_strength=\"ol_text_shadow_style,%91object Object%93\" quote_text_shadow_horizontal_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_vertical_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_blur_strength=\"quote_text_shadow_style,%91object Object%93\" header_text_shadow_horizontal_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_vertical_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_blur_strength=\"header_text_shadow_style,%91object Object%93\" header_2_text_shadow_horizontal_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_vertical_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_blur_strength=\"header_2_text_shadow_style,%91object Object%93\" header_3_text_shadow_horizontal_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_vertical_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_blur_strength=\"header_3_text_shadow_style,%91object Object%93\" header_4_text_shadow_horizontal_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_vertical_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_blur_strength=\"header_4_text_shadow_style,%91object Object%93\" header_5_text_shadow_horizontal_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_vertical_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_blur_strength=\"header_5_text_shadow_style,%91object Object%93\" header_6_text_shadow_horizontal_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_vertical_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_blur_strength=\"header_6_text_shadow_style,%91object Object%93\"]\r\n\r\n<h3 style=\"text-align: center;\"><strong><em>The Fountain</em> (Darren Aronofsky, 2006, 96 min.)</strong></h3><p>Darren Aronofsky\'s <i>The Fountain</i> is many things, but primarily it\'s a film about love. Countless films address the same topic, or use it as a framework to tell a story, but few are as passionate and insistent in their focus. This isn\'t the superficial love of pop songs; it\'s not cynical <i>Ghost</i>-style manipulation. It\'s a naked, fearless film about Love and Forever, with strident capital letters, about a fierce, time-defying love that connects one couple through a thousand years of history. It\'s also a poignant mediation on how missed chances can echo forever. It\'s also a bold artistic statement from a director who has never let a limited budget stand in his way. It might not always make perfect sense, but it\'s the best film of the year, the most moving and romantic film to come out in a long time.<br /><br />Five hundred years ago, a conquistador named Tomas (Hugh Jackman) vows to the Spanish Queen Isabella (Rachel Weisz) that he will travel to Central America and find the Tree of Life so that they can live together forever. In the present day, a neuroscientist named Tommy Creo (Jackman) is frantically trying to find a cure for cancer to in time to save his wife Izzy (Weisz), who is dying of a brain tumor while attempting to finish a novel about the conquistador and his queen. In his desperation, Tommy turns to some bark from an \"old growth\" Central American tree, with surprising results. Five hundred years in the future, Tommy floats through space in a sphere containing a gigantic tree, traveling toward a distant nebula as the events of the past thousand years haunt him. According to the film, the Mayans believed that this nebula was their underworld; its location had helped Tomas find the Tree of Life; now Tommy is traveling there so he can be with Izzy forever. After 1000 years, Tommy has learned patience; he does Tae Bo in front of a blanket of stars, and tattoos rings on his skin to remind him of how long he\'s waited, and how he can wait a little while longer. \"Finish it,\" Izzy\'s voice echoes. \"We\'re almost there,\" he replies.<br /><br />Some of the Eastern elements of future-Tommy\'s world are poorly integrated, and this prompted an involuntary guffaw when future-Tommy and past-Tomas\'s stories connect in an unexpected way. I wish the sap from the Tree of Life didn\'t look like Elmer\'s Glue. I wish Aronofsky hadn\'t gone with the cheap, artificial tactic of suspense-building music just before the beautiful scene on the roof in the snow. There are significant problems with the past segments of the film: Weisz seemed a little lost as the Queen, forced, as she is, to shoulder a little too much iconographic burden, and the segment lacks the kind of circular resolution that the other segments have. The love between Queen Isabella and Tomas the Conquistador would more properly be called worship, which is part of love but not all. What\'s missing is tenderness, which develops during the present-day segments. Whatever problems the film might have are all but forgiven here. Their scenes together are almost unbearably tender; it\'s as if we\'re intruding on private moments between them. Aronofsky\'s camera caresses Weisz; his adoration for her is palpable and catching. If she didn\'t seem up to the earlier segments, she blossoms here. And Jackman shines as well, delivering one of the finest male performances of the year.<br /><br />If Aronofsky owes a lot to other films, most obviously Stanley Kubrick\'s <i>2001: A Space Odyssey</i>, the specific vision and scope are all his. Many of the amazing special effects were created not via CGI, which Aronofsky felt (rightly) would ruin the film\'s timelessness, but via micro-photography of chemical reactions in petrie dishes. This is simply brilliant: first, because the resulting effects have a vivid three-dimensionality that CGI effects often lack, and second, because the very method of creating the effects ties in with the themes of the film. Aronofsky\'s limited budget, cut in half after an earlier attempt starring Brad Pitt fell through, is a blessing in other ways. The exteriors are limited, forcing creative transitions between times and places.<br /><br />I feel like, unlike so many films, <i>The Fountain</i> rewards repeat viewings; there are elements here, thought out in incredible detail, that I missed the first time but I picked up on when I saw it again the next morning. I liked how even in the cold laboratory settings of the present-day segments, Tommy walks through pools of warm, golden light, tying together the torchlight of the past and the nebular light of the future. At first it seemed out of place, but made sense when I thought about it as future-Tommy working through his memories. I liked how the same triangular pattern of the star system with the nebula in the center kept popping up in the set decoration and shot framings, and also how the starburst pattern from Tomas\'s shrine to his queen kept showing up in much the same ways. But most of all, I loved how it made me want to believe in forever. There\'s not a trace of cynicism here, just incredibly honest and emotional filmmaking that\'s not afraid to slip up in its pursuit of something beautiful. It\'s cinematic poetry in an age when poetry is considered quaint.</p>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','The Fountain (2006)','','inherit','closed','closed','','137-revision-v1','','','2019-07-23 03:49:54','2019-07-23 03:49:54','',137,'http://itcamefrombeyondpulp.com/uncategorized/137-revision-v1/',0,'revision','',0),(142,1,'2019-07-23 03:51:39','2019-07-23 03:51:39','[et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" custom_padding=\"0px|||||\" next_background_color=\"#e02b20\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\" global_module=\"74\"][et_pb_row global_parent=\"74\" custom_padding=\"0px||0px|||\" custom_margin=\"|auto|-66px|auto||\" _builder_version=\"3.26.3\"][et_pb_column type=\"4_4\" global_parent=\"74\" _builder_version=\"3.26.3\"][et_pb_image global_parent=\"74\" src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/itfbp-header.jpg\" _builder_version=\"3.26.3\" url=\"http://itcamefrombeyondpulp.com\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" background_color=\"#e02b20\" width=\"1080px\" module_alignment=\"center\" custom_padding=\"10px||0px|||\" prev_background_color=\"#ffffff\" border_width_bottom=\"5px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\" border_width_bottom_tablet=\"5px\" border_width_bottom_phone=\"5px\" next_background_color=\"#000000\" global_module=\"97\"][et_pb_row global_parent=\"97\" column_structure=\"1_3,1_3,1_3\" custom_padding=\"0px|0px|0px|0px\" custom_margin=\"0px|0px|0px|0px\" _builder_version=\"3.26.3\" min_height=\"0px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\" module_alignment=\"center\"][et_pb_column type=\"1_3\" global_parent=\"97\" _builder_version=\"3.26.3\"][et_pb_text global_parent=\"97\" _builder_version=\"3.26.3\" header_text_color=\"#ffffff\" z_index_tablet=\"500\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" text_text_shadow_horizontal_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_vertical_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_blur_strength=\"text_text_shadow_style,%91object Object%93\" link_text_shadow_horizontal_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_vertical_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_blur_strength=\"link_text_shadow_style,%91object Object%93\" ul_text_shadow_horizontal_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_vertical_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_blur_strength=\"ul_text_shadow_style,%91object Object%93\" ol_text_shadow_horizontal_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_vertical_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_blur_strength=\"ol_text_shadow_style,%91object Object%93\" quote_text_shadow_horizontal_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_vertical_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_blur_strength=\"quote_text_shadow_style,%91object Object%93\" header_text_shadow_horizontal_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_vertical_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_blur_strength=\"header_text_shadow_style,%91object Object%93\" header_2_text_shadow_horizontal_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_vertical_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_blur_strength=\"header_2_text_shadow_style,%91object Object%93\" header_3_text_shadow_horizontal_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_vertical_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_blur_strength=\"header_3_text_shadow_style,%91object Object%93\" header_4_text_shadow_horizontal_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_vertical_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_blur_strength=\"header_4_text_shadow_style,%91object Object%93\" header_5_text_shadow_horizontal_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_vertical_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_blur_strength=\"header_5_text_shadow_style,%91object Object%93\" header_6_text_shadow_horizontal_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_vertical_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_blur_strength=\"header_6_text_shadow_style,%91object Object%93\"]\r\n\r\n</p>\r\n<h1 style=\"text-align: center;\"><a href=\"http://itcamefrombeyondpulp.com/movies/\"><strong>MOVIES &amp; TV</strong></a></h1>\r\n<p>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" global_parent=\"97\" _builder_version=\"3.26.3\"][et_pb_text global_parent=\"97\" _builder_version=\"3.26.3\" header_text_color=\"#ffffff\" z_index_tablet=\"500\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" text_text_shadow_horizontal_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_vertical_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_blur_strength=\"text_text_shadow_style,%91object Object%93\" link_text_shadow_horizontal_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_vertical_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_blur_strength=\"link_text_shadow_style,%91object Object%93\" ul_text_shadow_horizontal_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_vertical_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_blur_strength=\"ul_text_shadow_style,%91object Object%93\" ol_text_shadow_horizontal_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_vertical_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_blur_strength=\"ol_text_shadow_style,%91object Object%93\" quote_text_shadow_horizontal_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_vertical_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_blur_strength=\"quote_text_shadow_style,%91object Object%93\" header_text_shadow_horizontal_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_vertical_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_blur_strength=\"header_text_shadow_style,%91object Object%93\" header_2_text_shadow_horizontal_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_vertical_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_blur_strength=\"header_2_text_shadow_style,%91object Object%93\" header_3_text_shadow_horizontal_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_vertical_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_blur_strength=\"header_3_text_shadow_style,%91object Object%93\" header_4_text_shadow_horizontal_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_vertical_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_blur_strength=\"header_4_text_shadow_style,%91object Object%93\" header_5_text_shadow_horizontal_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_vertical_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_blur_strength=\"header_5_text_shadow_style,%91object Object%93\" header_6_text_shadow_horizontal_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_vertical_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_blur_strength=\"header_6_text_shadow_style,%91object Object%93\"]\r\n\r\n</p>\r\n<h1 style=\"text-align: center;\"><a href=\"http://itcamefrombeyondpulp.com/books/\"><strong>BOOKS</strong></a></h1>\r\n<p>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" global_parent=\"97\" _builder_version=\"3.26.3\"][et_pb_text global_parent=\"97\" _builder_version=\"3.26.3\" header_text_color=\"#ffffff\" z_index_tablet=\"500\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" text_text_shadow_horizontal_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_vertical_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_blur_strength=\"text_text_shadow_style,%91object Object%93\" link_text_shadow_horizontal_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_vertical_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_blur_strength=\"link_text_shadow_style,%91object Object%93\" ul_text_shadow_horizontal_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_vertical_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_blur_strength=\"ul_text_shadow_style,%91object Object%93\" ol_text_shadow_horizontal_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_vertical_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_blur_strength=\"ol_text_shadow_style,%91object Object%93\" quote_text_shadow_horizontal_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_vertical_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_blur_strength=\"quote_text_shadow_style,%91object Object%93\" header_text_shadow_horizontal_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_vertical_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_blur_strength=\"header_text_shadow_style,%91object Object%93\" header_2_text_shadow_horizontal_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_vertical_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_blur_strength=\"header_2_text_shadow_style,%91object Object%93\" header_3_text_shadow_horizontal_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_vertical_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_blur_strength=\"header_3_text_shadow_style,%91object Object%93\" header_4_text_shadow_horizontal_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_vertical_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_blur_strength=\"header_4_text_shadow_style,%91object Object%93\" header_5_text_shadow_horizontal_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_vertical_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_blur_strength=\"header_5_text_shadow_style,%91object Object%93\" header_6_text_shadow_horizontal_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_vertical_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_blur_strength=\"header_6_text_shadow_style,%91object Object%93\"]\r\n\r\n</p>\r\n<h1 style=\"text-align: center;\"><a href=\"http://itcamefrombeyondpulp.com/sales/\"><strong>SALES</strong></a></h1>\r\n<p>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" background_color=\"#e02b20\" width=\"1080px\" module_alignment=\"center\" custom_padding=\"10px||0px|||\" prev_background_color=\"#000000\"][et_pb_row custom_padding=\"10px|10px||\" _builder_version=\"3.26.3\" background_color=\"#ffffff\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.26.3\" text_text_shadow_horizontal_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\"]\r\n\r\n<h1 style=\"text-align: center;\">Movies &amp; TV Reviews</h1><p style=\"text-align: center;\"><strong><a href=\"http://itcamefrombeyondpulp.com/movies/children-of-men-2006/\">Children of Men (2006)</a><br /></strong><strong><a href=\"http://itcamefrombeyondpulp.com/movies/cloverfield-2008/\">Cloverfield (2008)</a><br /><a href=\"http://itcamefrombeyondpulp.com/movies/the-dark-knight-2008/\">The Dark Knight (2008)</a><br /><a href=\"http://itcamefrombeyondpulp.com/movies/the-fountain-2006/\">The Fountain (2006)</a><br /></strong><a href=\"http://itcamefrombeyondpulp.com/movies/serenity-2005/\"><strong>Serenity (2005)</strong></a></p>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Movies','','inherit','closed','closed','','45-revision-v1','','','2019-07-23 03:51:39','2019-07-23 03:51:39','',45,'http://itcamefrombeyondpulp.com/uncategorized/45-revision-v1/',0,'revision','',0),(143,1,'2019-07-23 03:53:16','2019-07-23 03:53:16','[et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" custom_padding=\"0px|||||\" next_background_color=\"#e02b20\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\" global_module=\"74\"][et_pb_row global_parent=\"74\" custom_padding=\"0px||0px|||\" custom_margin=\"|auto|-66px|auto||\" _builder_version=\"3.26.3\"][et_pb_column type=\"4_4\" global_parent=\"74\" _builder_version=\"3.26.3\"][et_pb_image global_parent=\"74\" src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/itfbp-header.jpg\" _builder_version=\"3.26.3\" url=\"http://itcamefrombeyondpulp.com\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" background_color=\"#e02b20\" width=\"1080px\" module_alignment=\"center\" custom_padding=\"10px||0px|||\" prev_background_color=\"#ffffff\" border_width_bottom=\"5px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\" border_width_bottom_tablet=\"5px\" border_width_bottom_phone=\"5px\" next_background_color=\"#000000\" global_module=\"97\"][et_pb_row global_parent=\"97\" column_structure=\"1_3,1_3,1_3\" custom_padding=\"0px|0px|0px|0px\" custom_margin=\"0px|0px|0px|0px\" _builder_version=\"3.26.3\" min_height=\"0px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\" module_alignment=\"center\"][et_pb_column type=\"1_3\" global_parent=\"97\" _builder_version=\"3.26.3\"][et_pb_text global_parent=\"97\" _builder_version=\"3.26.3\" header_text_color=\"#ffffff\" z_index_tablet=\"500\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" text_text_shadow_horizontal_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_vertical_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_blur_strength=\"text_text_shadow_style,%91object Object%93\" link_text_shadow_horizontal_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_vertical_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_blur_strength=\"link_text_shadow_style,%91object Object%93\" ul_text_shadow_horizontal_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_vertical_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_blur_strength=\"ul_text_shadow_style,%91object Object%93\" ol_text_shadow_horizontal_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_vertical_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_blur_strength=\"ol_text_shadow_style,%91object Object%93\" quote_text_shadow_horizontal_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_vertical_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_blur_strength=\"quote_text_shadow_style,%91object Object%93\" header_text_shadow_horizontal_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_vertical_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_blur_strength=\"header_text_shadow_style,%91object Object%93\" header_2_text_shadow_horizontal_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_vertical_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_blur_strength=\"header_2_text_shadow_style,%91object Object%93\" header_3_text_shadow_horizontal_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_vertical_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_blur_strength=\"header_3_text_shadow_style,%91object Object%93\" header_4_text_shadow_horizontal_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_vertical_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_blur_strength=\"header_4_text_shadow_style,%91object Object%93\" header_5_text_shadow_horizontal_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_vertical_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_blur_strength=\"header_5_text_shadow_style,%91object Object%93\" header_6_text_shadow_horizontal_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_vertical_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_blur_strength=\"header_6_text_shadow_style,%91object Object%93\"]\r\n\r\n</p>\r\n<h1 style=\"text-align: center;\"><a href=\"http://itcamefrombeyondpulp.com/movies/\"><strong>MOVIES &amp; TV</strong></a></h1>\r\n<p>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" global_parent=\"97\" _builder_version=\"3.26.3\"][et_pb_text global_parent=\"97\" _builder_version=\"3.26.3\" header_text_color=\"#ffffff\" z_index_tablet=\"500\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" text_text_shadow_horizontal_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_vertical_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_blur_strength=\"text_text_shadow_style,%91object Object%93\" link_text_shadow_horizontal_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_vertical_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_blur_strength=\"link_text_shadow_style,%91object Object%93\" ul_text_shadow_horizontal_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_vertical_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_blur_strength=\"ul_text_shadow_style,%91object Object%93\" ol_text_shadow_horizontal_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_vertical_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_blur_strength=\"ol_text_shadow_style,%91object Object%93\" quote_text_shadow_horizontal_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_vertical_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_blur_strength=\"quote_text_shadow_style,%91object Object%93\" header_text_shadow_horizontal_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_vertical_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_blur_strength=\"header_text_shadow_style,%91object Object%93\" header_2_text_shadow_horizontal_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_vertical_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_blur_strength=\"header_2_text_shadow_style,%91object Object%93\" header_3_text_shadow_horizontal_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_vertical_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_blur_strength=\"header_3_text_shadow_style,%91object Object%93\" header_4_text_shadow_horizontal_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_vertical_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_blur_strength=\"header_4_text_shadow_style,%91object Object%93\" header_5_text_shadow_horizontal_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_vertical_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_blur_strength=\"header_5_text_shadow_style,%91object Object%93\" header_6_text_shadow_horizontal_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_vertical_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_blur_strength=\"header_6_text_shadow_style,%91object Object%93\"]\r\n\r\n</p>\r\n<h1 style=\"text-align: center;\"><a href=\"http://itcamefrombeyondpulp.com/books/\"><strong>BOOKS</strong></a></h1>\r\n<p>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" global_parent=\"97\" _builder_version=\"3.26.3\"][et_pb_text global_parent=\"97\" _builder_version=\"3.26.3\" header_text_color=\"#ffffff\" z_index_tablet=\"500\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" text_text_shadow_horizontal_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_vertical_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_blur_strength=\"text_text_shadow_style,%91object Object%93\" link_text_shadow_horizontal_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_vertical_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_blur_strength=\"link_text_shadow_style,%91object Object%93\" ul_text_shadow_horizontal_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_vertical_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_blur_strength=\"ul_text_shadow_style,%91object Object%93\" ol_text_shadow_horizontal_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_vertical_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_blur_strength=\"ol_text_shadow_style,%91object Object%93\" quote_text_shadow_horizontal_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_vertical_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_blur_strength=\"quote_text_shadow_style,%91object Object%93\" header_text_shadow_horizontal_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_vertical_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_blur_strength=\"header_text_shadow_style,%91object Object%93\" header_2_text_shadow_horizontal_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_vertical_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_blur_strength=\"header_2_text_shadow_style,%91object Object%93\" header_3_text_shadow_horizontal_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_vertical_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_blur_strength=\"header_3_text_shadow_style,%91object Object%93\" header_4_text_shadow_horizontal_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_vertical_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_blur_strength=\"header_4_text_shadow_style,%91object Object%93\" header_5_text_shadow_horizontal_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_vertical_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_blur_strength=\"header_5_text_shadow_style,%91object Object%93\" header_6_text_shadow_horizontal_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_vertical_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_blur_strength=\"header_6_text_shadow_style,%91object Object%93\"]\r\n\r\n</p>\r\n<h1 style=\"text-align: center;\"><a href=\"http://itcamefrombeyondpulp.com/sales/\"><strong>SALES</strong></a></h1>\r\n<p>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" background_color=\"#e02b20\" width=\"1080px\" module_alignment=\"center\" custom_padding=\"10px||0px|||\" prev_background_color=\"#000000\"][et_pb_row custom_padding=\"10px|10px||\" _builder_version=\"3.26.3\" background_color=\"#ffffff\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" border_width_bottom=\"5px\" border_color_bottom=\"#e02b20\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.26.3\" text_text_shadow_horizontal_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\"]\r\n\r\n<h1 style=\"text-align: center;\">Movies &amp; TV Reviews</h1>\r\n<p style=\"text-align: center;\"><strong><a href=\"http://itcamefrombeyondpulp.com/movies/children-of-men-2006/\">Children of Men (2006)</a><br /></strong><strong><a href=\"http://itcamefrombeyondpulp.com/movies/cloverfield-2008/\">Cloverfield (2008)</a><br /><a href=\"http://itcamefrombeyondpulp.com/movies/the-dark-knight-2008/\">The Dark Knight (2008)</a><br /><a href=\"http://itcamefrombeyondpulp.com/movies/the-fountain-2006/\">The Fountain (2006)</a><br /></strong><a href=\"http://itcamefrombeyondpulp.com/movies/serenity-2005/\"><strong>Serenity (2005)</strong></a></p>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Movies','','inherit','closed','closed','','45-revision-v1','','','2019-07-23 03:53:16','2019-07-23 03:53:16','',45,'http://itcamefrombeyondpulp.com/uncategorized/45-revision-v1/',0,'revision','',0),(144,1,'2019-07-23 03:58:51','2019-07-23 03:58:51','[et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" custom_padding=\"0px|||||\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" custom_margin=\"||11px|||\" next_background_color=\"#000000\" global_module=\"74\"][et_pb_row global_parent=\"74\" custom_padding=\"0px||0px|||\" custom_margin=\"|auto|-66px|auto||\" _builder_version=\"3.26.3\"][et_pb_column type=\"4_4\" global_parent=\"74\" _builder_version=\"3.26.3\"][et_pb_image global_parent=\"74\" src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/header.jpg\" url=\"http://itcamefrombeyondpulp.com\" _builder_version=\"3.26.3\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.26.3\" width=\"1080px\" inner_module_alignment=\"center\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" module_alignment=\"center\" custom_padding=\"0px||0px||false|false\" next_background_color=\"#e02b20\" global_module=\"175\" prev_background_color=\"#000000\"][et_pb_fullwidth_menu global_parent=\"175\" menu_id=\"2\" submenu_direction=\"downwards\" fullwidth_menu=\"off\" dropdown_menu_text_color=\"#ffffff\" _builder_version=\"3.26.3\" menu_font=\"|800||on|||||\" menu_text_color=\"#ffffff\" menu_font_size=\"22px\" menu_letter_spacing=\"5px\" background_color=\"#e02b20\" border_width_bottom=\"5px\" text_orientation=\"center\" background_layout=\"dark\" custom_padding=\"1px||0px||false|false\" z_index_tablet=\"500\" menu_text_shadow_horizontal_length_tablet=\"0px\" menu_text_shadow_vertical_length_tablet=\"0px\" menu_text_shadow_blur_strength_tablet=\"1px\" border_width_bottom_tablet=\"5px\" border_width_bottom_phone=\"5px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" custom_margin=\"0px||||false|false\" /][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" background_color=\"#e02b20\" width=\"1080px\" module_alignment=\"center\" custom_padding=\"10px||0px|||\" prev_background_color=\"#ffffff\"][et_pb_row _builder_version=\"3.26.3\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" background_color=\"#ffffff\" custom_padding=\"10px|10px||10px|false|false\" border_width_bottom=\"5px\" border_color_bottom=\"#e02b20\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image _builder_version=\"3.26.3\" src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/hardware.jpeg\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\" /][et_pb_text _builder_version=\"3.26.3\" z_index_tablet=\"500\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" text_text_shadow_horizontal_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_vertical_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_blur_strength=\"text_text_shadow_style,%91object Object%93\" link_text_shadow_horizontal_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_vertical_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_blur_strength=\"link_text_shadow_style,%91object Object%93\" ul_text_shadow_horizontal_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_vertical_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_blur_strength=\"ul_text_shadow_style,%91object Object%93\" ol_text_shadow_horizontal_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_vertical_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_blur_strength=\"ol_text_shadow_style,%91object Object%93\" quote_text_shadow_horizontal_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_vertical_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_blur_strength=\"quote_text_shadow_style,%91object Object%93\" header_text_shadow_horizontal_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_vertical_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_blur_strength=\"header_text_shadow_style,%91object Object%93\" header_2_text_shadow_horizontal_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_vertical_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_blur_strength=\"header_2_text_shadow_style,%91object Object%93\" header_3_text_shadow_horizontal_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_vertical_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_blur_strength=\"header_3_text_shadow_style,%91object Object%93\" header_4_text_shadow_horizontal_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_vertical_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_blur_strength=\"header_4_text_shadow_style,%91object Object%93\" header_5_text_shadow_horizontal_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_vertical_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_blur_strength=\"header_5_text_shadow_style,%91object Object%93\" header_6_text_shadow_horizontal_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_vertical_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_blur_strength=\"header_6_text_shadow_style,%91object Object%93\"]\r\n\r\n<h3 style=\"text-align: center;\"><strong><em>Hardware</em> (Richard Stanley, 1990, 85 min.)</strong></h3>\r\n<p>Richard Stanley\'s little-seen debut film presents a society bent on self-destruction via any means possible. In the middle of a typical-looking post-apocalyptic world filled with tossed-off dialog about radiation levels and mutations, there\'s something darker at work, a wholesale assault on the human race, designed by men and apparently directed at female reproduction. The film has been dismissed by most people who have bothered to see it as a ripoff of The Terminator, but the similarities are few. It\'s a thematic and tonal mess, careening between operatic pathos and slapstick comedy and then back, sometimes in the same scene, but there\'s a lot going on here that makes it worth seeing.</p>\r\n<p>A \"zone tripper\" (Carl McCoy) scouring the desert for scrap metal recovers a robotic head and hand, which he takes to a scrap dealer to sell. But Moses (Dylan McDermott) buys the head off him first; he wants to give it to his girlfriend Jill (Stacey Travis). Jill, who lives sealed in her apartment and greets Moses with a geiger counter, is an artist who creates disturbing sculptures that uneasily blend the metallic with the organic, like something Georgia O\'Keefe might have made had she known how to weld. She\'s taken refuge against the irradiated world outside while molding its metallic relics into her art. She\'s ecstatic about the head; she paints an American flag on it and uses it to top off a twisted mass of arachnoid metal (the identification of this robot with America doesn\'t end there; we later learn that it can administer a poison that smells like apple pie). Although Jill stays in her apartment, she\'s not safe even there; a rank and flabby neighbor named Lincoln Wineburg (William Hootkins) spies on her through her window and makes obscene phone calls. It turns out later that he even has the keycodes to get past her security system.</p>\r\n<p>It turns out that the head belongs to an artificially intelligent robot assassin that can rebuild itself through force of will and is bent on the destruction of anything living. Moses learns of the head\'s origins too late, and soon Jill is trapped in her apartment with the powerful, murderous Swiss army knife known as MARK 13 (and of course a guy named Moses knows to check the bible verse). At first the robot is kind of comical: the scene where it rebuilds itself is like a mechanized Ray Harryhausen effect, and even its first attack on Jill concludes with it covered in a sheet and thrashing around like E.T. But quickly it becomes apparent that the robot wants to not only kill her but violate her in the process. The first time we realize that it\'s sentient is when it wakes up to watch Moses and Jill having sex. In a great transition, the robot\'s voyeurism (and ours, too, since we\'re watching the film) becomes that of Lincoln Wineburg, who is pleasuring himself while watching through an infrared video camera. Later, when the robot has rebuilt itself, it\'s no accident that its attacks on Jill seem uncomfortably like attempted rapes. Its favorite weapon, aside from its buzz-saw (it has co-opted all of her tools in its self-rebuilding project), is a very phallic drill, with which it menaces her.</p>\r\n<p>The robot turns out to be the logical extension of the government\'s self-destructiveness. Nuclear war was just the start: the latest news is of the passage of a population control bill that will enforce sterilization for mothers with too many children; a newscaster quotes a politician that the plan provides \"a clean break with procreation.\" In a delicious offhand comment, we learn that the robot was built by Ferile Electronics, a name that calls to mind both \"feral\" and \"fertile,\" the former a good indicator of where humanity is heading and the latter a bitter irony. Disgusted with the government that could build such a creature—which, although designed as a combat unit, can\'t distinguish between friend and foe—Jill says that it\'s \"the most useful thing they\'ve ever given us,\" because it will complete the job they started with a nuclear war: \"That\'s their population control.\"</p>\r\n<p>The film is most coherent when it\'s dealing with the idea of government repression as sexual violence, which makes it kind of funny that it\'s so unclear what\'s going on with the male characters. I\'m not sure what to do with Moses, for example: his odd name must signify something, but I\'m not sure what it is, although the film contains several biblical references and the robot\'s death scene looks like it\'s praying. There\'s a moment when Moses almost seems to make an extrasensory connection with Jill, which makes me wonder if there\'s supposed to be something holy about him, but this is never developed. And then there\'s Shades (John Lynch), Moses\'s sidekick. There seems to be a hint, quickly dropped, that he and Jill have been seeing each other while Moses was in the Zone, but mostly his job consists of being present and ineffectual when Jill is in danger.</p>\r\n<p>Don\'t get me wrong: it\'s not all Deep Thoughts, and there\'s a lot here to please genre fans. The blood-red cinematography (by Steven Chivers) gives every scene the look of a fallout shelter, and Stanley is nothing if not a master of efficient filmmaking. Its brief 84 minutes flew by, punctuated by several scenes of garish horror that will satisfy any horror film fan. But the most notable thing about the film is what\'s going on just under the surface.</p>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Hardware (1990)','','publish','closed','closed','','hardware-1990','','','2019-07-24 23:21:06','2019-07-24 23:21:06','',0,'http://itcamefrombeyondpulp.com/?p=144',0,'post','',0),(234,1,'2019-07-24 23:21:21','2019-07-24 23:21:21','[et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" custom_padding=\"0px|||||\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" custom_margin=\"||11px|||\" next_background_color=\"#000000\" template_type=\"section\"][et_pb_row custom_padding=\"0px||0px|||\" custom_margin=\"|auto|-66px|auto||\" _builder_version=\"3.26.3\"][et_pb_column type=\"4_4\" _builder_version=\"3.26.3\"][et_pb_image src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/header.jpg\" url=\"http://itcamefrombeyondpulp.com\" _builder_version=\"3.26.3\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" /][/et_pb_column][/et_pb_row][/et_pb_section]','header','','inherit','closed','closed','','74-revision-v1','','','2019-07-24 23:21:21','2019-07-24 23:21:21','',74,'http://itcamefrombeyondpulp.com/uncategorized/74-revision-v1/',0,'revision','',0),(146,1,'2019-07-23 03:58:25','2019-07-23 03:58:25','','hardware','','inherit','closed','closed','','hardware','','','2019-07-23 03:58:25','2019-07-23 03:58:25','',144,'http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/hardware.jpeg',0,'attachment','image/jpeg',0),(233,1,'2019-07-24 23:21:06','2019-07-24 23:21:06','[et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" custom_padding=\"0px|||||\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" custom_margin=\"||11px|||\" next_background_color=\"#000000\" global_module=\"74\"][et_pb_row global_parent=\"74\" custom_padding=\"0px||0px|||\" custom_margin=\"|auto|-66px|auto||\" _builder_version=\"3.26.3\"][et_pb_column type=\"4_4\" global_parent=\"74\" _builder_version=\"3.26.3\"][et_pb_image global_parent=\"74\" src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/header.jpg\" url=\"http://itcamefrombeyondpulp.com\" _builder_version=\"3.26.3\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.26.3\" width=\"1080px\" inner_module_alignment=\"center\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" module_alignment=\"center\" custom_padding=\"0px||0px||false|false\" next_background_color=\"#e02b20\" global_module=\"175\" prev_background_color=\"#000000\"][et_pb_fullwidth_menu global_parent=\"175\" menu_id=\"2\" submenu_direction=\"downwards\" fullwidth_menu=\"off\" dropdown_menu_text_color=\"#ffffff\" _builder_version=\"3.26.3\" menu_font=\"|800||on|||||\" menu_text_color=\"#ffffff\" menu_font_size=\"22px\" menu_letter_spacing=\"5px\" background_color=\"#e02b20\" border_width_bottom=\"5px\" text_orientation=\"center\" background_layout=\"dark\" custom_padding=\"1px||0px||false|false\" z_index_tablet=\"500\" menu_text_shadow_horizontal_length_tablet=\"0px\" menu_text_shadow_vertical_length_tablet=\"0px\" menu_text_shadow_blur_strength_tablet=\"1px\" border_width_bottom_tablet=\"5px\" border_width_bottom_phone=\"5px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" custom_margin=\"0px||||false|false\" /][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" background_color=\"#e02b20\" width=\"1080px\" module_alignment=\"center\" custom_padding=\"10px||0px|||\" prev_background_color=\"#ffffff\"][et_pb_row _builder_version=\"3.26.3\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" background_color=\"#ffffff\" custom_padding=\"10px|10px||10px|false|false\" border_width_bottom=\"5px\" border_color_bottom=\"#e02b20\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image _builder_version=\"3.26.3\" src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/hardware.jpeg\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\" /][et_pb_text _builder_version=\"3.26.3\" z_index_tablet=\"500\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" text_text_shadow_horizontal_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_vertical_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_blur_strength=\"text_text_shadow_style,%91object Object%93\" link_text_shadow_horizontal_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_vertical_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_blur_strength=\"link_text_shadow_style,%91object Object%93\" ul_text_shadow_horizontal_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_vertical_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_blur_strength=\"ul_text_shadow_style,%91object Object%93\" ol_text_shadow_horizontal_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_vertical_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_blur_strength=\"ol_text_shadow_style,%91object Object%93\" quote_text_shadow_horizontal_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_vertical_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_blur_strength=\"quote_text_shadow_style,%91object Object%93\" header_text_shadow_horizontal_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_vertical_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_blur_strength=\"header_text_shadow_style,%91object Object%93\" header_2_text_shadow_horizontal_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_vertical_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_blur_strength=\"header_2_text_shadow_style,%91object Object%93\" header_3_text_shadow_horizontal_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_vertical_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_blur_strength=\"header_3_text_shadow_style,%91object Object%93\" header_4_text_shadow_horizontal_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_vertical_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_blur_strength=\"header_4_text_shadow_style,%91object Object%93\" header_5_text_shadow_horizontal_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_vertical_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_blur_strength=\"header_5_text_shadow_style,%91object Object%93\" header_6_text_shadow_horizontal_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_vertical_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_blur_strength=\"header_6_text_shadow_style,%91object Object%93\"]\r\n\r\n<h3 style=\"text-align: center;\"><strong><em>Hardware</em> (Richard Stanley, 1990, 85 min.)</strong></h3>\r\n<p>Richard Stanley\'s little-seen debut film presents a society bent on self-destruction via any means possible. In the middle of a typical-looking post-apocalyptic world filled with tossed-off dialog about radiation levels and mutations, there\'s something darker at work, a wholesale assault on the human race, designed by men and apparently directed at female reproduction. The film has been dismissed by most people who have bothered to see it as a ripoff of The Terminator, but the similarities are few. It\'s a thematic and tonal mess, careening between operatic pathos and slapstick comedy and then back, sometimes in the same scene, but there\'s a lot going on here that makes it worth seeing.</p>\r\n<p>A \"zone tripper\" (Carl McCoy) scouring the desert for scrap metal recovers a robotic head and hand, which he takes to a scrap dealer to sell. But Moses (Dylan McDermott) buys the head off him first; he wants to give it to his girlfriend Jill (Stacey Travis). Jill, who lives sealed in her apartment and greets Moses with a geiger counter, is an artist who creates disturbing sculptures that uneasily blend the metallic with the organic, like something Georgia O\'Keefe might have made had she known how to weld. She\'s taken refuge against the irradiated world outside while molding its metallic relics into her art. She\'s ecstatic about the head; she paints an American flag on it and uses it to top off a twisted mass of arachnoid metal (the identification of this robot with America doesn\'t end there; we later learn that it can administer a poison that smells like apple pie). Although Jill stays in her apartment, she\'s not safe even there; a rank and flabby neighbor named Lincoln Wineburg (William Hootkins) spies on her through her window and makes obscene phone calls. It turns out later that he even has the keycodes to get past her security system.</p>\r\n<p>It turns out that the head belongs to an artificially intelligent robot assassin that can rebuild itself through force of will and is bent on the destruction of anything living. Moses learns of the head\'s origins too late, and soon Jill is trapped in her apartment with the powerful, murderous Swiss army knife known as MARK 13 (and of course a guy named Moses knows to check the bible verse). At first the robot is kind of comical: the scene where it rebuilds itself is like a mechanized Ray Harryhausen effect, and even its first attack on Jill concludes with it covered in a sheet and thrashing around like E.T. But quickly it becomes apparent that the robot wants to not only kill her but violate her in the process. The first time we realize that it\'s sentient is when it wakes up to watch Moses and Jill having sex. In a great transition, the robot\'s voyeurism (and ours, too, since we\'re watching the film) becomes that of Lincoln Wineburg, who is pleasuring himself while watching through an infrared video camera. Later, when the robot has rebuilt itself, it\'s no accident that its attacks on Jill seem uncomfortably like attempted rapes. Its favorite weapon, aside from its buzz-saw (it has co-opted all of her tools in its self-rebuilding project), is a very phallic drill, with which it menaces her.</p>\r\n<p>The robot turns out to be the logical extension of the government\'s self-destructiveness. Nuclear war was just the start: the latest news is of the passage of a population control bill that will enforce sterilization for mothers with too many children; a newscaster quotes a politician that the plan provides \"a clean break with procreation.\" In a delicious offhand comment, we learn that the robot was built by Ferile Electronics, a name that calls to mind both \"feral\" and \"fertile,\" the former a good indicator of where humanity is heading and the latter a bitter irony. Disgusted with the government that could build such a creature—which, although designed as a combat unit, can\'t distinguish between friend and foe—Jill says that it\'s \"the most useful thing they\'ve ever given us,\" because it will complete the job they started with a nuclear war: \"That\'s their population control.\"</p>\r\n<p>The film is most coherent when it\'s dealing with the idea of government repression as sexual violence, which makes it kind of funny that it\'s so unclear what\'s going on with the male characters. I\'m not sure what to do with Moses, for example: his odd name must signify something, but I\'m not sure what it is, although the film contains several biblical references and the robot\'s death scene looks like it\'s praying. There\'s a moment when Moses almost seems to make an extrasensory connection with Jill, which makes me wonder if there\'s supposed to be something holy about him, but this is never developed. And then there\'s Shades (John Lynch), Moses\'s sidekick. There seems to be a hint, quickly dropped, that he and Jill have been seeing each other while Moses was in the Zone, but mostly his job consists of being present and ineffectual when Jill is in danger.</p>\r\n<p>Don\'t get me wrong: it\'s not all Deep Thoughts, and there\'s a lot here to please genre fans. The blood-red cinematography (by Steven Chivers) gives every scene the look of a fallout shelter, and Stanley is nothing if not a master of efficient filmmaking. Its brief 84 minutes flew by, punctuated by several scenes of garish horror that will satisfy any horror film fan. But the most notable thing about the film is what\'s going on just under the surface.</p>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Hardware (1990)','','inherit','closed','closed','','144-revision-v1','','','2019-07-24 23:21:06','2019-07-24 23:21:06','',144,'http://itcamefrombeyondpulp.com/uncategorized/144-revision-v1/',0,'revision','',0),(147,1,'2019-07-23 03:58:51','2019-07-23 03:58:51','[et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" custom_padding=\"0px|||||\" next_background_color=\"#e02b20\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\" global_module=\"74\"][et_pb_row global_parent=\"74\" custom_padding=\"0px||0px|||\" custom_margin=\"|auto|-66px|auto||\" _builder_version=\"3.26.3\"][et_pb_column type=\"4_4\" global_parent=\"74\" _builder_version=\"3.26.3\"][et_pb_image global_parent=\"74\" src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/itfbp-header.jpg\" _builder_version=\"3.26.3\" url=\"http://itcamefrombeyondpulp.com\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" background_color=\"#e02b20\" width=\"1080px\" module_alignment=\"center\" custom_padding=\"10px||0px|||\" prev_background_color=\"#ffffff\" border_width_bottom=\"5px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\" border_width_bottom_tablet=\"5px\" border_width_bottom_phone=\"5px\" next_background_color=\"#000000\" global_module=\"97\"][et_pb_row global_parent=\"97\" column_structure=\"1_3,1_3,1_3\" custom_padding=\"0px|0px|0px|0px\" custom_margin=\"0px|0px|0px|0px\" _builder_version=\"3.26.3\" min_height=\"0px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\" module_alignment=\"center\"][et_pb_column type=\"1_3\" global_parent=\"97\" _builder_version=\"3.26.3\"][et_pb_text global_parent=\"97\" _builder_version=\"3.26.3\" header_text_color=\"#ffffff\" z_index_tablet=\"500\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" text_text_shadow_horizontal_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_vertical_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_blur_strength=\"text_text_shadow_style,%91object Object%93\" link_text_shadow_horizontal_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_vertical_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_blur_strength=\"link_text_shadow_style,%91object Object%93\" ul_text_shadow_horizontal_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_vertical_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_blur_strength=\"ul_text_shadow_style,%91object Object%93\" ol_text_shadow_horizontal_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_vertical_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_blur_strength=\"ol_text_shadow_style,%91object Object%93\" quote_text_shadow_horizontal_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_vertical_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_blur_strength=\"quote_text_shadow_style,%91object Object%93\" header_text_shadow_horizontal_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_vertical_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_blur_strength=\"header_text_shadow_style,%91object Object%93\" header_2_text_shadow_horizontal_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_vertical_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_blur_strength=\"header_2_text_shadow_style,%91object Object%93\" header_3_text_shadow_horizontal_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_vertical_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_blur_strength=\"header_3_text_shadow_style,%91object Object%93\" header_4_text_shadow_horizontal_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_vertical_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_blur_strength=\"header_4_text_shadow_style,%91object Object%93\" header_5_text_shadow_horizontal_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_vertical_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_blur_strength=\"header_5_text_shadow_style,%91object Object%93\" header_6_text_shadow_horizontal_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_vertical_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_blur_strength=\"header_6_text_shadow_style,%91object Object%93\"]\r\n\r\n<h1 style=\"text-align: center;\"><a href=\"http://itcamefrombeyondpulp.com/movies/\"><strong>MOVIES &amp; TV</strong></a></h1>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" global_parent=\"97\" _builder_version=\"3.26.3\"][et_pb_text global_parent=\"97\" _builder_version=\"3.26.3\" header_text_color=\"#ffffff\" z_index_tablet=\"500\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" text_text_shadow_horizontal_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_vertical_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_blur_strength=\"text_text_shadow_style,%91object Object%93\" link_text_shadow_horizontal_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_vertical_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_blur_strength=\"link_text_shadow_style,%91object Object%93\" ul_text_shadow_horizontal_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_vertical_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_blur_strength=\"ul_text_shadow_style,%91object Object%93\" ol_text_shadow_horizontal_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_vertical_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_blur_strength=\"ol_text_shadow_style,%91object Object%93\" quote_text_shadow_horizontal_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_vertical_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_blur_strength=\"quote_text_shadow_style,%91object Object%93\" header_text_shadow_horizontal_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_vertical_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_blur_strength=\"header_text_shadow_style,%91object Object%93\" header_2_text_shadow_horizontal_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_vertical_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_blur_strength=\"header_2_text_shadow_style,%91object Object%93\" header_3_text_shadow_horizontal_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_vertical_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_blur_strength=\"header_3_text_shadow_style,%91object Object%93\" header_4_text_shadow_horizontal_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_vertical_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_blur_strength=\"header_4_text_shadow_style,%91object Object%93\" header_5_text_shadow_horizontal_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_vertical_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_blur_strength=\"header_5_text_shadow_style,%91object Object%93\" header_6_text_shadow_horizontal_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_vertical_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_blur_strength=\"header_6_text_shadow_style,%91object Object%93\"]\r\n\r\n<h1 style=\"text-align: center;\"><a href=\"http://itcamefrombeyondpulp.com/books/\"><strong>BOOKS</strong></a></h1>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" global_parent=\"97\" _builder_version=\"3.26.3\"][et_pb_text global_parent=\"97\" _builder_version=\"3.26.3\" header_text_color=\"#ffffff\" z_index_tablet=\"500\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" text_text_shadow_horizontal_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_vertical_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_blur_strength=\"text_text_shadow_style,%91object Object%93\" link_text_shadow_horizontal_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_vertical_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_blur_strength=\"link_text_shadow_style,%91object Object%93\" ul_text_shadow_horizontal_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_vertical_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_blur_strength=\"ul_text_shadow_style,%91object Object%93\" ol_text_shadow_horizontal_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_vertical_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_blur_strength=\"ol_text_shadow_style,%91object Object%93\" quote_text_shadow_horizontal_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_vertical_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_blur_strength=\"quote_text_shadow_style,%91object Object%93\" header_text_shadow_horizontal_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_vertical_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_blur_strength=\"header_text_shadow_style,%91object Object%93\" header_2_text_shadow_horizontal_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_vertical_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_blur_strength=\"header_2_text_shadow_style,%91object Object%93\" header_3_text_shadow_horizontal_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_vertical_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_blur_strength=\"header_3_text_shadow_style,%91object Object%93\" header_4_text_shadow_horizontal_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_vertical_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_blur_strength=\"header_4_text_shadow_style,%91object Object%93\" header_5_text_shadow_horizontal_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_vertical_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_blur_strength=\"header_5_text_shadow_style,%91object Object%93\" header_6_text_shadow_horizontal_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_vertical_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_blur_strength=\"header_6_text_shadow_style,%91object Object%93\"]\r\n\r\n<h1 style=\"text-align: center;\"><a href=\"http://itcamefrombeyondpulp.com/sales/\"><strong>SALES</strong></a></h1>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" background_color=\"#e02b20\" width=\"1080px\" module_alignment=\"center\" custom_padding=\"10px||0px|||\" prev_background_color=\"#000000\"][et_pb_row _builder_version=\"3.26.3\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" background_color=\"#ffffff\" custom_padding=\"10px|10px||10px|false|false\" border_width_bottom=\"5px\" border_color_bottom=\"#e02b20\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image _builder_version=\"3.26.3\" src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/hardware.jpeg\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\" /][et_pb_text _builder_version=\"3.26.3\" z_index_tablet=\"500\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" text_text_shadow_horizontal_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_vertical_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_blur_strength=\"text_text_shadow_style,%91object Object%93\" link_text_shadow_horizontal_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_vertical_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_blur_strength=\"link_text_shadow_style,%91object Object%93\" ul_text_shadow_horizontal_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_vertical_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_blur_strength=\"ul_text_shadow_style,%91object Object%93\" ol_text_shadow_horizontal_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_vertical_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_blur_strength=\"ol_text_shadow_style,%91object Object%93\" quote_text_shadow_horizontal_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_vertical_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_blur_strength=\"quote_text_shadow_style,%91object Object%93\" header_text_shadow_horizontal_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_vertical_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_blur_strength=\"header_text_shadow_style,%91object Object%93\" header_2_text_shadow_horizontal_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_vertical_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_blur_strength=\"header_2_text_shadow_style,%91object Object%93\" header_3_text_shadow_horizontal_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_vertical_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_blur_strength=\"header_3_text_shadow_style,%91object Object%93\" header_4_text_shadow_horizontal_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_vertical_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_blur_strength=\"header_4_text_shadow_style,%91object Object%93\" header_5_text_shadow_horizontal_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_vertical_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_blur_strength=\"header_5_text_shadow_style,%91object Object%93\" header_6_text_shadow_horizontal_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_vertical_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_blur_strength=\"header_6_text_shadow_style,%91object Object%93\"]\r\n\r\n<h3 style=\"text-align: center;\"><strong><em>Hardware</em> (Richard Stanley, 1990, 85 min.)</strong></h3><p>Richard Stanley\'s little-seen debut film presents a society bent on self-destruction via any means possible. In the middle of a typical-looking post-apocalyptic world filled with tossed-off dialog about radiation levels and mutations, there\'s something darker at work, a wholesale assault on the human race, designed by men and apparently directed at female reproduction. The film has been dismissed by most people who have bothered to see it as a ripoff of The Terminator, but the similarities are few. It\'s a thematic and tonal mess, careening between operatic pathos and slapstick comedy and then back, sometimes in the same scene, but there\'s a lot going on here that makes it worth seeing.<br /><br />A \"zone tripper\" (Carl McCoy) scouring the desert for scrap metal recovers a robotic head and hand, which he takes to a scrap dealer to sell. But Moses (Dylan McDermott) buys the head off him first; he wants to give it to his girlfriend Jill (Stacey Travis). Jill, who lives sealed in her apartment and greets Moses with a geiger counter, is an artist who creates disturbing sculptures that uneasily blend the metallic with the organic, like something Georgia O\'Keefe might have made had she known how to weld. She\'s taken refuge against the irradiated world outside while molding its metallic relics into her art. She\'s ecstatic about the head; she paints an American flag on it and uses it to top off a twisted mass of arachnoid metal (the identification of this robot with America doesn\'t end there; we later learn that it can administer a poison that smells like apple pie). Although Jill stays in her apartment, she\'s not safe even there; a rank and flabby neighbor named Lincoln Wineburg (William Hootkins) spies on her through her window and makes obscene phone calls. It turns out later that he even has the keycodes to get past her security system.<br /><br />It turns out that the head belongs to an artificially intelligent robot assassin that can rebuild itself through force of will and is bent on the destruction of anything living. Moses learns of the head\'s origins too late, and soon Jill is trapped in her apartment with the powerful, murderous Swiss army knife known as MARK 13 (and of course a guy named Moses knows to check the bible verse). At first the robot is kind of comical: the scene where it rebuilds itself is like a mechanized Ray Harryhausen effect, and even its first attack on Jill concludes with it covered in a sheet and thrashing around like E.T. But quickly it becomes apparent that the robot wants to not only kill her but violate her in the process. The first time we realize that it\'s sentient is when it wakes up to watch Moses and Jill having sex. In a great transition, the robot\'s voyeurism (and ours, too, since we\'re watching the film) becomes that of Lincoln Wineburg, who is pleasuring himself while watching through an infrared video camera. Later, when the robot has rebuilt itself, it\'s no accident that its attacks on Jill seem uncomfortably like attempted rapes. Its favorite weapon, aside from its buzz-saw (it has co-opted all of her tools in its self-rebuilding project), is a very phallic drill, with which it menaces her.<br /><br />The robot turns out to be the logical extension of the government\'s self-destructiveness. Nuclear war was just the start: the latest news is of the passage of a population control bill that will enforce sterilization for mothers with too many children; a newscaster quotes a politician that the plan provides \"a clean break with procreation.\" In a delicious offhand comment, we learn that the robot was built by Ferile Electronics, a name that calls to mind both \"feral\" and \"fertile,\" the former a good indicator of where humanity is heading and the latter a bitter irony. Disgusted with the government that could build such a creature—which, although designed as a combat unit, can\'t distinguish between friend and foe—Jill says that it\'s \"the most useful thing they\'ve ever given us,\" because it will complete the job they started with a nuclear war: \"That\'s their population control.\"<br /><br />The film is most coherent when it\'s dealing with the idea of government repression as sexual violence, which makes it kind of funny that it\'s so unclear what\'s going on with the male characters. I\'m not sure what to do with Moses, for example: his odd name must signify something, but I\'m not sure what it is, although the film contains several biblical references and the robot\'s death scene looks like it\'s praying. There\'s a moment when Moses almost seems to make an extrasensory connection with Jill, which makes me wonder if there\'s supposed to be something holy about him, but this is never developed. And then there\'s Shades (John Lynch), Moses\'s sidekick. There seems to be a hint, quickly dropped, that he and Jill have been seeing each other while Moses was in the Zone, but mostly his job consists of being present and ineffectual when Jill is in danger.<br /><br />Don\'t get me wrong: it\'s not all Deep Thoughts, and there\'s a lot here to please genre fans. The blood-red cinematography (by Steven Chivers) gives every scene the look of a fallout shelter, and Stanley is nothing if not a master of efficient filmmaking. Its brief 84 minutes flew by, punctuated by several scenes of garish horror that will satisfy any horror film fan. But the most notable thing about the film is what\'s going on just under the surface.</p>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Hardware (1990)','','inherit','closed','closed','','144-revision-v1','','','2019-07-23 03:58:51','2019-07-23 03:58:51','',144,'http://itcamefrombeyondpulp.com/uncategorized/144-revision-v1/',0,'revision','',0),(149,1,'2019-07-23 04:08:54','2019-07-23 04:08:54','[et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" custom_padding=\"0px|||||\" next_background_color=\"#e02b20\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\" global_module=\"74\"][et_pb_row global_parent=\"74\" custom_padding=\"0px||0px|||\" custom_margin=\"|auto|-66px|auto||\" _builder_version=\"3.26.3\"][et_pb_column type=\"4_4\" global_parent=\"74\" _builder_version=\"3.26.3\"][et_pb_image global_parent=\"74\" src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/itfbp-header.jpg\" _builder_version=\"3.26.3\" url=\"http://itcamefrombeyondpulp.com\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" background_color=\"#e02b20\" width=\"1080px\" module_alignment=\"center\" custom_padding=\"10px||0px|||\" prev_background_color=\"#ffffff\" border_width_bottom=\"5px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\" border_width_bottom_tablet=\"5px\" border_width_bottom_phone=\"5px\" next_background_color=\"#000000\" global_module=\"97\"][et_pb_row global_parent=\"97\" column_structure=\"1_3,1_3,1_3\" custom_padding=\"0px|0px|0px|0px\" custom_margin=\"0px|0px|0px|0px\" _builder_version=\"3.26.3\" min_height=\"0px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\" module_alignment=\"center\"][et_pb_column type=\"1_3\" global_parent=\"97\" _builder_version=\"3.26.3\"][et_pb_text global_parent=\"97\" _builder_version=\"3.26.3\" header_text_color=\"#ffffff\" z_index_tablet=\"500\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" text_text_shadow_horizontal_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_vertical_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_blur_strength=\"text_text_shadow_style,%91object Object%93\" link_text_shadow_horizontal_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_vertical_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_blur_strength=\"link_text_shadow_style,%91object Object%93\" ul_text_shadow_horizontal_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_vertical_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_blur_strength=\"ul_text_shadow_style,%91object Object%93\" ol_text_shadow_horizontal_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_vertical_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_blur_strength=\"ol_text_shadow_style,%91object Object%93\" quote_text_shadow_horizontal_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_vertical_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_blur_strength=\"quote_text_shadow_style,%91object Object%93\" header_text_shadow_horizontal_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_vertical_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_blur_strength=\"header_text_shadow_style,%91object Object%93\" header_2_text_shadow_horizontal_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_vertical_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_blur_strength=\"header_2_text_shadow_style,%91object Object%93\" header_3_text_shadow_horizontal_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_vertical_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_blur_strength=\"header_3_text_shadow_style,%91object Object%93\" header_4_text_shadow_horizontal_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_vertical_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_blur_strength=\"header_4_text_shadow_style,%91object Object%93\" header_5_text_shadow_horizontal_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_vertical_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_blur_strength=\"header_5_text_shadow_style,%91object Object%93\" header_6_text_shadow_horizontal_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_vertical_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_blur_strength=\"header_6_text_shadow_style,%91object Object%93\"]\r\n\r\n</p>\r\n<h1 style=\"text-align: center;\"><a href=\"http://itcamefrombeyondpulp.com/movies/\"><strong>MOVIES &amp; TV</strong></a></h1>\r\n<p>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" global_parent=\"97\" _builder_version=\"3.26.3\"][et_pb_text global_parent=\"97\" _builder_version=\"3.26.3\" header_text_color=\"#ffffff\" z_index_tablet=\"500\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" text_text_shadow_horizontal_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_vertical_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_blur_strength=\"text_text_shadow_style,%91object Object%93\" link_text_shadow_horizontal_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_vertical_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_blur_strength=\"link_text_shadow_style,%91object Object%93\" ul_text_shadow_horizontal_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_vertical_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_blur_strength=\"ul_text_shadow_style,%91object Object%93\" ol_text_shadow_horizontal_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_vertical_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_blur_strength=\"ol_text_shadow_style,%91object Object%93\" quote_text_shadow_horizontal_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_vertical_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_blur_strength=\"quote_text_shadow_style,%91object Object%93\" header_text_shadow_horizontal_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_vertical_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_blur_strength=\"header_text_shadow_style,%91object Object%93\" header_2_text_shadow_horizontal_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_vertical_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_blur_strength=\"header_2_text_shadow_style,%91object Object%93\" header_3_text_shadow_horizontal_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_vertical_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_blur_strength=\"header_3_text_shadow_style,%91object Object%93\" header_4_text_shadow_horizontal_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_vertical_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_blur_strength=\"header_4_text_shadow_style,%91object Object%93\" header_5_text_shadow_horizontal_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_vertical_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_blur_strength=\"header_5_text_shadow_style,%91object Object%93\" header_6_text_shadow_horizontal_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_vertical_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_blur_strength=\"header_6_text_shadow_style,%91object Object%93\"]\r\n\r\n</p>\r\n<h1 style=\"text-align: center;\"><a href=\"http://itcamefrombeyondpulp.com/books/\"><strong>BOOKS</strong></a></h1>\r\n<p>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" global_parent=\"97\" _builder_version=\"3.26.3\"][et_pb_text global_parent=\"97\" _builder_version=\"3.26.3\" header_text_color=\"#ffffff\" z_index_tablet=\"500\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" text_text_shadow_horizontal_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_vertical_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_blur_strength=\"text_text_shadow_style,%91object Object%93\" link_text_shadow_horizontal_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_vertical_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_blur_strength=\"link_text_shadow_style,%91object Object%93\" ul_text_shadow_horizontal_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_vertical_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_blur_strength=\"ul_text_shadow_style,%91object Object%93\" ol_text_shadow_horizontal_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_vertical_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_blur_strength=\"ol_text_shadow_style,%91object Object%93\" quote_text_shadow_horizontal_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_vertical_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_blur_strength=\"quote_text_shadow_style,%91object Object%93\" header_text_shadow_horizontal_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_vertical_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_blur_strength=\"header_text_shadow_style,%91object Object%93\" header_2_text_shadow_horizontal_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_vertical_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_blur_strength=\"header_2_text_shadow_style,%91object Object%93\" header_3_text_shadow_horizontal_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_vertical_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_blur_strength=\"header_3_text_shadow_style,%91object Object%93\" header_4_text_shadow_horizontal_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_vertical_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_blur_strength=\"header_4_text_shadow_style,%91object Object%93\" header_5_text_shadow_horizontal_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_vertical_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_blur_strength=\"header_5_text_shadow_style,%91object Object%93\" header_6_text_shadow_horizontal_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_vertical_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_blur_strength=\"header_6_text_shadow_style,%91object Object%93\"]\r\n\r\n</p>\r\n<h1 style=\"text-align: center;\"><a href=\"http://itcamefrombeyondpulp.com/sales/\"><strong>SALES</strong></a></h1>\r\n<p>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" background_color=\"#e02b20\" width=\"1080px\" module_alignment=\"center\" custom_padding=\"10px||0px|||\" prev_background_color=\"#000000\"][et_pb_row custom_padding=\"10px|10px||\" _builder_version=\"3.26.3\" background_color=\"#ffffff\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" border_width_bottom=\"5px\" border_color_bottom=\"#e02b20\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.26.3\" text_text_shadow_horizontal_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\"]\r\n\r\n<h1 style=\"text-align: center;\">Movies &amp; TV Reviews</h1><p style=\"text-align: center;\"><strong><a href=\"http://itcamefrombeyondpulp.com/movies/children-of-men-2006/\">Children of Men (2006)</a><br /></strong><strong><a href=\"http://itcamefrombeyondpulp.com/movies/cloverfield-2008/\">Cloverfield (2008)</a><br /><a href=\"http://itcamefrombeyondpulp.com/movies/the-dark-knight-2008/\">The Dark Knight (2008)</a><br /><a href=\"http://itcamefrombeyondpulp.com/movies/the-fountain-2006/\">The Fountain (2006)</a><br /><a href=\"http://itcamefrombeyondpulp.com/movies/hardware-1990/\">Hardware (1990)</a><br /></strong><a href=\"http://itcamefrombeyondpulp.com/movies/serenity-2005/\"><strong>Serenity (2005)</strong></a></p>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Movies','','inherit','closed','closed','','45-revision-v1','','','2019-07-23 04:08:54','2019-07-23 04:08:54','',45,'http://itcamefrombeyondpulp.com/uncategorized/45-revision-v1/',0,'revision','',0),(178,1,'2019-07-24 15:03:00','2019-07-24 15:03:00','','Divi','','inherit','closed','closed','','13-revision-v1','','','2019-07-24 15:03:00','2019-07-24 15:03:00','',13,'http://itcamefrombeyondpulp.com/uncategorized/13-revision-v1/',0,'revision','',0),(151,1,'2019-07-24 02:10:33','2019-07-24 02:10:33','@media only screen and ( min-width: 981px ) {\r\n.et_header_style_centered #logo {\r\n    max-height: unset;\r\n    height: 200px;\r\n    width: 100%;\r\n}\r\n}','Divi','','inherit','closed','closed','','13-revision-v1','','','2019-07-24 02:10:33','2019-07-24 02:10:33','',13,'http://itcamefrombeyondpulp.com/uncategorized/13-revision-v1/',0,'revision','',0),(152,1,'2019-07-24 02:11:01','2019-07-24 02:11:01','@media only screen and ( min-width: 981px ) {\r\n.et_header_style_centered #logo {\r\n    max-height: unset;\r\n    height: 100%;\r\n    width: 100%;\r\n}\r\n}','Divi','','inherit','closed','closed','','13-revision-v1','','','2019-07-24 02:11:01','2019-07-24 02:11:01','',13,'http://itcamefrombeyondpulp.com/uncategorized/13-revision-v1/',0,'revision','',0),(153,1,'2019-07-24 02:11:18','2019-07-24 02:11:18','@media only screen and ( min-width: 981px ) {\r\n.et_header_style_centered #logo {\r\n    max-height: unset;\r\n    width: 100%;\r\n}\r\n}','Divi','','inherit','closed','closed','','13-revision-v1','','','2019-07-24 02:11:18','2019-07-24 02:11:18','',13,'http://itcamefrombeyondpulp.com/uncategorized/13-revision-v1/',0,'revision','',0),(217,1,'2019-07-24 23:13:09','2019-07-24 23:13:09','[et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" custom_padding=\"0px|||||\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" custom_margin=\"||11px|||\" next_background_color=\"#e02b20\" template_type=\"section\"][et_pb_row custom_padding=\"0px||0px|||\" custom_margin=\"|auto|-66px|auto||\" _builder_version=\"3.26.3\"][et_pb_column type=\"4_4\" _builder_version=\"3.26.3\"][et_pb_image src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/header.jpg\" url=\"http://itcamefrombeyondpulp.com\" _builder_version=\"3.26.3\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" /][/et_pb_column][/et_pb_row][/et_pb_section]','header','','inherit','closed','closed','','74-revision-v1','','','2019-07-24 23:13:09','2019-07-24 23:13:09','',74,'http://itcamefrombeyondpulp.com/uncategorized/74-revision-v1/',0,'revision','',0),(220,1,'2019-07-24 23:14:07','2019-07-24 23:14:07','[et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" custom_padding=\"0px|||||\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" custom_margin=\"||11px|||\" next_background_color=\"#000000\" template_type=\"section\"][et_pb_row custom_padding=\"0px||0px|||\" custom_margin=\"|auto|-66px|auto||\" _builder_version=\"3.26.3\"][et_pb_column type=\"4_4\" _builder_version=\"3.26.3\"][et_pb_image src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/header.jpg\" url=\"http://itcamefrombeyondpulp.com\" _builder_version=\"3.26.3\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" /][/et_pb_column][/et_pb_row][/et_pb_section]','header','','inherit','closed','closed','','74-revision-v1','','','2019-07-24 23:14:07','2019-07-24 23:14:07','',74,'http://itcamefrombeyondpulp.com/uncategorized/74-revision-v1/',0,'revision','',0),(221,1,'2019-07-24 23:14:29','2019-07-24 23:14:29','[et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" custom_padding=\"0px|||||\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" custom_margin=\"||11px|||\" next_background_color=\"#e02b20\" template_type=\"section\"][et_pb_row custom_padding=\"0px||0px|||\" custom_margin=\"|auto|-66px|auto||\" _builder_version=\"3.26.3\"][et_pb_column type=\"4_4\" _builder_version=\"3.26.3\"][et_pb_image src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/header.jpg\" url=\"http://itcamefrombeyondpulp.com\" _builder_version=\"3.26.3\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" /][/et_pb_column][/et_pb_row][/et_pb_section]','header','','inherit','closed','closed','','74-revision-v1','','','2019-07-24 23:14:29','2019-07-24 23:14:29','',74,'http://itcamefrombeyondpulp.com/uncategorized/74-revision-v1/',0,'revision','',0),(222,1,'2019-07-24 23:15:35','2019-07-24 23:15:35','[et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" custom_padding=\"0px|||||\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" custom_margin=\"||11px|||\" next_background_color=\"#e02b20\" global_module=\"74\"][et_pb_row global_parent=\"74\" custom_padding=\"0px||0px|||\" custom_margin=\"|auto|-66px|auto||\" _builder_version=\"3.26.3\"][et_pb_column type=\"4_4\" global_parent=\"74\" _builder_version=\"3.26.3\"][et_pb_image global_parent=\"74\" src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/header.jpg\" url=\"http://itcamefrombeyondpulp.com\" _builder_version=\"3.26.3\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" background_color=\"#e02b20\" width=\"1080px\" module_alignment=\"center\" custom_padding=\"10px||0px|||\" prev_background_color=\"#ffffff\"][et_pb_row _builder_version=\"3.26.3\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" background_color=\"#ffffff\" custom_padding=\"10px|10px||10px|false|false\" border_width_bottom=\"5px\" border_color_bottom=\"#e02b20\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image _builder_version=\"3.26.3\" src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/hp-cham.jpg\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\" /][et_pb_text _builder_version=\"3.26.3\" z_index_tablet=\"500\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" text_text_shadow_horizontal_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_vertical_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_blur_strength=\"text_text_shadow_style,%91object Object%93\" link_text_shadow_horizontal_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_vertical_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_blur_strength=\"link_text_shadow_style,%91object Object%93\" ul_text_shadow_horizontal_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_vertical_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_blur_strength=\"ul_text_shadow_style,%91object Object%93\" ol_text_shadow_horizontal_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_vertical_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_blur_strength=\"ol_text_shadow_style,%91object Object%93\" quote_text_shadow_horizontal_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_vertical_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_blur_strength=\"quote_text_shadow_style,%91object Object%93\" header_text_shadow_horizontal_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_vertical_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_blur_strength=\"header_text_shadow_style,%91object Object%93\" header_2_text_shadow_horizontal_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_vertical_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_blur_strength=\"header_2_text_shadow_style,%91object Object%93\" header_3_text_shadow_horizontal_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_vertical_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_blur_strength=\"header_3_text_shadow_style,%91object Object%93\" header_4_text_shadow_horizontal_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_vertical_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_blur_strength=\"header_4_text_shadow_style,%91object Object%93\" header_5_text_shadow_horizontal_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_vertical_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_blur_strength=\"header_5_text_shadow_style,%91object Object%93\" header_6_text_shadow_horizontal_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_vertical_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_blur_strength=\"header_6_text_shadow_style,%91object Object%93\"]\n\n<h3 style=\"text-align: center;\"><strong><em>Harry Potter and the Chamber of Secrets</em> (Chris Columbus, 2002, 161 min.)</strong></h3>\n<p>Part experiment, part laziness, I went to see the second installation of the fantastically successful <i>Harry Potter</i> franchise without having read the book. Not having a control-group version of myself, however, I am unable to tell if I enjoyed this film more than the first one, <i><em>Harry Potter and the Sorcerer\'s Stone</em></i>, because it was a better movie or because I didn\'t already know everything that was going to happen, exactly as it happened. Judging from the responses of the friends with whom I saw it, I think it\'s probably a better movie, but that it too is almost completely faithful to the book, so I suppose that it\'s best that I had not yet read it. It is entirely possible to make a great movie out of a great book, or a great movie out of a mediocre book, but it\'s a difficult feat to pore through a book and cull things that won\'t work cinematically, while capturing the elusive feel of the book that is usually what readers really love, whether they can put it into words or not.</p>\n<p>So, having excused myself from any arguments as to whether the movie is faithful to the book or not, I can talk about whether the movie was a good movie or not. While it\'s certainly not Great Cinema, it was pretty enjoyable, if punishingly long and slow in parts; it did away with the lengthy exposition of the first movie, assuming that we already know who everyone is. How it clocked in even longer is beyond me. It moved better than the first one: there was more continuity between scenes, a sense of A following logically from B instead of feeling like a series of setpieces with little to tie them together.</p>\n<p>The film covers the second year for Harry (Daniel Radcliffe) and company at Hogwarts. It begins with Harry struggling to escape the clutches of his Muggle relatives, who don\'t want him to return to the academy. Other creatures want him to stay home too; Dobby, an ugly little elf that speaks in an annoying third person (\"Dobby thinks that...\" reminding me of \"Bob Dole won\'t...\"), tries his magical best to keep Harry from boarding the magical train, saying that someone wants to do him harm, although he won\'t say who. Thankfully, Ron Weasley (Rupert Grint) and his twin brothers rescue him in their flying car. Harry and Ron eventually make it to Hogwarts, but not without coming within a hair\'s breadth of getting killed or expelled. They quickly fall into old patterns: they hang out with lovely young know-it-all Hermione (Emma Watson), they commence their battle of wills with the odious Draco Malfoy (Tom Felton), who now has the support of his obviously evil father Lucius Malfoy (Jason Isaacs), and they get into trouble.</p>\n<p>There is trouble brewing, though: something is petrifying students, some creature that dwells in the Chamber of Secrets, a secret room hidden somewhere in the massive edifice of Hogwarts, which was created by the founder of the Slytherin house in an attempt to eliminate all \"mud-bloods\" (magicians born to Muggles) from the ranks of magicians. The suspicion as to who opened the Chamber and released, and now controls, the mysterious monster naturally falls on Harry, because he manages to be the first on the crime scene and looks suspicious, especially when it turns out he can talk to snakes in their own language. Harry, Ron, and Hermione must solve the mystery before students start getting killed; their investigation reveals deep secrets that involve the first opening of the Chamber fifty years before, a diary left by a long-forgotten student, and Hagrid (Robbie Coltrane), the lovable groundskeeper at Hogwarts.</p>\n<p>We have the usual crew of characters: in addition to those mentioned above, Albus Dumbledore (the late Richard Harris) is just as magisterial as he was before, although he looks a little older and more tired; Snape (Alan Rickman) is still as sneaky and dour; and McGonagall (Maggie Smith) isn\'t as confident and hard-nosed. These changes make sense, because whatever is attacking students threatens to force the closure of the school, and might mean the return of Voldemort, the evil wizard who killed Harry\'s parents and tried to come back in the first installment.</p>\n<p>Added to the mix are one so-so character and one unforgettable one. Miriam Margoyles plays Professor Sprout, who teaches herbology and is educating her class on the use of the mandrake root, in a scene that evokes more than a few chuckles for anyone who\'s read the John Donne poem \"Song\" (\"get with child a mandrake root\"—and I only read it because Ebert pointed out the reference). And Kenneth Branagh plays Gilderoy Lockhart, cashing in on all the scorn that British people apparently heap on him; he\'s perfect as a big-headed, self-promoting blowhard, more talk than action, who would rather sell the students copies of his autobiography than teach them Defense Against the Dark Arts, which is supposed to be his area of expertise. He\'s easily the most interesting character outside of Hagrid that the series has produced thus far.</p>\n<p>Since this is the second installment, we can start to judge the principal actors on the basis of their improvement from the first movie. Sadly, they are not good actors. Daniel Radcliffe is passable but somewhat wooden as Harry, Emma Watson shows promise but is a little shrill as Hermione, and Rupert Grint grates on the nerves more and more as Ron. Tom Felton as Draco Malfoy still snarls like the bad guy from a Hannah-Barbara cartoon, and I don\'t expect him to get any better as the series plows on.</p>\n<p>There were dramatic improvements in terms of special effects and blending the fantastic in with the real world. Gone are the too-perfect CGI effects of part 1; the digital elf Dobby looks great, the Quidditch game (which is exciting but goes on way too long and resembles nothing else but the extraneous pod-racing scene from <i>Star Wars: Episode 1</i>) now looks like it\'s real people in real danger, and the capstone effect, which inhabits the last quarter of the film (I don\'t want to give it away to those four or five other people who haven\'t read the book), is terrifyingly good.</p>\n<p>Despite the improvements, though, you still have to contend with the stately, respectful pace, which sometimes takes the enjoyment out of scenes that seem like they should have been more fun. The writer and director have not changed; Chris Columbus still doesn\'t seem to have a firm grasp of the frantic joy of the books, and writer Steve Kloves seems like he is still happy to simply reproduce page after page accurately and antiseptically. The score by John Williams is just as overpowering as in the first one. The addition of cinematographer Roger Pratt (of <i><em>12 Monkeys</em></i> and <i><em>Batman</em></i> fame) is a plus; perhaps he was behind the more seamless blending of the CGI with the real-life, and Hogwarts looks even more imposing and labyrinthine than before. But despite all of this, Alfonso Cuaron blew this film, and indeed the rest of the interminable series, out of the water with his <em>Harry Potter and the Prisoner of Azkaban</em>, because he is a better filmmaker than any of the others who tackled these thankless projects.</p>\n\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Harry Potter and the Chamber of Secrets (2002)','','inherit','closed','closed','','166-autosave-v1','','','2019-07-24 23:15:35','2019-07-24 23:15:35','',166,'http://itcamefrombeyondpulp.com/uncategorized/166-autosave-v1/',0,'revision','',0),(157,1,'2019-07-24 02:20:56','2019-07-24 02:20:56','[et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" custom_padding=\"0px|||||\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" custom_margin=\"||11px|||\" next_background_color=\"#000000\" global_module=\"74\"][et_pb_row global_parent=\"74\" custom_padding=\"0px||0px|||\" custom_margin=\"|auto|-66px|auto||\" _builder_version=\"3.26.3\"][et_pb_column type=\"4_4\" global_parent=\"74\" _builder_version=\"3.26.3\"][et_pb_image global_parent=\"74\" src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/header.jpg\" url=\"http://itcamefrombeyondpulp.com\" _builder_version=\"3.26.3\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.26.3\" width=\"1080px\" inner_module_alignment=\"center\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" module_alignment=\"center\" custom_padding=\"0px||0px||false|false\" next_background_color=\"#e02b20\" global_module=\"175\" prev_background_color=\"#000000\"][et_pb_fullwidth_menu global_parent=\"175\" menu_id=\"2\" submenu_direction=\"downwards\" fullwidth_menu=\"off\" dropdown_menu_text_color=\"#ffffff\" _builder_version=\"3.26.3\" menu_font=\"|800||on|||||\" menu_text_color=\"#ffffff\" menu_font_size=\"22px\" menu_letter_spacing=\"5px\" background_color=\"#e02b20\" border_width_bottom=\"5px\" text_orientation=\"center\" background_layout=\"dark\" custom_padding=\"1px||0px||false|false\" z_index_tablet=\"500\" menu_text_shadow_horizontal_length_tablet=\"0px\" menu_text_shadow_vertical_length_tablet=\"0px\" menu_text_shadow_blur_strength_tablet=\"1px\" border_width_bottom_tablet=\"5px\" border_width_bottom_phone=\"5px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" custom_margin=\"0px||||false|false\" /][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" background_color=\"#e02b20\" width=\"1080px\" module_alignment=\"center\" custom_padding=\"10px||0px|||\" prev_background_color=\"#ffffff\"][et_pb_row _builder_version=\"3.26.3\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" background_color=\"#ffffff\" custom_padding=\"10px|10px||10px|false|false\" border_width_bottom=\"5px\" border_color_bottom=\"#e02b20\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image _builder_version=\"3.26.3\" src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/maniac.jpg\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\" /][et_pb_text _builder_version=\"3.26.3\" z_index_tablet=\"500\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" text_text_shadow_horizontal_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_vertical_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_blur_strength=\"text_text_shadow_style,%91object Object%93\" link_text_shadow_horizontal_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_vertical_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_blur_strength=\"link_text_shadow_style,%91object Object%93\" ul_text_shadow_horizontal_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_vertical_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_blur_strength=\"ul_text_shadow_style,%91object Object%93\" ol_text_shadow_horizontal_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_vertical_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_blur_strength=\"ol_text_shadow_style,%91object Object%93\" quote_text_shadow_horizontal_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_vertical_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_blur_strength=\"quote_text_shadow_style,%91object Object%93\" header_text_shadow_horizontal_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_vertical_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_blur_strength=\"header_text_shadow_style,%91object Object%93\" header_2_text_shadow_horizontal_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_vertical_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_blur_strength=\"header_2_text_shadow_style,%91object Object%93\" header_3_text_shadow_horizontal_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_vertical_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_blur_strength=\"header_3_text_shadow_style,%91object Object%93\" header_4_text_shadow_horizontal_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_vertical_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_blur_strength=\"header_4_text_shadow_style,%91object Object%93\" header_5_text_shadow_horizontal_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_vertical_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_blur_strength=\"header_5_text_shadow_style,%91object Object%93\" header_6_text_shadow_horizontal_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_vertical_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_blur_strength=\"header_6_text_shadow_style,%91object Object%93\"]\r\n\r\n<h3 style=\"text-align: center;\"><strong><em>Maniac</em> (Dwain Esper, 1934, 51 min.)</strong></h3>\r\n<p>I ordinarily don\'t believe in \"so bad it\'s good.\" Most films that are lauded as classics of camp, pinnacles of putrescence, and groundbreakers of godawfulness are simply not worth watching. Certainly it\'s possible to have a good time laughing at a truly awful film, but that\'s time better spent watching something worthwhile. I program a series of schlocky 1950s and 1960s horror and sci-fi film, but I wouldn\'t show them if I didn\'t see anything of value in them.</p>\r\n<p>Which makes the 1934 exploitation film <i>Maniac</i> such a shock, for it is a truly wretched film that I enjoyed, partly because of and partly in spite of its excessive excrescence. It\'s a nasty little film aimed at the lowest, most prurient denominator, but it achieves its goals with such aplomb that I couldn\'t help but applaud it. You can almost see husband-and-wife team Dwain and Hildagarde Esper cackling to themselves in front of a large chalkboard, doing lines of coke off the asses of shackled sex slaves and shouting out depravities to include in their filth-fest.</p>\r\n<p>Its release is of historical note, too, as it helped me understand a little better what the Catholic Legion of Decency and other pro-censorship groups were so upset about by 1934, when the infamous Hayes Code was implemented. The harsh crackdown on cinematic prurience of any sort, imposing restrictions that took three decades to cast off, always seemed to me a bit of an overreaction. I had always chalked it up to presentism—that because I was raised in a more permissive time, I couldn\'t put myself in the shoes of a 1930s viewer no matter how hard I tried. But if <i>Maniac</i> is any indication of the kinds of films that made it onto less-reputable movie screens, I can understand why people were so upset.</p>\r\n<p>The story, if I may call it that, involves a master of disguise named Maxwell (Bill Woods) on the run from the law who takes a gig as the assistant to the mad Dr. Meirschultz (Horace Carpenter) who\'s working on a serum that will raise the dead. Yes, I sort of wondered about all that too, but let\'s just go with it. The doctor and Maxwell sneak into a morgue and use the serum successfully on a beautiful female corpse, but that\'s not enough for Dr. Crazy. He insists that Maxwell commit suicide so that the doctor can give him a new heart and then revive him. Maxwell wisely shoots his boss, and then unwisely disguises himself as the doctor. Things start to really go wrong when he starts treating patients, and even worse when his buxom ex-wife shows up with news that Maxwell has inherited a bundle. What\'s a crook disguised as a mad doctor going to do in this situation except go mad himself?</p>\r\n<p>Although the film features silent-movie-style intertitles about mental illness in an effort to pass itself off as educational, it\'s more interested in violence and women in various states of undress. There\'s an extended sorority room scene that exists only to provide recently bathed young gals in their undies, exchanging double-entendre-laden dialogue that sometimes lacks the second entendre. After Maxwell injects one of his patients with some random potion, the patient gives the single greatest, most awful interpretation of going insane in the history of the movies—then he runs around ripping off ladies\' tops, revealing their breasts over and over. Phyllis Diller is in there (clothed!) as the patient\'s wife, and she has some kind of scheme up her sleeve that never really made sense.</p>\r\n<p>I felt like the film history version of Joe Bob Briggs watching <i>Maniac</i>, counting outrages and nipples (I lost count of both), swept away by its depravity and then shocked back into the present by its cheapness. One example: it\'s clear that when Maxwell squeezes out a cat\'s eye and then eats it, he\'s not really squeezing out its eye, but instead the filmmakers seem to have put a glass bead into the empty eye socket of a one-eyed cat; then, in a different shot, Maxwell eats a grape or something and chortles about how it\'s like eating an oyster or a grape. But dear god, the filmmakers put a glass bead into the empty eye socket of a one-eyed cat, and had their character pretend to eat it. That\'s a level of dedication that I just have to respect, even though, if I believed in hell, I\'d guess the filmmakers were there right now for the crimes they committed against good taste and the animal kingdom with this film. I heartily recommend watching it.</p>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Maniac (1934)','','publish','closed','closed','','maniac-1934','','','2019-07-24 23:19:39','2019-07-24 23:19:39','',0,'http://itcamefrombeyondpulp.com/?p=157',0,'post','',0),(231,1,'2019-07-24 23:19:54','2019-07-24 23:19:54','[et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" custom_padding=\"0px|||||\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" custom_margin=\"||11px|||\" next_background_color=\"#000000\" template_type=\"section\"][et_pb_row custom_padding=\"0px||0px|||\" custom_margin=\"|auto|-66px|auto||\" _builder_version=\"3.26.3\"][et_pb_column type=\"4_4\" _builder_version=\"3.26.3\"][et_pb_image src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/header.jpg\" url=\"http://itcamefrombeyondpulp.com\" _builder_version=\"3.26.3\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" /][/et_pb_column][/et_pb_row][/et_pb_section]','header','','inherit','closed','closed','','74-revision-v1','','','2019-07-24 23:19:54','2019-07-24 23:19:54','',74,'http://itcamefrombeyondpulp.com/uncategorized/74-revision-v1/',0,'revision','',0),(232,1,'2019-07-24 23:20:19','2019-07-24 23:20:19','[et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" custom_padding=\"0px|||||\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" custom_margin=\"||11px|||\" next_background_color=\"#e02b20\" template_type=\"section\"][et_pb_row custom_padding=\"0px||0px|||\" custom_margin=\"|auto|-66px|auto||\" _builder_version=\"3.26.3\"][et_pb_column type=\"4_4\" _builder_version=\"3.26.3\"][et_pb_image src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/header.jpg\" url=\"http://itcamefrombeyondpulp.com\" _builder_version=\"3.26.3\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" /][/et_pb_column][/et_pb_row][/et_pb_section]','header','','inherit','closed','closed','','74-revision-v1','','','2019-07-24 23:20:19','2019-07-24 23:20:19','',74,'http://itcamefrombeyondpulp.com/uncategorized/74-revision-v1/',0,'revision','',0),(159,1,'2019-07-24 02:20:21','2019-07-24 02:20:21','','maniac','','inherit','closed','closed','','maniac','','','2019-07-24 02:20:21','2019-07-24 02:20:21','',157,'http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/maniac.jpg',0,'attachment','image/jpeg',0),(230,1,'2019-07-24 23:19:39','2019-07-24 23:19:39','[et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" custom_padding=\"0px|||||\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" custom_margin=\"||11px|||\" next_background_color=\"#000000\" global_module=\"74\"][et_pb_row global_parent=\"74\" custom_padding=\"0px||0px|||\" custom_margin=\"|auto|-66px|auto||\" _builder_version=\"3.26.3\"][et_pb_column type=\"4_4\" global_parent=\"74\" _builder_version=\"3.26.3\"][et_pb_image global_parent=\"74\" src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/header.jpg\" url=\"http://itcamefrombeyondpulp.com\" _builder_version=\"3.26.3\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.26.3\" width=\"1080px\" inner_module_alignment=\"center\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" module_alignment=\"center\" custom_padding=\"0px||0px||false|false\" next_background_color=\"#e02b20\" global_module=\"175\" prev_background_color=\"#000000\"][et_pb_fullwidth_menu global_parent=\"175\" menu_id=\"2\" submenu_direction=\"downwards\" fullwidth_menu=\"off\" dropdown_menu_text_color=\"#ffffff\" _builder_version=\"3.26.3\" menu_font=\"|800||on|||||\" menu_text_color=\"#ffffff\" menu_font_size=\"22px\" menu_letter_spacing=\"5px\" background_color=\"#e02b20\" border_width_bottom=\"5px\" text_orientation=\"center\" background_layout=\"dark\" custom_padding=\"1px||0px||false|false\" z_index_tablet=\"500\" menu_text_shadow_horizontal_length_tablet=\"0px\" menu_text_shadow_vertical_length_tablet=\"0px\" menu_text_shadow_blur_strength_tablet=\"1px\" border_width_bottom_tablet=\"5px\" border_width_bottom_phone=\"5px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" custom_margin=\"0px||||false|false\" /][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" background_color=\"#e02b20\" width=\"1080px\" module_alignment=\"center\" custom_padding=\"10px||0px|||\" prev_background_color=\"#ffffff\"][et_pb_row _builder_version=\"3.26.3\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" background_color=\"#ffffff\" custom_padding=\"10px|10px||10px|false|false\" border_width_bottom=\"5px\" border_color_bottom=\"#e02b20\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image _builder_version=\"3.26.3\" src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/maniac.jpg\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\" /][et_pb_text _builder_version=\"3.26.3\" z_index_tablet=\"500\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" text_text_shadow_horizontal_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_vertical_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_blur_strength=\"text_text_shadow_style,%91object Object%93\" link_text_shadow_horizontal_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_vertical_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_blur_strength=\"link_text_shadow_style,%91object Object%93\" ul_text_shadow_horizontal_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_vertical_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_blur_strength=\"ul_text_shadow_style,%91object Object%93\" ol_text_shadow_horizontal_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_vertical_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_blur_strength=\"ol_text_shadow_style,%91object Object%93\" quote_text_shadow_horizontal_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_vertical_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_blur_strength=\"quote_text_shadow_style,%91object Object%93\" header_text_shadow_horizontal_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_vertical_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_blur_strength=\"header_text_shadow_style,%91object Object%93\" header_2_text_shadow_horizontal_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_vertical_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_blur_strength=\"header_2_text_shadow_style,%91object Object%93\" header_3_text_shadow_horizontal_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_vertical_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_blur_strength=\"header_3_text_shadow_style,%91object Object%93\" header_4_text_shadow_horizontal_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_vertical_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_blur_strength=\"header_4_text_shadow_style,%91object Object%93\" header_5_text_shadow_horizontal_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_vertical_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_blur_strength=\"header_5_text_shadow_style,%91object Object%93\" header_6_text_shadow_horizontal_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_vertical_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_blur_strength=\"header_6_text_shadow_style,%91object Object%93\"]\r\n\r\n<h3 style=\"text-align: center;\"><strong><em>Maniac</em> (Dwain Esper, 1934, 51 min.)</strong></h3>\r\n<p>I ordinarily don\'t believe in \"so bad it\'s good.\" Most films that are lauded as classics of camp, pinnacles of putrescence, and groundbreakers of godawfulness are simply not worth watching. Certainly it\'s possible to have a good time laughing at a truly awful film, but that\'s time better spent watching something worthwhile. I program a series of schlocky 1950s and 1960s horror and sci-fi film, but I wouldn\'t show them if I didn\'t see anything of value in them.</p>\r\n<p>Which makes the 1934 exploitation film <i>Maniac</i> such a shock, for it is a truly wretched film that I enjoyed, partly because of and partly in spite of its excessive excrescence. It\'s a nasty little film aimed at the lowest, most prurient denominator, but it achieves its goals with such aplomb that I couldn\'t help but applaud it. You can almost see husband-and-wife team Dwain and Hildagarde Esper cackling to themselves in front of a large chalkboard, doing lines of coke off the asses of shackled sex slaves and shouting out depravities to include in their filth-fest.</p>\r\n<p>Its release is of historical note, too, as it helped me understand a little better what the Catholic Legion of Decency and other pro-censorship groups were so upset about by 1934, when the infamous Hayes Code was implemented. The harsh crackdown on cinematic prurience of any sort, imposing restrictions that took three decades to cast off, always seemed to me a bit of an overreaction. I had always chalked it up to presentism—that because I was raised in a more permissive time, I couldn\'t put myself in the shoes of a 1930s viewer no matter how hard I tried. But if <i>Maniac</i> is any indication of the kinds of films that made it onto less-reputable movie screens, I can understand why people were so upset.</p>\r\n<p>The story, if I may call it that, involves a master of disguise named Maxwell (Bill Woods) on the run from the law who takes a gig as the assistant to the mad Dr. Meirschultz (Horace Carpenter) who\'s working on a serum that will raise the dead. Yes, I sort of wondered about all that too, but let\'s just go with it. The doctor and Maxwell sneak into a morgue and use the serum successfully on a beautiful female corpse, but that\'s not enough for Dr. Crazy. He insists that Maxwell commit suicide so that the doctor can give him a new heart and then revive him. Maxwell wisely shoots his boss, and then unwisely disguises himself as the doctor. Things start to really go wrong when he starts treating patients, and even worse when his buxom ex-wife shows up with news that Maxwell has inherited a bundle. What\'s a crook disguised as a mad doctor going to do in this situation except go mad himself?</p>\r\n<p>Although the film features silent-movie-style intertitles about mental illness in an effort to pass itself off as educational, it\'s more interested in violence and women in various states of undress. There\'s an extended sorority room scene that exists only to provide recently bathed young gals in their undies, exchanging double-entendre-laden dialogue that sometimes lacks the second entendre. After Maxwell injects one of his patients with some random potion, the patient gives the single greatest, most awful interpretation of going insane in the history of the movies—then he runs around ripping off ladies\' tops, revealing their breasts over and over. Phyllis Diller is in there (clothed!) as the patient\'s wife, and she has some kind of scheme up her sleeve that never really made sense.</p>\r\n<p>I felt like the film history version of Joe Bob Briggs watching <i>Maniac</i>, counting outrages and nipples (I lost count of both), swept away by its depravity and then shocked back into the present by its cheapness. One example: it\'s clear that when Maxwell squeezes out a cat\'s eye and then eats it, he\'s not really squeezing out its eye, but instead the filmmakers seem to have put a glass bead into the empty eye socket of a one-eyed cat; then, in a different shot, Maxwell eats a grape or something and chortles about how it\'s like eating an oyster or a grape. But dear god, the filmmakers put a glass bead into the empty eye socket of a one-eyed cat, and had their character pretend to eat it. That\'s a level of dedication that I just have to respect, even though, if I believed in hell, I\'d guess the filmmakers were there right now for the crimes they committed against good taste and the animal kingdom with this film. I heartily recommend watching it.</p>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Maniac (1934)','','inherit','closed','closed','','157-revision-v1','','','2019-07-24 23:19:39','2019-07-24 23:19:39','',157,'http://itcamefrombeyondpulp.com/uncategorized/157-revision-v1/',0,'revision','',0),(160,1,'2019-07-24 02:20:56','2019-07-24 02:20:56','[et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" custom_padding=\"0px|||||\" next_background_color=\"#e02b20\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\" global_module=\"74\"][et_pb_row global_parent=\"74\" custom_padding=\"0px||0px|||\" custom_margin=\"|auto|-66px|auto||\" _builder_version=\"3.26.3\"][et_pb_column type=\"4_4\" global_parent=\"74\" _builder_version=\"3.26.3\"][et_pb_image global_parent=\"74\" src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/itfbp-header.jpg\" _builder_version=\"3.26.3\" url=\"http://itcamefrombeyondpulp.com\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" background_color=\"#e02b20\" width=\"1080px\" module_alignment=\"center\" custom_padding=\"10px||0px|||\" border_width_bottom=\"5px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\" border_width_bottom_tablet=\"5px\" border_width_bottom_phone=\"5px\" global_module=\"97\" prev_background_color=\"#ffffff\" next_background_color=\"#000000\"][et_pb_row global_parent=\"97\" column_structure=\"1_3,1_3,1_3\" custom_padding=\"0px|0px|0px|0px\" custom_margin=\"0px|0px|0px|0px\" _builder_version=\"3.26.3\" min_height=\"0px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\" module_alignment=\"center\"][et_pb_column type=\"1_3\" global_parent=\"97\" _builder_version=\"3.26.3\"][et_pb_text global_parent=\"97\" _builder_version=\"3.26.3\" header_text_color=\"#ffffff\" z_index_tablet=\"500\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" text_text_shadow_horizontal_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_vertical_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_blur_strength=\"text_text_shadow_style,%91object Object%93\" link_text_shadow_horizontal_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_vertical_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_blur_strength=\"link_text_shadow_style,%91object Object%93\" ul_text_shadow_horizontal_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_vertical_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_blur_strength=\"ul_text_shadow_style,%91object Object%93\" ol_text_shadow_horizontal_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_vertical_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_blur_strength=\"ol_text_shadow_style,%91object Object%93\" quote_text_shadow_horizontal_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_vertical_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_blur_strength=\"quote_text_shadow_style,%91object Object%93\" header_text_shadow_horizontal_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_vertical_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_blur_strength=\"header_text_shadow_style,%91object Object%93\" header_2_text_shadow_horizontal_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_vertical_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_blur_strength=\"header_2_text_shadow_style,%91object Object%93\" header_3_text_shadow_horizontal_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_vertical_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_blur_strength=\"header_3_text_shadow_style,%91object Object%93\" header_4_text_shadow_horizontal_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_vertical_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_blur_strength=\"header_4_text_shadow_style,%91object Object%93\" header_5_text_shadow_horizontal_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_vertical_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_blur_strength=\"header_5_text_shadow_style,%91object Object%93\" header_6_text_shadow_horizontal_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_vertical_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_blur_strength=\"header_6_text_shadow_style,%91object Object%93\"]\r\n\r\n</p>\r\n<h1 style=\"text-align: center;\"><a href=\"http://itcamefrombeyondpulp.com/movies/\"><strong>MOVIES &amp; TV</strong></a></h1>\r\n<p>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" global_parent=\"97\" _builder_version=\"3.26.3\"][et_pb_text global_parent=\"97\" _builder_version=\"3.26.3\" header_text_color=\"#ffffff\" z_index_tablet=\"500\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" text_text_shadow_horizontal_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_vertical_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_blur_strength=\"text_text_shadow_style,%91object Object%93\" link_text_shadow_horizontal_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_vertical_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_blur_strength=\"link_text_shadow_style,%91object Object%93\" ul_text_shadow_horizontal_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_vertical_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_blur_strength=\"ul_text_shadow_style,%91object Object%93\" ol_text_shadow_horizontal_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_vertical_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_blur_strength=\"ol_text_shadow_style,%91object Object%93\" quote_text_shadow_horizontal_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_vertical_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_blur_strength=\"quote_text_shadow_style,%91object Object%93\" header_text_shadow_horizontal_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_vertical_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_blur_strength=\"header_text_shadow_style,%91object Object%93\" header_2_text_shadow_horizontal_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_vertical_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_blur_strength=\"header_2_text_shadow_style,%91object Object%93\" header_3_text_shadow_horizontal_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_vertical_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_blur_strength=\"header_3_text_shadow_style,%91object Object%93\" header_4_text_shadow_horizontal_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_vertical_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_blur_strength=\"header_4_text_shadow_style,%91object Object%93\" header_5_text_shadow_horizontal_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_vertical_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_blur_strength=\"header_5_text_shadow_style,%91object Object%93\" header_6_text_shadow_horizontal_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_vertical_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_blur_strength=\"header_6_text_shadow_style,%91object Object%93\"]\r\n\r\n</p>\r\n<h1 style=\"text-align: center;\"><a href=\"http://itcamefrombeyondpulp.com/books/\"><strong>BOOKS</strong></a></h1>\r\n<p>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" global_parent=\"97\" _builder_version=\"3.26.3\"][et_pb_text global_parent=\"97\" _builder_version=\"3.26.3\" header_text_color=\"#ffffff\" z_index_tablet=\"500\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" text_text_shadow_horizontal_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_vertical_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_blur_strength=\"text_text_shadow_style,%91object Object%93\" link_text_shadow_horizontal_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_vertical_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_blur_strength=\"link_text_shadow_style,%91object Object%93\" ul_text_shadow_horizontal_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_vertical_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_blur_strength=\"ul_text_shadow_style,%91object Object%93\" ol_text_shadow_horizontal_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_vertical_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_blur_strength=\"ol_text_shadow_style,%91object Object%93\" quote_text_shadow_horizontal_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_vertical_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_blur_strength=\"quote_text_shadow_style,%91object Object%93\" header_text_shadow_horizontal_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_vertical_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_blur_strength=\"header_text_shadow_style,%91object Object%93\" header_2_text_shadow_horizontal_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_vertical_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_blur_strength=\"header_2_text_shadow_style,%91object Object%93\" header_3_text_shadow_horizontal_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_vertical_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_blur_strength=\"header_3_text_shadow_style,%91object Object%93\" header_4_text_shadow_horizontal_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_vertical_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_blur_strength=\"header_4_text_shadow_style,%91object Object%93\" header_5_text_shadow_horizontal_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_vertical_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_blur_strength=\"header_5_text_shadow_style,%91object Object%93\" header_6_text_shadow_horizontal_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_vertical_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_blur_strength=\"header_6_text_shadow_style,%91object Object%93\"]\r\n\r\n</p>\r\n<h1 style=\"text-align: center;\"><a href=\"http://itcamefrombeyondpulp.com/sales/\"><strong>SALES</strong></a></h1>\r\n<p>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" background_color=\"#e02b20\" width=\"1080px\" module_alignment=\"center\" custom_padding=\"10px||0px|||\" prev_background_color=\"#000000\"][et_pb_row _builder_version=\"3.26.3\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" background_color=\"#ffffff\" custom_padding=\"10px|10px||10px|false|false\" border_width_bottom=\"5px\" border_color_bottom=\"#e02b20\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image _builder_version=\"3.26.3\" src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/maniac.jpg\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\" /][et_pb_text _builder_version=\"3.26.3\" z_index_tablet=\"500\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" text_text_shadow_horizontal_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_vertical_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_blur_strength=\"text_text_shadow_style,%91object Object%93\" link_text_shadow_horizontal_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_vertical_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_blur_strength=\"link_text_shadow_style,%91object Object%93\" ul_text_shadow_horizontal_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_vertical_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_blur_strength=\"ul_text_shadow_style,%91object Object%93\" ol_text_shadow_horizontal_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_vertical_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_blur_strength=\"ol_text_shadow_style,%91object Object%93\" quote_text_shadow_horizontal_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_vertical_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_blur_strength=\"quote_text_shadow_style,%91object Object%93\" header_text_shadow_horizontal_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_vertical_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_blur_strength=\"header_text_shadow_style,%91object Object%93\" header_2_text_shadow_horizontal_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_vertical_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_blur_strength=\"header_2_text_shadow_style,%91object Object%93\" header_3_text_shadow_horizontal_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_vertical_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_blur_strength=\"header_3_text_shadow_style,%91object Object%93\" header_4_text_shadow_horizontal_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_vertical_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_blur_strength=\"header_4_text_shadow_style,%91object Object%93\" header_5_text_shadow_horizontal_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_vertical_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_blur_strength=\"header_5_text_shadow_style,%91object Object%93\" header_6_text_shadow_horizontal_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_vertical_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_blur_strength=\"header_6_text_shadow_style,%91object Object%93\"]\r\n\r\n<h3 style=\"text-align: center;\"><strong><em>Maniac</em> (Dwain Esper, 1934, 51 min.)</strong></h3><p>I ordinarily don\'t believe in \"so bad it\'s good.\" Most films that are lauded as classics of camp, pinnacles of putrescence, and groundbreakers of godawfulness are simply not worth watching. Certainly it\'s possible to have a good time laughing at a truly awful film, but that\'s time better spent watching something worthwhile. I program a series of schlocky 1950s and 1960s horror and sci-fi film, but I wouldn\'t show them if I didn\'t see anything of value in them.</p><p>Which makes the 1934 exploitation film <i>Maniac</i> such a shock, for it is a truly wretched film that I enjoyed, partly because of and partly in spite of its excessive excrescence. It\'s a nasty little film aimed at the lowest, most prurient denominator, but it achieves its goals with such aplomb that I couldn\'t help but applaud it. You can almost see husband-and-wife team Dwain and Hildagarde Esper cackling to themselves in front of a large chalkboard, doing lines of coke off the asses of shackled sex slaves and shouting out depravities to include in their filth-fest.</p><p>Its release is of historical note, too, as it helped me understand a little better what the Catholic Legion of Decency and other pro-censorship groups were so upset about by 1934, when the infamous Hayes Code was implemented. The harsh crackdown on cinematic prurience of any sort, imposing restrictions that took three decades to cast off, always seemed to me a bit of an overreaction. I had always chalked it up to presentism—that because I was raised in a more permissive time, I couldn\'t put myself in the shoes of a 1930s viewer no matter how hard I tried. But if <i>Maniac</i> is any indication of the kinds of films that made it onto less-reputable movie screens, I can understand why people were so upset.</p><p>The story, if I may call it that, involves a master of disguise named Maxwell (Bill Woods) on the run from the law who takes a gig as the assistant to the mad Dr. Meirschultz (Horace Carpenter) who\'s working on a serum that will raise the dead. Yes, I sort of wondered about all that too, but let\'s just go with it. The doctor and Maxwell sneak into a morgue and use the serum successfully on a beautiful female corpse, but that\'s not enough for Dr. Crazy. He insists that Maxwell commit suicide so that the doctor can give him a new heart and then revive him. Maxwell wisely shoots his boss, and then unwisely disguises himself as the doctor. Things start to really go wrong when he starts treating patients, and even worse when his buxom ex-wife shows up with news that Maxwell has inherited a bundle. What\'s a crook disguised as a mad doctor going to do in this situation except go mad himself?</p><p>Although the film features silent-movie-style intertitles about mental illness in an effort to pass itself off as educational, it\'s more interested in violence and women in various states of undress. There\'s an extended sorority room scene that exists only to provide recently bathed young gals in their undies, exchanging double-entendre-laden dialogue that sometimes lacks the second entendre. After Maxwell injects one of his patients with some random potion, the patient gives the single greatest, most awful interpretation of going insane in the history of the movies—then he runs around ripping off ladies\' tops, revealing their breasts over and over. Phyllis Diller is in there (clothed!) as the patient\'s wife, and she has some kind of scheme up her sleeve that never really made sense.</p><p>I felt like the film history version of Joe Bob Briggs watching <i>Maniac</i>, counting outrages and nipples (I lost count of both), swept away by its depravity and then shocked back into the present by its cheapness. One example: it\'s clear that when Maxwell squeezes out a cat\'s eye and then eats it, he\'s not really squeezing out its eye, but instead the filmmakers seem to have put a glass bead into the empty eye socket of a one-eyed cat; then, in a different shot, Maxwell eats a grape or something and chortles about how it\'s like eating an oyster or a grape. But dear god, the filmmakers put a glass bead into the empty eye socket of a one-eyed cat, and had their character pretend to eat it. That\'s a level of dedication that I just have to respect, even though, if I believed in hell, I\'d guess the filmmakers were there right now for the crimes they committed against good taste and the animal kingdom with this film. I heartily recommend watching it.</p>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Maniac (1934)','','inherit','closed','closed','','157-revision-v1','','','2019-07-24 02:20:56','2019-07-24 02:20:56','',157,'http://itcamefrombeyondpulp.com/uncategorized/157-revision-v1/',0,'revision','',0),(161,1,'2019-07-24 02:31:49','2019-07-24 02:31:49','[et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" custom_padding=\"0px|||||\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" custom_margin=\"||11px|||\" next_background_color=\"#000000\" global_module=\"74\"][et_pb_row global_parent=\"74\" custom_padding=\"0px||0px|||\" custom_margin=\"|auto|-66px|auto||\" _builder_version=\"3.26.3\"][et_pb_column type=\"4_4\" global_parent=\"74\" _builder_version=\"3.26.3\"][et_pb_image global_parent=\"74\" src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/header.jpg\" url=\"http://itcamefrombeyondpulp.com\" _builder_version=\"3.26.3\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.26.3\" width=\"1080px\" inner_module_alignment=\"center\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" module_alignment=\"center\" custom_padding=\"0px||0px||false|false\" next_background_color=\"#e02b20\" global_module=\"175\" prev_background_color=\"#000000\"][et_pb_fullwidth_menu global_parent=\"175\" menu_id=\"2\" submenu_direction=\"downwards\" fullwidth_menu=\"off\" dropdown_menu_text_color=\"#ffffff\" _builder_version=\"3.26.3\" menu_font=\"|800||on|||||\" menu_text_color=\"#ffffff\" menu_font_size=\"22px\" menu_letter_spacing=\"5px\" background_color=\"#e02b20\" border_width_bottom=\"5px\" text_orientation=\"center\" background_layout=\"dark\" custom_padding=\"1px||0px||false|false\" z_index_tablet=\"500\" menu_text_shadow_horizontal_length_tablet=\"0px\" menu_text_shadow_vertical_length_tablet=\"0px\" menu_text_shadow_blur_strength_tablet=\"1px\" border_width_bottom_tablet=\"5px\" border_width_bottom_phone=\"5px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" custom_margin=\"0px||||false|false\" /][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" background_color=\"#e02b20\" width=\"1080px\" module_alignment=\"center\" custom_padding=\"10px||0px|||\" prev_background_color=\"#ffffff\"][et_pb_row _builder_version=\"3.26.3\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" background_color=\"#ffffff\" custom_padding=\"10px|10px||10px|false|false\" border_width_bottom=\"5px\" border_color_bottom=\"#e02b20\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image _builder_version=\"3.26.3\" src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/hp-sorc.jpg\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\" /][et_pb_text _builder_version=\"3.26.3\" z_index_tablet=\"500\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" text_text_shadow_horizontal_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_vertical_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_blur_strength=\"text_text_shadow_style,%91object Object%93\" link_text_shadow_horizontal_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_vertical_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_blur_strength=\"link_text_shadow_style,%91object Object%93\" ul_text_shadow_horizontal_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_vertical_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_blur_strength=\"ul_text_shadow_style,%91object Object%93\" ol_text_shadow_horizontal_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_vertical_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_blur_strength=\"ol_text_shadow_style,%91object Object%93\" quote_text_shadow_horizontal_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_vertical_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_blur_strength=\"quote_text_shadow_style,%91object Object%93\" header_text_shadow_horizontal_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_vertical_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_blur_strength=\"header_text_shadow_style,%91object Object%93\" header_2_text_shadow_horizontal_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_vertical_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_blur_strength=\"header_2_text_shadow_style,%91object Object%93\" header_3_text_shadow_horizontal_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_vertical_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_blur_strength=\"header_3_text_shadow_style,%91object Object%93\" header_4_text_shadow_horizontal_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_vertical_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_blur_strength=\"header_4_text_shadow_style,%91object Object%93\" header_5_text_shadow_horizontal_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_vertical_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_blur_strength=\"header_5_text_shadow_style,%91object Object%93\" header_6_text_shadow_horizontal_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_vertical_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_blur_strength=\"header_6_text_shadow_style,%91object Object%93\"]\r\n\r\n<h3 style=\"text-align: center;\"><strong><em>Harry Potter and the Sorcerer\'s Stone</em> (Chris Columbus, 2001, 152 min.)</strong></h3>\r\n<p>I sat watching the first installment of the <i>Harry Potter</i> franchise, mildly entertained but nagged by something that I couldn\'t figure out until nearly an hour into the film: I had already seen it, and it was better the first time. I had seen it in my head, one day just before the film was originally released in 2001; I was home sick from work, and I read a large chunk of it while soaking in a bath, and finished the rest later that day. The pages flew by, and I literally couldn\'t put it down. There\'s something about the experience of reading a really exciting page-turner that a film version, especially such a concertedly faithful adaptation as this one, can\'t reproduce. It\'s a Xerox copy of the book, and a copy is never as good as the original.</p>\r\n<p>I am not one of those people who hates movies that change books; in fact, I rather enjoy it when books I enjoy are made into movies that I enjoy for completely different reasons. Literature and film are two radically different media; things that work on the page may not work as well in the harsh \"reality\" of a more visual medium. The essential thing when adapting a beloved book is to capture the essence of what made the book great. Attempting to reproduce visually everything that happens in a book is not a good way of capturing that essence—sometimes, you lose the feel when you worry too much about the look.</p>\r\n<p>For the five or six of you who don\'t at least know the story, Harry Potter (Daniel Radcliffe) is the son of wizards who were killed by Voldemort, an evil sorcerer whose lust for power led him to kill off everyone who opposed him. He succeeded, but when he tried to kill the infant Harry, he was seemingly destroyed, the boy untouched save for a lightning-shaped scar on his forehead. He was left with his Muggle relatives (Muggles are regular people, non-wizards) the Dursleys, who are crude, selfish, and devoutly anti-magic. We catch up with Harry as he is living in the hell of suburban London, sleeping in a closet beneath the stairs while his fat cousin Dudley gets all the attention. He gets his first inkling of his magical abilities at the zoo in a funny scene that ends with Dudley trapped in the snake cage. Suddenly, letters start to arrive for him from Hogwarts Academy, the leading school for sorcerers. Despite his ornery relatives\' efforts, he is taken away by Hagrid (Robbie Coltrane), the groundskeeper for Hogwart\'s. He is introduced to his heritage as both a wizard and a hero; everyone in the magical world knows his name.</p>\r\n<p>At Hogwart\'s, he meets the core characters who will populate the novels and the films based on them. There is Ron Weasley (Rupert Grint), a poor kid with bright red hair with whom Harry quickly makes friends; Hermione (Emma Watson), a know-it-all who nonetheless befriends the two boys; and Draco Malfoy (Tom Felton), a pretty boy with a mean streak who wants to learn magic for the power he can gain from it. There are also the professors: Dumbledore (the late great Richard Harris), who runs the school and feels protective toward Harry; Snape (Alan Rickman), the head of the Slytherin house who takes an instant dislike for Harry; Quirrell (Ian Hart), a stuttering nervous wreck; and McGonagall (Maggie Smith), whose hard demeanor masks a protective streak. Harry is quickly acculturated to the world of Hogwart\'s: he learns spells and potions, discovers that he is a gifted wizard who is good at practically everything, and manages to get into trouble on a nearly daily basis. He and his friends stumble onto a mystery that involves a stone that gives eternal life, a creature that kills unicorns, a mirror that shows you what you think you want, and a mysterious trap door that guards something important enough to be watched over by Fluffy, a Cerberus-like three-headed monster.</p>\r\n<p>Of the characters, the child actors, many of them first-timers, acquitted themselves well; indeed, they looked and talked much like I imagined them. My favorite character was Hagrid, the shambling buffoon who always says more than he should; I found myself laughing and smiling every time he came onscreen. Alan Rickman was suitably snarling and evil as Snape, while Richard Harris created a majestic and kindly Dumbledore.</p>\r\n<p>I had some problems with the special effects. A lot of them weren\'t very good. Actually, I suppose they were very good, but they were too perfect, too clear: they stood out from the background as effects, not as seamlessly integrated parts of the magical world the filmmakers were trying to recreate. I was especially disappointed by the troll that attacks Hermione and the Quidditch game, which was one of the best sequences in the book because, in your imagination, the rules of gravity and space don\'t apply. Something about seeing it enacted by real people made it seem a lot like Christopher Reeve, arm extended, \"flying\" against a blue screen as <i><em>Superman</em></i>. I reserve special enmity for the Oscar-nominated score by John Williams; it was everywhere, getting in the way, trying to make us feel a certain way, wall to wall, whenever nobody was talking. It was excessive, a good example of what\'s wrong with a lot of movie music.</p>\r\n<p>I suppose that\'s the essential complaint I had with the movie. It tried so hard to be faithful to the book, to recreate exactly every character, every event, every nuance, that it shot itself in the foot because it is impossible to trump the images that readers, at least this one, get in their heads when they\'re reading a good book. In the book, during the exciting scenes, the pages flew by, as I rushed to see what was going to happen next. You can\'t do that onscreen; director Chris Columbus could only show what was there in real time, which often seemed too slow and stately. I wonder what a more imaginative director, such as Tim Burton or Terry Gilliam, might have done with the material.</p>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Harry Potter and the Sorcerer\'s Stone (2001)','','publish','closed','closed','','harry-potter-and-the-sorcerers-stone-2001','','','2019-07-24 23:18:13','2019-07-24 23:18:13','',0,'http://itcamefrombeyondpulp.com/?p=161',0,'post','',0),(162,1,'2019-07-24 02:31:03','2019-07-24 02:31:03','','MSDHAPO EC037','HARRY POTTER AND THE SORCERER\'S STONE, Daniel Radcliffe, Emma Watson, Rupert Grint, 2001','inherit','closed','closed','','msdhapo-ec037','','','2019-07-24 02:31:03','2019-07-24 02:31:03','',161,'http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/hp-sorc.jpg',0,'attachment','image/jpeg',0),(163,1,'2019-07-24 02:31:30','2019-07-24 02:31:30','','MSDHAPO EC037','HARRY POTTER AND THE SORCERER\'S STONE, Daniel Radcliffe, Emma Watson, Rupert Grint, 2001','inherit','closed','closed','','msdhapo-ec037-2','','','2019-07-24 02:31:30','2019-07-24 02:31:30','',161,'http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/hp-sorc-1.jpg',0,'attachment','image/jpeg',0),(227,1,'2019-07-24 23:18:13','2019-07-24 23:18:13','[et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" custom_padding=\"0px|||||\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" custom_margin=\"||11px|||\" next_background_color=\"#000000\" global_module=\"74\"][et_pb_row global_parent=\"74\" custom_padding=\"0px||0px|||\" custom_margin=\"|auto|-66px|auto||\" _builder_version=\"3.26.3\"][et_pb_column type=\"4_4\" global_parent=\"74\" _builder_version=\"3.26.3\"][et_pb_image global_parent=\"74\" src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/header.jpg\" url=\"http://itcamefrombeyondpulp.com\" _builder_version=\"3.26.3\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.26.3\" width=\"1080px\" inner_module_alignment=\"center\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" module_alignment=\"center\" custom_padding=\"0px||0px||false|false\" next_background_color=\"#e02b20\" global_module=\"175\" prev_background_color=\"#000000\"][et_pb_fullwidth_menu global_parent=\"175\" menu_id=\"2\" submenu_direction=\"downwards\" fullwidth_menu=\"off\" dropdown_menu_text_color=\"#ffffff\" _builder_version=\"3.26.3\" menu_font=\"|800||on|||||\" menu_text_color=\"#ffffff\" menu_font_size=\"22px\" menu_letter_spacing=\"5px\" background_color=\"#e02b20\" border_width_bottom=\"5px\" text_orientation=\"center\" background_layout=\"dark\" custom_padding=\"1px||0px||false|false\" z_index_tablet=\"500\" menu_text_shadow_horizontal_length_tablet=\"0px\" menu_text_shadow_vertical_length_tablet=\"0px\" menu_text_shadow_blur_strength_tablet=\"1px\" border_width_bottom_tablet=\"5px\" border_width_bottom_phone=\"5px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" custom_margin=\"0px||||false|false\" /][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" background_color=\"#e02b20\" width=\"1080px\" module_alignment=\"center\" custom_padding=\"10px||0px|||\" prev_background_color=\"#ffffff\"][et_pb_row _builder_version=\"3.26.3\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" background_color=\"#ffffff\" custom_padding=\"10px|10px||10px|false|false\" border_width_bottom=\"5px\" border_color_bottom=\"#e02b20\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image _builder_version=\"3.26.3\" src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/hp-sorc.jpg\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\" /][et_pb_text _builder_version=\"3.26.3\" z_index_tablet=\"500\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" text_text_shadow_horizontal_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_vertical_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_blur_strength=\"text_text_shadow_style,%91object Object%93\" link_text_shadow_horizontal_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_vertical_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_blur_strength=\"link_text_shadow_style,%91object Object%93\" ul_text_shadow_horizontal_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_vertical_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_blur_strength=\"ul_text_shadow_style,%91object Object%93\" ol_text_shadow_horizontal_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_vertical_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_blur_strength=\"ol_text_shadow_style,%91object Object%93\" quote_text_shadow_horizontal_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_vertical_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_blur_strength=\"quote_text_shadow_style,%91object Object%93\" header_text_shadow_horizontal_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_vertical_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_blur_strength=\"header_text_shadow_style,%91object Object%93\" header_2_text_shadow_horizontal_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_vertical_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_blur_strength=\"header_2_text_shadow_style,%91object Object%93\" header_3_text_shadow_horizontal_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_vertical_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_blur_strength=\"header_3_text_shadow_style,%91object Object%93\" header_4_text_shadow_horizontal_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_vertical_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_blur_strength=\"header_4_text_shadow_style,%91object Object%93\" header_5_text_shadow_horizontal_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_vertical_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_blur_strength=\"header_5_text_shadow_style,%91object Object%93\" header_6_text_shadow_horizontal_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_vertical_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_blur_strength=\"header_6_text_shadow_style,%91object Object%93\"]\r\n\r\n<h3 style=\"text-align: center;\"><strong><em>Harry Potter and the Sorcerer\'s Stone</em> (Chris Columbus, 2001, 152 min.)</strong></h3>\r\n<p>I sat watching the first installment of the <i>Harry Potter</i> franchise, mildly entertained but nagged by something that I couldn\'t figure out until nearly an hour into the film: I had already seen it, and it was better the first time. I had seen it in my head, one day just before the film was originally released in 2001; I was home sick from work, and I read a large chunk of it while soaking in a bath, and finished the rest later that day. The pages flew by, and I literally couldn\'t put it down. There\'s something about the experience of reading a really exciting page-turner that a film version, especially such a concertedly faithful adaptation as this one, can\'t reproduce. It\'s a Xerox copy of the book, and a copy is never as good as the original.</p>\r\n<p>I am not one of those people who hates movies that change books; in fact, I rather enjoy it when books I enjoy are made into movies that I enjoy for completely different reasons. Literature and film are two radically different media; things that work on the page may not work as well in the harsh \"reality\" of a more visual medium. The essential thing when adapting a beloved book is to capture the essence of what made the book great. Attempting to reproduce visually everything that happens in a book is not a good way of capturing that essence—sometimes, you lose the feel when you worry too much about the look.</p>\r\n<p>For the five or six of you who don\'t at least know the story, Harry Potter (Daniel Radcliffe) is the son of wizards who were killed by Voldemort, an evil sorcerer whose lust for power led him to kill off everyone who opposed him. He succeeded, but when he tried to kill the infant Harry, he was seemingly destroyed, the boy untouched save for a lightning-shaped scar on his forehead. He was left with his Muggle relatives (Muggles are regular people, non-wizards) the Dursleys, who are crude, selfish, and devoutly anti-magic. We catch up with Harry as he is living in the hell of suburban London, sleeping in a closet beneath the stairs while his fat cousin Dudley gets all the attention. He gets his first inkling of his magical abilities at the zoo in a funny scene that ends with Dudley trapped in the snake cage. Suddenly, letters start to arrive for him from Hogwarts Academy, the leading school for sorcerers. Despite his ornery relatives\' efforts, he is taken away by Hagrid (Robbie Coltrane), the groundskeeper for Hogwart\'s. He is introduced to his heritage as both a wizard and a hero; everyone in the magical world knows his name.</p>\r\n<p>At Hogwart\'s, he meets the core characters who will populate the novels and the films based on them. There is Ron Weasley (Rupert Grint), a poor kid with bright red hair with whom Harry quickly makes friends; Hermione (Emma Watson), a know-it-all who nonetheless befriends the two boys; and Draco Malfoy (Tom Felton), a pretty boy with a mean streak who wants to learn magic for the power he can gain from it. There are also the professors: Dumbledore (the late great Richard Harris), who runs the school and feels protective toward Harry; Snape (Alan Rickman), the head of the Slytherin house who takes an instant dislike for Harry; Quirrell (Ian Hart), a stuttering nervous wreck; and McGonagall (Maggie Smith), whose hard demeanor masks a protective streak. Harry is quickly acculturated to the world of Hogwart\'s: he learns spells and potions, discovers that he is a gifted wizard who is good at practically everything, and manages to get into trouble on a nearly daily basis. He and his friends stumble onto a mystery that involves a stone that gives eternal life, a creature that kills unicorns, a mirror that shows you what you think you want, and a mysterious trap door that guards something important enough to be watched over by Fluffy, a Cerberus-like three-headed monster.</p>\r\n<p>Of the characters, the child actors, many of them first-timers, acquitted themselves well; indeed, they looked and talked much like I imagined them. My favorite character was Hagrid, the shambling buffoon who always says more than he should; I found myself laughing and smiling every time he came onscreen. Alan Rickman was suitably snarling and evil as Snape, while Richard Harris created a majestic and kindly Dumbledore.</p>\r\n<p>I had some problems with the special effects. A lot of them weren\'t very good. Actually, I suppose they were very good, but they were too perfect, too clear: they stood out from the background as effects, not as seamlessly integrated parts of the magical world the filmmakers were trying to recreate. I was especially disappointed by the troll that attacks Hermione and the Quidditch game, which was one of the best sequences in the book because, in your imagination, the rules of gravity and space don\'t apply. Something about seeing it enacted by real people made it seem a lot like Christopher Reeve, arm extended, \"flying\" against a blue screen as <i><em>Superman</em></i>. I reserve special enmity for the Oscar-nominated score by John Williams; it was everywhere, getting in the way, trying to make us feel a certain way, wall to wall, whenever nobody was talking. It was excessive, a good example of what\'s wrong with a lot of movie music.</p>\r\n<p>I suppose that\'s the essential complaint I had with the movie. It tried so hard to be faithful to the book, to recreate exactly every character, every event, every nuance, that it shot itself in the foot because it is impossible to trump the images that readers, at least this one, get in their heads when they\'re reading a good book. In the book, during the exciting scenes, the pages flew by, as I rushed to see what was going to happen next. You can\'t do that onscreen; director Chris Columbus could only show what was there in real time, which often seemed too slow and stately. I wonder what a more imaginative director, such as Tim Burton or Terry Gilliam, might have done with the material.</p>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Harry Potter and the Sorcerer\'s Stone (2001)','','inherit','closed','closed','','161-revision-v1','','','2019-07-24 23:18:13','2019-07-24 23:18:13','',161,'http://itcamefrombeyondpulp.com/uncategorized/161-revision-v1/',0,'revision','',0),(164,1,'2019-07-24 02:31:49','2019-07-24 02:31:49','[et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" custom_padding=\"0px|||||\" next_background_color=\"#e02b20\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\" global_module=\"74\"][et_pb_row global_parent=\"74\" custom_padding=\"0px||0px|||\" custom_margin=\"|auto|-66px|auto||\" _builder_version=\"3.26.3\"][et_pb_column type=\"4_4\" global_parent=\"74\" _builder_version=\"3.26.3\"][et_pb_image global_parent=\"74\" src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/itfbp-header.jpg\" _builder_version=\"3.26.3\" url=\"http://itcamefrombeyondpulp.com\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" background_color=\"#e02b20\" width=\"1080px\" module_alignment=\"center\" custom_padding=\"10px||0px|||\" border_width_bottom=\"5px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\" border_width_bottom_tablet=\"5px\" border_width_bottom_phone=\"5px\" prev_background_color=\"#ffffff\" next_background_color=\"#000000\" global_module=\"97\"][et_pb_row global_parent=\"97\" column_structure=\"1_3,1_3,1_3\" custom_padding=\"0px|0px|0px|0px\" custom_margin=\"0px|0px|0px|0px\" _builder_version=\"3.26.3\" min_height=\"0px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\" module_alignment=\"center\"][et_pb_column type=\"1_3\" global_parent=\"97\" _builder_version=\"3.26.3\"][et_pb_text global_parent=\"97\" _builder_version=\"3.26.3\" header_text_color=\"#ffffff\" z_index_tablet=\"500\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" text_text_shadow_horizontal_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_vertical_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_blur_strength=\"text_text_shadow_style,%91object Object%93\" link_text_shadow_horizontal_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_vertical_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_blur_strength=\"link_text_shadow_style,%91object Object%93\" ul_text_shadow_horizontal_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_vertical_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_blur_strength=\"ul_text_shadow_style,%91object Object%93\" ol_text_shadow_horizontal_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_vertical_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_blur_strength=\"ol_text_shadow_style,%91object Object%93\" quote_text_shadow_horizontal_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_vertical_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_blur_strength=\"quote_text_shadow_style,%91object Object%93\" header_text_shadow_horizontal_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_vertical_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_blur_strength=\"header_text_shadow_style,%91object Object%93\" header_2_text_shadow_horizontal_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_vertical_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_blur_strength=\"header_2_text_shadow_style,%91object Object%93\" header_3_text_shadow_horizontal_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_vertical_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_blur_strength=\"header_3_text_shadow_style,%91object Object%93\" header_4_text_shadow_horizontal_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_vertical_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_blur_strength=\"header_4_text_shadow_style,%91object Object%93\" header_5_text_shadow_horizontal_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_vertical_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_blur_strength=\"header_5_text_shadow_style,%91object Object%93\" header_6_text_shadow_horizontal_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_vertical_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_blur_strength=\"header_6_text_shadow_style,%91object Object%93\"]\r\n\r\n</p>\r\n<h1 style=\"text-align: center;\"><a href=\"http://itcamefrombeyondpulp.com/movies/\"><strong>MOVIES &amp; TV</strong></a></h1>\r\n<p>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" global_parent=\"97\" _builder_version=\"3.26.3\"][et_pb_text global_parent=\"97\" _builder_version=\"3.26.3\" header_text_color=\"#ffffff\" z_index_tablet=\"500\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" text_text_shadow_horizontal_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_vertical_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_blur_strength=\"text_text_shadow_style,%91object Object%93\" link_text_shadow_horizontal_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_vertical_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_blur_strength=\"link_text_shadow_style,%91object Object%93\" ul_text_shadow_horizontal_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_vertical_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_blur_strength=\"ul_text_shadow_style,%91object Object%93\" ol_text_shadow_horizontal_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_vertical_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_blur_strength=\"ol_text_shadow_style,%91object Object%93\" quote_text_shadow_horizontal_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_vertical_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_blur_strength=\"quote_text_shadow_style,%91object Object%93\" header_text_shadow_horizontal_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_vertical_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_blur_strength=\"header_text_shadow_style,%91object Object%93\" header_2_text_shadow_horizontal_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_vertical_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_blur_strength=\"header_2_text_shadow_style,%91object Object%93\" header_3_text_shadow_horizontal_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_vertical_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_blur_strength=\"header_3_text_shadow_style,%91object Object%93\" header_4_text_shadow_horizontal_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_vertical_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_blur_strength=\"header_4_text_shadow_style,%91object Object%93\" header_5_text_shadow_horizontal_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_vertical_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_blur_strength=\"header_5_text_shadow_style,%91object Object%93\" header_6_text_shadow_horizontal_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_vertical_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_blur_strength=\"header_6_text_shadow_style,%91object Object%93\"]\r\n\r\n</p>\r\n<h1 style=\"text-align: center;\"><a href=\"http://itcamefrombeyondpulp.com/books/\"><strong>BOOKS</strong></a></h1>\r\n<p>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" global_parent=\"97\" _builder_version=\"3.26.3\"][et_pb_text global_parent=\"97\" _builder_version=\"3.26.3\" header_text_color=\"#ffffff\" z_index_tablet=\"500\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" text_text_shadow_horizontal_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_vertical_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_blur_strength=\"text_text_shadow_style,%91object Object%93\" link_text_shadow_horizontal_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_vertical_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_blur_strength=\"link_text_shadow_style,%91object Object%93\" ul_text_shadow_horizontal_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_vertical_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_blur_strength=\"ul_text_shadow_style,%91object Object%93\" ol_text_shadow_horizontal_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_vertical_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_blur_strength=\"ol_text_shadow_style,%91object Object%93\" quote_text_shadow_horizontal_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_vertical_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_blur_strength=\"quote_text_shadow_style,%91object Object%93\" header_text_shadow_horizontal_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_vertical_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_blur_strength=\"header_text_shadow_style,%91object Object%93\" header_2_text_shadow_horizontal_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_vertical_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_blur_strength=\"header_2_text_shadow_style,%91object Object%93\" header_3_text_shadow_horizontal_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_vertical_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_blur_strength=\"header_3_text_shadow_style,%91object Object%93\" header_4_text_shadow_horizontal_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_vertical_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_blur_strength=\"header_4_text_shadow_style,%91object Object%93\" header_5_text_shadow_horizontal_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_vertical_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_blur_strength=\"header_5_text_shadow_style,%91object Object%93\" header_6_text_shadow_horizontal_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_vertical_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_blur_strength=\"header_6_text_shadow_style,%91object Object%93\"]\r\n\r\n</p>\r\n<h1 style=\"text-align: center;\"><a href=\"http://itcamefrombeyondpulp.com/sales/\"><strong>SALES</strong></a></h1>\r\n<p>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" background_color=\"#e02b20\" width=\"1080px\" module_alignment=\"center\" custom_padding=\"10px||0px|||\" prev_background_color=\"#000000\"][et_pb_row _builder_version=\"3.26.3\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" background_color=\"#ffffff\" custom_padding=\"10px|10px||10px|false|false\" border_width_bottom=\"5px\" border_color_bottom=\"#e02b20\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image _builder_version=\"3.26.3\" src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/hp-sorc.jpg\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\" /][et_pb_text _builder_version=\"3.26.3\" z_index_tablet=\"500\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" text_text_shadow_horizontal_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_vertical_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_blur_strength=\"text_text_shadow_style,%91object Object%93\" link_text_shadow_horizontal_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_vertical_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_blur_strength=\"link_text_shadow_style,%91object Object%93\" ul_text_shadow_horizontal_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_vertical_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_blur_strength=\"ul_text_shadow_style,%91object Object%93\" ol_text_shadow_horizontal_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_vertical_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_blur_strength=\"ol_text_shadow_style,%91object Object%93\" quote_text_shadow_horizontal_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_vertical_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_blur_strength=\"quote_text_shadow_style,%91object Object%93\" header_text_shadow_horizontal_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_vertical_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_blur_strength=\"header_text_shadow_style,%91object Object%93\" header_2_text_shadow_horizontal_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_vertical_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_blur_strength=\"header_2_text_shadow_style,%91object Object%93\" header_3_text_shadow_horizontal_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_vertical_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_blur_strength=\"header_3_text_shadow_style,%91object Object%93\" header_4_text_shadow_horizontal_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_vertical_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_blur_strength=\"header_4_text_shadow_style,%91object Object%93\" header_5_text_shadow_horizontal_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_vertical_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_blur_strength=\"header_5_text_shadow_style,%91object Object%93\" header_6_text_shadow_horizontal_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_vertical_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_blur_strength=\"header_6_text_shadow_style,%91object Object%93\"]\r\n\r\n<h3 style=\"text-align: center;\"><strong><em>Harry Potter and the Sorcerer\'s Stone</em> (Chris Columbus, 2001, 152 min.)</strong></h3><p>I sat watching the first installment of the <i>Harry Potter</i> franchise, mildly entertained but nagged by something that I couldn\'t figure out until nearly an hour into the film: I had already seen it, and it was better the first time. I had seen it in my head, one day just before the film was originally released in 2001; I was home sick from work, and I read a large chunk of it while soaking in a bath, and finished the rest later that day. The pages flew by, and I literally couldn\'t put it down. There\'s something about the experience of reading a really exciting page-turner that a film version, especially such a concertedly faithful adaptation as this one, can\'t reproduce. It\'s a Xerox copy of the book, and a copy is never as good as the original.</p><p>I am not one of those people who hates movies that change books; in fact, I rather enjoy it when books I enjoy are made into movies that I enjoy for completely different reasons. Literature and film are two radically different media; things that work on the page may not work as well in the harsh \"reality\" of a more visual medium. The essential thing when adapting a beloved book is to capture the essence of what made the book great. Attempting to reproduce visually everything that happens in a book is not a good way of capturing that essence—sometimes, you lose the feel when you worry too much about the look.</p><p>For the five or six of you who don\'t at least know the story, Harry Potter (Daniel Radcliffe) is the son of wizards who were killed by Voldemort, an evil sorcerer whose lust for power led him to kill off everyone who opposed him. He succeeded, but when he tried to kill the infant Harry, he was seemingly destroyed, the boy untouched save for a lightning-shaped scar on his forehead. He was left with his Muggle relatives (Muggles are regular people, non-wizards) the Dursleys, who are crude, selfish, and devoutly anti-magic. We catch up with Harry as he is living in the hell of suburban London, sleeping in a closet beneath the stairs while his fat cousin Dudley gets all the attention. He gets his first inkling of his magical abilities at the zoo in a funny scene that ends with Dudley trapped in the snake cage. Suddenly, letters start to arrive for him from Hogwarts Academy, the leading school for sorcerers. Despite his ornery relatives\' efforts, he is taken away by Hagrid (Robbie Coltrane), the groundskeeper for Hogwart\'s. He is introduced to his heritage as both a wizard and a hero; everyone in the magical world knows his name.</p><p>At Hogwart\'s, he meets the core characters who will populate the novels and the films based on them. There is Ron Weasley (Rupert Grint), a poor kid with bright red hair with whom Harry quickly makes friends; Hermione (Emma Watson), a know-it-all who nonetheless befriends the two boys; and Draco Malfoy (Tom Felton), a pretty boy with a mean streak who wants to learn magic for the power he can gain from it. There are also the professors: Dumbledore (the late great Richard Harris), who runs the school and feels protective toward Harry; Snape (Alan Rickman), the head of the Slytherin house who takes an instant dislike for Harry; Quirrell (Ian Hart), a stuttering nervous wreck; and McGonagall (Maggie Smith), whose hard demeanor masks a protective streak. Harry is quickly acculturated to the world of Hogwart\'s: he learns spells and potions, discovers that he is a gifted wizard who is good at practically everything, and manages to get into trouble on a nearly daily basis. He and his friends stumble onto a mystery that involves a stone that gives eternal life, a creature that kills unicorns, a mirror that shows you what you think you want, and a mysterious trap door that guards something important enough to be watched over by Fluffy, a Cerberus-like three-headed monster.</p><p>Of the characters, the child actors, many of them first-timers, acquitted themselves well; indeed, they looked and talked much like I imagined them. My favorite character was Hagrid, the shambling buffoon who always says more than he should; I found myself laughing and smiling every time he came onscreen. Alan Rickman was suitably snarling and evil as Snape, while Richard Harris created a majestic and kindly Dumbledore.</p><p>I had some problems with the special effects. A lot of them weren\'t very good. Actually, I suppose they were very good, but they were too perfect, too clear: they stood out from the background as effects, not as seamlessly integrated parts of the magical world the filmmakers were trying to recreate. I was especially disappointed by the troll that attacks Hermione and the Quidditch game, which was one of the best sequences in the book because, in your imagination, the rules of gravity and space don\'t apply. Something about seeing it enacted by real people made it seem a lot like Christopher Reeve, arm extended, \"flying\" against a blue screen as <i><em>Superman</em></i>. I reserve special enmity for the Oscar-nominated score by John Williams; it was everywhere, getting in the way, trying to make us feel a certain way, wall to wall, whenever nobody was talking. It was excessive, a good example of what\'s wrong with a lot of movie music.</p><p>I suppose that\'s the essential complaint I had with the movie. It tried so hard to be faithful to the book, to recreate exactly every character, every event, every nuance, that it shot itself in the foot because it is impossible to trump the images that readers, at least this one, get in their heads when they\'re reading a good book. In the book, during the exciting scenes, the pages flew by, as I rushed to see what was going to happen next. You can\'t do that onscreen; director Chris Columbus could only show what was there in real time, which often seemed too slow and stately. I wonder what a more imaginative director, such as Tim Burton or Terry Gilliam, might have done with the material.</p>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Harry Potter and the Sorcerer\'s Stone (2001)','','inherit','closed','closed','','161-revision-v1','','','2019-07-24 02:31:49','2019-07-24 02:31:49','',161,'http://itcamefrombeyondpulp.com/uncategorized/161-revision-v1/',0,'revision','',0),(165,1,'2019-07-24 02:36:27','2019-07-24 02:36:27','[et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" custom_padding=\"0px|||||\" next_background_color=\"#e02b20\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\" global_module=\"74\"][et_pb_row global_parent=\"74\" custom_padding=\"0px||0px|||\" custom_margin=\"|auto|-66px|auto||\" _builder_version=\"3.26.3\"][et_pb_column type=\"4_4\" global_parent=\"74\" _builder_version=\"3.26.3\"][et_pb_image global_parent=\"74\" src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/itfbp-header.jpg\" _builder_version=\"3.26.3\" url=\"http://itcamefrombeyondpulp.com\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" background_color=\"#e02b20\" width=\"1080px\" module_alignment=\"center\" custom_padding=\"10px||0px|||\" border_width_bottom=\"5px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\" border_width_bottom_tablet=\"5px\" border_width_bottom_phone=\"5px\" prev_background_color=\"#ffffff\" next_background_color=\"#000000\" global_module=\"97\"][et_pb_row global_parent=\"97\" column_structure=\"1_3,1_3,1_3\" custom_padding=\"0px|0px|0px|0px\" custom_margin=\"0px|0px|0px|0px\" _builder_version=\"3.26.3\" min_height=\"0px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\" module_alignment=\"center\"][et_pb_column type=\"1_3\" global_parent=\"97\" _builder_version=\"3.26.3\"][et_pb_text global_parent=\"97\" _builder_version=\"3.26.3\" header_text_color=\"#ffffff\" z_index_tablet=\"500\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" text_text_shadow_horizontal_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_vertical_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_blur_strength=\"text_text_shadow_style,%91object Object%93\" link_text_shadow_horizontal_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_vertical_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_blur_strength=\"link_text_shadow_style,%91object Object%93\" ul_text_shadow_horizontal_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_vertical_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_blur_strength=\"ul_text_shadow_style,%91object Object%93\" ol_text_shadow_horizontal_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_vertical_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_blur_strength=\"ol_text_shadow_style,%91object Object%93\" quote_text_shadow_horizontal_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_vertical_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_blur_strength=\"quote_text_shadow_style,%91object Object%93\" header_text_shadow_horizontal_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_vertical_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_blur_strength=\"header_text_shadow_style,%91object Object%93\" header_2_text_shadow_horizontal_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_vertical_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_blur_strength=\"header_2_text_shadow_style,%91object Object%93\" header_3_text_shadow_horizontal_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_vertical_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_blur_strength=\"header_3_text_shadow_style,%91object Object%93\" header_4_text_shadow_horizontal_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_vertical_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_blur_strength=\"header_4_text_shadow_style,%91object Object%93\" header_5_text_shadow_horizontal_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_vertical_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_blur_strength=\"header_5_text_shadow_style,%91object Object%93\" header_6_text_shadow_horizontal_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_vertical_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_blur_strength=\"header_6_text_shadow_style,%91object Object%93\"]\r\n\r\n</p>\r\n<h1 style=\"text-align: center;\"><a href=\"http://itcamefrombeyondpulp.com/movies/\"><strong>MOVIES &amp; TV</strong></a></h1>\r\n<p>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" global_parent=\"97\" _builder_version=\"3.26.3\"][et_pb_text global_parent=\"97\" _builder_version=\"3.26.3\" header_text_color=\"#ffffff\" z_index_tablet=\"500\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" text_text_shadow_horizontal_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_vertical_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_blur_strength=\"text_text_shadow_style,%91object Object%93\" link_text_shadow_horizontal_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_vertical_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_blur_strength=\"link_text_shadow_style,%91object Object%93\" ul_text_shadow_horizontal_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_vertical_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_blur_strength=\"ul_text_shadow_style,%91object Object%93\" ol_text_shadow_horizontal_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_vertical_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_blur_strength=\"ol_text_shadow_style,%91object Object%93\" quote_text_shadow_horizontal_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_vertical_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_blur_strength=\"quote_text_shadow_style,%91object Object%93\" header_text_shadow_horizontal_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_vertical_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_blur_strength=\"header_text_shadow_style,%91object Object%93\" header_2_text_shadow_horizontal_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_vertical_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_blur_strength=\"header_2_text_shadow_style,%91object Object%93\" header_3_text_shadow_horizontal_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_vertical_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_blur_strength=\"header_3_text_shadow_style,%91object Object%93\" header_4_text_shadow_horizontal_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_vertical_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_blur_strength=\"header_4_text_shadow_style,%91object Object%93\" header_5_text_shadow_horizontal_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_vertical_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_blur_strength=\"header_5_text_shadow_style,%91object Object%93\" header_6_text_shadow_horizontal_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_vertical_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_blur_strength=\"header_6_text_shadow_style,%91object Object%93\"]\r\n\r\n</p>\r\n<h1 style=\"text-align: center;\"><a href=\"http://itcamefrombeyondpulp.com/books/\"><strong>BOOKS</strong></a></h1>\r\n<p>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" global_parent=\"97\" _builder_version=\"3.26.3\"][et_pb_text global_parent=\"97\" _builder_version=\"3.26.3\" header_text_color=\"#ffffff\" z_index_tablet=\"500\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" text_text_shadow_horizontal_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_vertical_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_blur_strength=\"text_text_shadow_style,%91object Object%93\" link_text_shadow_horizontal_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_vertical_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_blur_strength=\"link_text_shadow_style,%91object Object%93\" ul_text_shadow_horizontal_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_vertical_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_blur_strength=\"ul_text_shadow_style,%91object Object%93\" ol_text_shadow_horizontal_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_vertical_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_blur_strength=\"ol_text_shadow_style,%91object Object%93\" quote_text_shadow_horizontal_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_vertical_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_blur_strength=\"quote_text_shadow_style,%91object Object%93\" header_text_shadow_horizontal_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_vertical_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_blur_strength=\"header_text_shadow_style,%91object Object%93\" header_2_text_shadow_horizontal_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_vertical_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_blur_strength=\"header_2_text_shadow_style,%91object Object%93\" header_3_text_shadow_horizontal_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_vertical_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_blur_strength=\"header_3_text_shadow_style,%91object Object%93\" header_4_text_shadow_horizontal_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_vertical_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_blur_strength=\"header_4_text_shadow_style,%91object Object%93\" header_5_text_shadow_horizontal_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_vertical_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_blur_strength=\"header_5_text_shadow_style,%91object Object%93\" header_6_text_shadow_horizontal_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_vertical_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_blur_strength=\"header_6_text_shadow_style,%91object Object%93\"]\r\n\r\n</p>\r\n<h1 style=\"text-align: center;\"><a href=\"http://itcamefrombeyondpulp.com/sales/\"><strong>SALES</strong></a></h1>\r\n<p>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" background_color=\"#e02b20\" width=\"1080px\" module_alignment=\"center\" custom_padding=\"10px||0px|||\" prev_background_color=\"#000000\"][et_pb_row custom_padding=\"10px|10px||\" _builder_version=\"3.26.3\" background_color=\"#ffffff\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" border_width_bottom=\"5px\" border_color_bottom=\"#e02b20\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.26.3\" text_text_shadow_horizontal_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\"]\r\n\r\n<h1 style=\"text-align: center;\">Movies &amp; TV Reviews</h1><p style=\"text-align: center;\"><strong><a href=\"http://itcamefrombeyondpulp.com/movies/children-of-men-2006/\">Children of Men (2006)</a><br /></strong><strong><a href=\"http://itcamefrombeyondpulp.com/movies/cloverfield-2008/\">Cloverfield (2008)</a><br /><a href=\"http://itcamefrombeyondpulp.com/movies/the-dark-knight-2008/\">The Dark Knight (2008)</a><br /><a href=\"http://itcamefrombeyondpulp.com/movies/the-fountain-2006/\">The Fountain (2006)</a><br /><a href=\"http://itcamefrombeyondpulp.com/movies/hardware-1990/\">Hardware (1990)</a><br /><a href=\"http://itcamefrombeyondpulp.com/movies/harry-potter-and-the-sorcerers-stone-2001/\">Harry Potter and the Sorcerer\'s Stone (2001)</a><br /><a href=\"http://itcamefrombeyondpulp.com/movies/maniac-1934/\">Maniac (1934)</a><br /></strong><a href=\"http://itcamefrombeyondpulp.com/movies/serenity-2005/\"><strong>Serenity (2005)</strong></a></p>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Movies','','inherit','closed','closed','','45-revision-v1','','','2019-07-24 02:36:27','2019-07-24 02:36:27','',45,'http://itcamefrombeyondpulp.com/uncategorized/45-revision-v1/',0,'revision','',0),(166,1,'2019-07-24 02:43:37','2019-07-24 02:43:37','[et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" custom_padding=\"0px|||||\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" custom_margin=\"||11px|||\" next_background_color=\"#000000\" global_module=\"74\"][et_pb_row global_parent=\"74\" custom_padding=\"0px||0px|||\" custom_margin=\"|auto|-66px|auto||\" _builder_version=\"3.26.3\"][et_pb_column type=\"4_4\" global_parent=\"74\" _builder_version=\"3.26.3\"][et_pb_image global_parent=\"74\" src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/header.jpg\" url=\"http://itcamefrombeyondpulp.com\" _builder_version=\"3.26.3\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.26.3\" width=\"1080px\" inner_module_alignment=\"center\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" module_alignment=\"center\" custom_padding=\"0px||0px||false|false\" next_background_color=\"#e02b20\" global_module=\"175\" prev_background_color=\"#000000\"][et_pb_fullwidth_menu global_parent=\"175\" menu_id=\"2\" submenu_direction=\"downwards\" fullwidth_menu=\"off\" dropdown_menu_text_color=\"#ffffff\" _builder_version=\"3.26.3\" menu_font=\"|800||on|||||\" menu_text_color=\"#ffffff\" menu_font_size=\"22px\" menu_letter_spacing=\"5px\" background_color=\"#e02b20\" border_width_bottom=\"5px\" text_orientation=\"center\" background_layout=\"dark\" custom_padding=\"1px||0px||false|false\" z_index_tablet=\"500\" menu_text_shadow_horizontal_length_tablet=\"0px\" menu_text_shadow_vertical_length_tablet=\"0px\" menu_text_shadow_blur_strength_tablet=\"1px\" border_width_bottom_tablet=\"5px\" border_width_bottom_phone=\"5px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" custom_margin=\"0px||||false|false\" /][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" background_color=\"#e02b20\" width=\"1080px\" module_alignment=\"center\" custom_padding=\"10px||0px|||\" prev_background_color=\"#ffffff\"][et_pb_row _builder_version=\"3.26.3\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" background_color=\"#ffffff\" custom_padding=\"10px|10px||10px|false|false\" border_width_bottom=\"5px\" border_color_bottom=\"#e02b20\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image _builder_version=\"3.26.3\" src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/hp-cham.jpg\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\" /][et_pb_text _builder_version=\"3.26.3\" z_index_tablet=\"500\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" text_text_shadow_horizontal_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_vertical_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_blur_strength=\"text_text_shadow_style,%91object Object%93\" link_text_shadow_horizontal_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_vertical_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_blur_strength=\"link_text_shadow_style,%91object Object%93\" ul_text_shadow_horizontal_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_vertical_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_blur_strength=\"ul_text_shadow_style,%91object Object%93\" ol_text_shadow_horizontal_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_vertical_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_blur_strength=\"ol_text_shadow_style,%91object Object%93\" quote_text_shadow_horizontal_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_vertical_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_blur_strength=\"quote_text_shadow_style,%91object Object%93\" header_text_shadow_horizontal_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_vertical_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_blur_strength=\"header_text_shadow_style,%91object Object%93\" header_2_text_shadow_horizontal_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_vertical_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_blur_strength=\"header_2_text_shadow_style,%91object Object%93\" header_3_text_shadow_horizontal_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_vertical_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_blur_strength=\"header_3_text_shadow_style,%91object Object%93\" header_4_text_shadow_horizontal_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_vertical_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_blur_strength=\"header_4_text_shadow_style,%91object Object%93\" header_5_text_shadow_horizontal_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_vertical_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_blur_strength=\"header_5_text_shadow_style,%91object Object%93\" header_6_text_shadow_horizontal_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_vertical_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_blur_strength=\"header_6_text_shadow_style,%91object Object%93\"]\r\n\r\n<h3 style=\"text-align: center;\"><strong><em>Harry Potter and the Chamber of Secrets</em> (Chris Columbus, 2002, 161 min.)</strong></h3>\r\n<p>Part experiment, part laziness, I went to see the second installation of the fantastically successful <i>Harry Potter</i> franchise without having read the book. Not having a control-group version of myself, however, I am unable to tell if I enjoyed this film more than the first one, <i><em>Harry Potter and the Sorcerer\'s Stone</em></i>, because it was a better movie or because I didn\'t already know everything that was going to happen, exactly as it happened. Judging from the responses of the friends with whom I saw it, I think it\'s probably a better movie, but that it too is almost completely faithful to the book, so I suppose that it\'s best that I had not yet read it. It is entirely possible to make a great movie out of a great book, or a great movie out of a mediocre book, but it\'s a difficult feat to pore through a book and cull things that won\'t work cinematically, while capturing the elusive feel of the book that is usually what readers really love, whether they can put it into words or not.</p>\r\n<p>So, having excused myself from any arguments as to whether the movie is faithful to the book or not, I can talk about whether the movie was a good movie or not. While it\'s certainly not Great Cinema, it was pretty enjoyable, if punishingly long and slow in parts; it did away with the lengthy exposition of the first movie, assuming that we already know who everyone is. How it clocked in even longer is beyond me. It moved better than the first one: there was more continuity between scenes, a sense of A following logically from B instead of feeling like a series of setpieces with little to tie them together.</p>\r\n<p>The film covers the second year for Harry (Daniel Radcliffe) and company at Hogwarts. It begins with Harry struggling to escape the clutches of his Muggle relatives, who don\'t want him to return to the academy. Other creatures want him to stay home too; Dobby, an ugly little elf that speaks in an annoying third person (\"Dobby thinks that...\" reminding me of \"Bob Dole won\'t...\"), tries his magical best to keep Harry from boarding the magical train, saying that someone wants to do him harm, although he won\'t say who. Thankfully, Ron Weasley (Rupert Grint) and his twin brothers rescue him in their flying car. Harry and Ron eventually make it to Hogwarts, but not without coming within a hair\'s breadth of getting killed or expelled. They quickly fall into old patterns: they hang out with lovely young know-it-all Hermione (Emma Watson), they commence their battle of wills with the odious Draco Malfoy (Tom Felton), who now has the support of his obviously evil father Lucius Malfoy (Jason Isaacs), and they get into trouble.</p>\r\n<p>There is trouble brewing, though: something is petrifying students, some creature that dwells in the Chamber of Secrets, a secret room hidden somewhere in the massive edifice of Hogwarts, which was created by the founder of the Slytherin house in an attempt to eliminate all \"mud-bloods\" (magicians born to Muggles) from the ranks of magicians. The suspicion as to who opened the Chamber and released, and now controls, the mysterious monster naturally falls on Harry, because he manages to be the first on the crime scene and looks suspicious, especially when it turns out he can talk to snakes in their own language. Harry, Ron, and Hermione must solve the mystery before students start getting killed; their investigation reveals deep secrets that involve the first opening of the Chamber fifty years before, a diary left by a long-forgotten student, and Hagrid (Robbie Coltrane), the lovable groundskeeper at Hogwarts.</p>\r\n<p>We have the usual crew of characters: in addition to those mentioned above, Albus Dumbledore (the late Richard Harris) is just as magisterial as he was before, although he looks a little older and more tired; Snape (Alan Rickman) is still as sneaky and dour; and McGonagall (Maggie Smith) isn\'t as confident and hard-nosed. These changes make sense, because whatever is attacking students threatens to force the closure of the school, and might mean the return of Voldemort, the evil wizard who killed Harry\'s parents and tried to come back in the first installment.</p>\r\n<p>Added to the mix are one so-so character and one unforgettable one. Miriam Margoyles plays Professor Sprout, who teaches herbology and is educating her class on the use of the mandrake root, in a scene that evokes more than a few chuckles for anyone who\'s read the John Donne poem \"Song\" (\"get with child a mandrake root\"—and I only read it because Ebert pointed out the reference). And Kenneth Branagh plays Gilderoy Lockhart, cashing in on all the scorn that British people apparently heap on him; he\'s perfect as a big-headed, self-promoting blowhard, more talk than action, who would rather sell the students copies of his autobiography than teach them Defense Against the Dark Arts, which is supposed to be his area of expertise. He\'s easily the most interesting character outside of Hagrid that the series has produced thus far.</p>\r\n<p>Since this is the second installment, we can start to judge the principal actors on the basis of their improvement from the first movie. Sadly, they are not good actors. Daniel Radcliffe is passable but somewhat wooden as Harry, Emma Watson shows promise but is a little shrill as Hermione, and Rupert Grint grates on the nerves more and more as Ron. Tom Felton as Draco Malfoy still snarls like the bad guy from a Hannah-Barbara cartoon, and I don\'t expect him to get any better as the series plows on.</p>\r\n<p>There were dramatic improvements in terms of special effects and blending the fantastic in with the real world. Gone are the too-perfect CGI effects of part 1; the digital elf Dobby looks great, the Quidditch game (which is exciting but goes on way too long and resembles nothing else but the extraneous pod-racing scene from <i>Star Wars: Episode 1</i>) now looks like it\'s real people in real danger, and the capstone effect, which inhabits the last quarter of the film (I don\'t want to give it away to those four or five other people who haven\'t read the book), is terrifyingly good.</p>\r\n<p>Despite the improvements, though, you still have to contend with the stately, respectful pace, which sometimes takes the enjoyment out of scenes that seem like they should have been more fun. The writer and director have not changed; Chris Columbus still doesn\'t seem to have a firm grasp of the frantic joy of the books, and writer Steve Kloves seems like he is still happy to simply reproduce page after page accurately and antiseptically. The score by John Williams is just as overpowering as in the first one. The addition of cinematographer Roger Pratt (of <i><em>12 Monkeys</em></i> and <i><em>Batman</em></i> fame) is a plus; perhaps he was behind the more seamless blending of the CGI with the real-life, and Hogwarts looks even more imposing and labyrinthine than before. But despite all of this, Alfonso Cuaron blew this film, and indeed the rest of the interminable series, out of the water with his <em>Harry Potter and the Prisoner of Azkaban</em>, because he is a better filmmaker than any of the others who tackled these thankless projects.</p>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Harry Potter and the Chamber of Secrets (2002)','','publish','closed','closed','','harry-potter-and-the-chamber-of-secrets-2002','','','2019-07-24 23:15:41','2019-07-24 23:15:41','',0,'http://itcamefrombeyondpulp.com/?p=166',0,'post','',0),(167,1,'2019-07-24 02:42:57','2019-07-24 02:42:57','','hp cham','','inherit','closed','closed','','hp-cham','','','2019-07-24 02:42:57','2019-07-24 02:42:57','',166,'http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/hp-cham.jpg',0,'attachment','image/jpeg',0),(168,1,'2019-07-24 02:43:22','2019-07-24 02:43:22','','hp cham','','inherit','closed','closed','','hp-cham-2','','','2019-07-24 02:43:22','2019-07-24 02:43:22','',166,'http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/hp-cham-1.jpg',0,'attachment','image/jpeg',0),(223,1,'2019-07-24 23:15:41','2019-07-24 23:15:41','[et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" custom_padding=\"0px|||||\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" custom_margin=\"||11px|||\" next_background_color=\"#000000\" global_module=\"74\"][et_pb_row global_parent=\"74\" custom_padding=\"0px||0px|||\" custom_margin=\"|auto|-66px|auto||\" _builder_version=\"3.26.3\"][et_pb_column type=\"4_4\" global_parent=\"74\" _builder_version=\"3.26.3\"][et_pb_image global_parent=\"74\" src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/header.jpg\" url=\"http://itcamefrombeyondpulp.com\" _builder_version=\"3.26.3\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.26.3\" width=\"1080px\" inner_module_alignment=\"center\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" module_alignment=\"center\" custom_padding=\"0px||0px||false|false\" next_background_color=\"#e02b20\" global_module=\"175\" prev_background_color=\"#000000\"][et_pb_fullwidth_menu global_parent=\"175\" menu_id=\"2\" submenu_direction=\"downwards\" fullwidth_menu=\"off\" dropdown_menu_text_color=\"#ffffff\" _builder_version=\"3.26.3\" menu_font=\"|800||on|||||\" menu_text_color=\"#ffffff\" menu_font_size=\"22px\" menu_letter_spacing=\"5px\" background_color=\"#e02b20\" border_width_bottom=\"5px\" text_orientation=\"center\" background_layout=\"dark\" custom_padding=\"1px||0px||false|false\" z_index_tablet=\"500\" menu_text_shadow_horizontal_length_tablet=\"0px\" menu_text_shadow_vertical_length_tablet=\"0px\" menu_text_shadow_blur_strength_tablet=\"1px\" border_width_bottom_tablet=\"5px\" border_width_bottom_phone=\"5px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" custom_margin=\"0px||||false|false\" /][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" background_color=\"#e02b20\" width=\"1080px\" module_alignment=\"center\" custom_padding=\"10px||0px|||\" prev_background_color=\"#ffffff\"][et_pb_row _builder_version=\"3.26.3\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" background_color=\"#ffffff\" custom_padding=\"10px|10px||10px|false|false\" border_width_bottom=\"5px\" border_color_bottom=\"#e02b20\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image _builder_version=\"3.26.3\" src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/hp-cham.jpg\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\" /][et_pb_text _builder_version=\"3.26.3\" z_index_tablet=\"500\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" text_text_shadow_horizontal_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_vertical_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_blur_strength=\"text_text_shadow_style,%91object Object%93\" link_text_shadow_horizontal_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_vertical_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_blur_strength=\"link_text_shadow_style,%91object Object%93\" ul_text_shadow_horizontal_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_vertical_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_blur_strength=\"ul_text_shadow_style,%91object Object%93\" ol_text_shadow_horizontal_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_vertical_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_blur_strength=\"ol_text_shadow_style,%91object Object%93\" quote_text_shadow_horizontal_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_vertical_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_blur_strength=\"quote_text_shadow_style,%91object Object%93\" header_text_shadow_horizontal_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_vertical_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_blur_strength=\"header_text_shadow_style,%91object Object%93\" header_2_text_shadow_horizontal_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_vertical_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_blur_strength=\"header_2_text_shadow_style,%91object Object%93\" header_3_text_shadow_horizontal_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_vertical_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_blur_strength=\"header_3_text_shadow_style,%91object Object%93\" header_4_text_shadow_horizontal_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_vertical_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_blur_strength=\"header_4_text_shadow_style,%91object Object%93\" header_5_text_shadow_horizontal_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_vertical_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_blur_strength=\"header_5_text_shadow_style,%91object Object%93\" header_6_text_shadow_horizontal_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_vertical_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_blur_strength=\"header_6_text_shadow_style,%91object Object%93\"]\r\n\r\n<h3 style=\"text-align: center;\"><strong><em>Harry Potter and the Chamber of Secrets</em> (Chris Columbus, 2002, 161 min.)</strong></h3>\r\n<p>Part experiment, part laziness, I went to see the second installation of the fantastically successful <i>Harry Potter</i> franchise without having read the book. Not having a control-group version of myself, however, I am unable to tell if I enjoyed this film more than the first one, <i><em>Harry Potter and the Sorcerer\'s Stone</em></i>, because it was a better movie or because I didn\'t already know everything that was going to happen, exactly as it happened. Judging from the responses of the friends with whom I saw it, I think it\'s probably a better movie, but that it too is almost completely faithful to the book, so I suppose that it\'s best that I had not yet read it. It is entirely possible to make a great movie out of a great book, or a great movie out of a mediocre book, but it\'s a difficult feat to pore through a book and cull things that won\'t work cinematically, while capturing the elusive feel of the book that is usually what readers really love, whether they can put it into words or not.</p>\r\n<p>So, having excused myself from any arguments as to whether the movie is faithful to the book or not, I can talk about whether the movie was a good movie or not. While it\'s certainly not Great Cinema, it was pretty enjoyable, if punishingly long and slow in parts; it did away with the lengthy exposition of the first movie, assuming that we already know who everyone is. How it clocked in even longer is beyond me. It moved better than the first one: there was more continuity between scenes, a sense of A following logically from B instead of feeling like a series of setpieces with little to tie them together.</p>\r\n<p>The film covers the second year for Harry (Daniel Radcliffe) and company at Hogwarts. It begins with Harry struggling to escape the clutches of his Muggle relatives, who don\'t want him to return to the academy. Other creatures want him to stay home too; Dobby, an ugly little elf that speaks in an annoying third person (\"Dobby thinks that...\" reminding me of \"Bob Dole won\'t...\"), tries his magical best to keep Harry from boarding the magical train, saying that someone wants to do him harm, although he won\'t say who. Thankfully, Ron Weasley (Rupert Grint) and his twin brothers rescue him in their flying car. Harry and Ron eventually make it to Hogwarts, but not without coming within a hair\'s breadth of getting killed or expelled. They quickly fall into old patterns: they hang out with lovely young know-it-all Hermione (Emma Watson), they commence their battle of wills with the odious Draco Malfoy (Tom Felton), who now has the support of his obviously evil father Lucius Malfoy (Jason Isaacs), and they get into trouble.</p>\r\n<p>There is trouble brewing, though: something is petrifying students, some creature that dwells in the Chamber of Secrets, a secret room hidden somewhere in the massive edifice of Hogwarts, which was created by the founder of the Slytherin house in an attempt to eliminate all \"mud-bloods\" (magicians born to Muggles) from the ranks of magicians. The suspicion as to who opened the Chamber and released, and now controls, the mysterious monster naturally falls on Harry, because he manages to be the first on the crime scene and looks suspicious, especially when it turns out he can talk to snakes in their own language. Harry, Ron, and Hermione must solve the mystery before students start getting killed; their investigation reveals deep secrets that involve the first opening of the Chamber fifty years before, a diary left by a long-forgotten student, and Hagrid (Robbie Coltrane), the lovable groundskeeper at Hogwarts.</p>\r\n<p>We have the usual crew of characters: in addition to those mentioned above, Albus Dumbledore (the late Richard Harris) is just as magisterial as he was before, although he looks a little older and more tired; Snape (Alan Rickman) is still as sneaky and dour; and McGonagall (Maggie Smith) isn\'t as confident and hard-nosed. These changes make sense, because whatever is attacking students threatens to force the closure of the school, and might mean the return of Voldemort, the evil wizard who killed Harry\'s parents and tried to come back in the first installment.</p>\r\n<p>Added to the mix are one so-so character and one unforgettable one. Miriam Margoyles plays Professor Sprout, who teaches herbology and is educating her class on the use of the mandrake root, in a scene that evokes more than a few chuckles for anyone who\'s read the John Donne poem \"Song\" (\"get with child a mandrake root\"—and I only read it because Ebert pointed out the reference). And Kenneth Branagh plays Gilderoy Lockhart, cashing in on all the scorn that British people apparently heap on him; he\'s perfect as a big-headed, self-promoting blowhard, more talk than action, who would rather sell the students copies of his autobiography than teach them Defense Against the Dark Arts, which is supposed to be his area of expertise. He\'s easily the most interesting character outside of Hagrid that the series has produced thus far.</p>\r\n<p>Since this is the second installment, we can start to judge the principal actors on the basis of their improvement from the first movie. Sadly, they are not good actors. Daniel Radcliffe is passable but somewhat wooden as Harry, Emma Watson shows promise but is a little shrill as Hermione, and Rupert Grint grates on the nerves more and more as Ron. Tom Felton as Draco Malfoy still snarls like the bad guy from a Hannah-Barbara cartoon, and I don\'t expect him to get any better as the series plows on.</p>\r\n<p>There were dramatic improvements in terms of special effects and blending the fantastic in with the real world. Gone are the too-perfect CGI effects of part 1; the digital elf Dobby looks great, the Quidditch game (which is exciting but goes on way too long and resembles nothing else but the extraneous pod-racing scene from <i>Star Wars: Episode 1</i>) now looks like it\'s real people in real danger, and the capstone effect, which inhabits the last quarter of the film (I don\'t want to give it away to those four or five other people who haven\'t read the book), is terrifyingly good.</p>\r\n<p>Despite the improvements, though, you still have to contend with the stately, respectful pace, which sometimes takes the enjoyment out of scenes that seem like they should have been more fun. The writer and director have not changed; Chris Columbus still doesn\'t seem to have a firm grasp of the frantic joy of the books, and writer Steve Kloves seems like he is still happy to simply reproduce page after page accurately and antiseptically. The score by John Williams is just as overpowering as in the first one. The addition of cinematographer Roger Pratt (of <i><em>12 Monkeys</em></i> and <i><em>Batman</em></i> fame) is a plus; perhaps he was behind the more seamless blending of the CGI with the real-life, and Hogwarts looks even more imposing and labyrinthine than before. But despite all of this, Alfonso Cuaron blew this film, and indeed the rest of the interminable series, out of the water with his <em>Harry Potter and the Prisoner of Azkaban</em>, because he is a better filmmaker than any of the others who tackled these thankless projects.</p>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Harry Potter and the Chamber of Secrets (2002)','','inherit','closed','closed','','166-revision-v1','','','2019-07-24 23:15:41','2019-07-24 23:15:41','',166,'http://itcamefrombeyondpulp.com/uncategorized/166-revision-v1/',0,'revision','',0),(169,1,'2019-07-24 02:43:37','2019-07-24 02:43:37','[et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" custom_padding=\"0px|||||\" next_background_color=\"#e02b20\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\" global_module=\"74\"][et_pb_row global_parent=\"74\" custom_padding=\"0px||0px|||\" custom_margin=\"|auto|-66px|auto||\" _builder_version=\"3.26.3\"][et_pb_column type=\"4_4\" global_parent=\"74\" _builder_version=\"3.26.3\"][et_pb_image global_parent=\"74\" src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/itfbp-header.jpg\" _builder_version=\"3.26.3\" url=\"http://itcamefrombeyondpulp.com\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" background_color=\"#e02b20\" width=\"1080px\" module_alignment=\"center\" custom_padding=\"10px||0px|||\" border_width_bottom=\"5px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\" border_width_bottom_tablet=\"5px\" border_width_bottom_phone=\"5px\" prev_background_color=\"#ffffff\" next_background_color=\"#000000\" global_module=\"97\"][et_pb_row global_parent=\"97\" column_structure=\"1_3,1_3,1_3\" custom_padding=\"0px|0px|0px|0px\" custom_margin=\"0px|0px|0px|0px\" _builder_version=\"3.26.3\" min_height=\"0px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\" module_alignment=\"center\"][et_pb_column type=\"1_3\" global_parent=\"97\" _builder_version=\"3.26.3\"][et_pb_text global_parent=\"97\" _builder_version=\"3.26.3\" header_text_color=\"#ffffff\" z_index_tablet=\"500\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" text_text_shadow_horizontal_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_vertical_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_blur_strength=\"text_text_shadow_style,%91object Object%93\" link_text_shadow_horizontal_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_vertical_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_blur_strength=\"link_text_shadow_style,%91object Object%93\" ul_text_shadow_horizontal_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_vertical_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_blur_strength=\"ul_text_shadow_style,%91object Object%93\" ol_text_shadow_horizontal_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_vertical_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_blur_strength=\"ol_text_shadow_style,%91object Object%93\" quote_text_shadow_horizontal_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_vertical_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_blur_strength=\"quote_text_shadow_style,%91object Object%93\" header_text_shadow_horizontal_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_vertical_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_blur_strength=\"header_text_shadow_style,%91object Object%93\" header_2_text_shadow_horizontal_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_vertical_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_blur_strength=\"header_2_text_shadow_style,%91object Object%93\" header_3_text_shadow_horizontal_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_vertical_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_blur_strength=\"header_3_text_shadow_style,%91object Object%93\" header_4_text_shadow_horizontal_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_vertical_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_blur_strength=\"header_4_text_shadow_style,%91object Object%93\" header_5_text_shadow_horizontal_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_vertical_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_blur_strength=\"header_5_text_shadow_style,%91object Object%93\" header_6_text_shadow_horizontal_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_vertical_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_blur_strength=\"header_6_text_shadow_style,%91object Object%93\"]\r\n\r\n</p>\r\n<h1 style=\"text-align: center;\"><a href=\"http://itcamefrombeyondpulp.com/movies/\"><strong>MOVIES &amp; TV</strong></a></h1>\r\n<p>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" global_parent=\"97\" _builder_version=\"3.26.3\"][et_pb_text global_parent=\"97\" _builder_version=\"3.26.3\" header_text_color=\"#ffffff\" z_index_tablet=\"500\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" text_text_shadow_horizontal_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_vertical_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_blur_strength=\"text_text_shadow_style,%91object Object%93\" link_text_shadow_horizontal_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_vertical_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_blur_strength=\"link_text_shadow_style,%91object Object%93\" ul_text_shadow_horizontal_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_vertical_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_blur_strength=\"ul_text_shadow_style,%91object Object%93\" ol_text_shadow_horizontal_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_vertical_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_blur_strength=\"ol_text_shadow_style,%91object Object%93\" quote_text_shadow_horizontal_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_vertical_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_blur_strength=\"quote_text_shadow_style,%91object Object%93\" header_text_shadow_horizontal_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_vertical_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_blur_strength=\"header_text_shadow_style,%91object Object%93\" header_2_text_shadow_horizontal_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_vertical_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_blur_strength=\"header_2_text_shadow_style,%91object Object%93\" header_3_text_shadow_horizontal_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_vertical_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_blur_strength=\"header_3_text_shadow_style,%91object Object%93\" header_4_text_shadow_horizontal_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_vertical_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_blur_strength=\"header_4_text_shadow_style,%91object Object%93\" header_5_text_shadow_horizontal_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_vertical_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_blur_strength=\"header_5_text_shadow_style,%91object Object%93\" header_6_text_shadow_horizontal_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_vertical_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_blur_strength=\"header_6_text_shadow_style,%91object Object%93\"]\r\n\r\n</p>\r\n<h1 style=\"text-align: center;\"><a href=\"http://itcamefrombeyondpulp.com/books/\"><strong>BOOKS</strong></a></h1>\r\n<p>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" global_parent=\"97\" _builder_version=\"3.26.3\"][et_pb_text global_parent=\"97\" _builder_version=\"3.26.3\" header_text_color=\"#ffffff\" z_index_tablet=\"500\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" text_text_shadow_horizontal_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_vertical_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_blur_strength=\"text_text_shadow_style,%91object Object%93\" link_text_shadow_horizontal_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_vertical_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_blur_strength=\"link_text_shadow_style,%91object Object%93\" ul_text_shadow_horizontal_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_vertical_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_blur_strength=\"ul_text_shadow_style,%91object Object%93\" ol_text_shadow_horizontal_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_vertical_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_blur_strength=\"ol_text_shadow_style,%91object Object%93\" quote_text_shadow_horizontal_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_vertical_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_blur_strength=\"quote_text_shadow_style,%91object Object%93\" header_text_shadow_horizontal_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_vertical_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_blur_strength=\"header_text_shadow_style,%91object Object%93\" header_2_text_shadow_horizontal_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_vertical_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_blur_strength=\"header_2_text_shadow_style,%91object Object%93\" header_3_text_shadow_horizontal_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_vertical_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_blur_strength=\"header_3_text_shadow_style,%91object Object%93\" header_4_text_shadow_horizontal_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_vertical_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_blur_strength=\"header_4_text_shadow_style,%91object Object%93\" header_5_text_shadow_horizontal_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_vertical_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_blur_strength=\"header_5_text_shadow_style,%91object Object%93\" header_6_text_shadow_horizontal_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_vertical_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_blur_strength=\"header_6_text_shadow_style,%91object Object%93\"]\r\n\r\n</p>\r\n<h1 style=\"text-align: center;\"><a href=\"http://itcamefrombeyondpulp.com/sales/\"><strong>SALES</strong></a></h1>\r\n<p>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" background_color=\"#e02b20\" width=\"1080px\" module_alignment=\"center\" custom_padding=\"10px||0px|||\" prev_background_color=\"#000000\"][et_pb_row _builder_version=\"3.26.3\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" background_color=\"#ffffff\" custom_padding=\"10px|10px||10px|false|false\" border_width_bottom=\"5px\" border_color_bottom=\"#e02b20\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image _builder_version=\"3.26.3\" src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/hp-cham.jpg\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\" /][et_pb_text _builder_version=\"3.26.3\" z_index_tablet=\"500\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" text_text_shadow_horizontal_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_vertical_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_blur_strength=\"text_text_shadow_style,%91object Object%93\" link_text_shadow_horizontal_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_vertical_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_blur_strength=\"link_text_shadow_style,%91object Object%93\" ul_text_shadow_horizontal_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_vertical_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_blur_strength=\"ul_text_shadow_style,%91object Object%93\" ol_text_shadow_horizontal_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_vertical_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_blur_strength=\"ol_text_shadow_style,%91object Object%93\" quote_text_shadow_horizontal_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_vertical_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_blur_strength=\"quote_text_shadow_style,%91object Object%93\" header_text_shadow_horizontal_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_vertical_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_blur_strength=\"header_text_shadow_style,%91object Object%93\" header_2_text_shadow_horizontal_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_vertical_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_blur_strength=\"header_2_text_shadow_style,%91object Object%93\" header_3_text_shadow_horizontal_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_vertical_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_blur_strength=\"header_3_text_shadow_style,%91object Object%93\" header_4_text_shadow_horizontal_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_vertical_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_blur_strength=\"header_4_text_shadow_style,%91object Object%93\" header_5_text_shadow_horizontal_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_vertical_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_blur_strength=\"header_5_text_shadow_style,%91object Object%93\" header_6_text_shadow_horizontal_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_vertical_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_blur_strength=\"header_6_text_shadow_style,%91object Object%93\"]\r\n\r\n<h3 style=\"text-align: center;\"><strong><em>Harry Potter and the Chamber of Secrets</em> (Chris Columbus, 2002, 161 min.)</strong></h3><p>Part experiment, part laziness, I went to see the second installation of the fantastically successful <i>Harry Potter</i> franchise without having read the book. Not having a control-group version of myself, however, I am unable to tell if I enjoyed this film more than the first one, <i><em>Harry Potter and the Sorcerer\'s Stone</em></i>, because it was a better movie or because I didn\'t already know everything that was going to happen, exactly as it happened. Judging from the responses of the friends with whom I saw it, I think it\'s probably a better movie, but that it too is almost completely faithful to the book, so I suppose that it\'s best that I had not yet read it. It is entirely possible to make a great movie out of a great book, or a great movie out of a mediocre book, but it\'s a difficult feat to pore through a book and cull things that won\'t work cinematically, while capturing the elusive feel of the book that is usually what readers really love, whether they can put it into words or not.</p><p>So, having excused myself from any arguments as to whether the movie is faithful to the book or not, I can talk about whether the movie was a good movie or not. While it\'s certainly not Great Cinema, it was pretty enjoyable, if punishingly long and slow in parts; it did away with the lengthy exposition of the first movie, assuming that we already know who everyone is. How it clocked in even longer is beyond me. It moved better than the first one: there was more continuity between scenes, a sense of A following logically from B instead of feeling like a series of setpieces with little to tie them together.</p><p>The film covers the second year for Harry (Daniel Radcliffe) and company at Hogwarts. It begins with Harry struggling to escape the clutches of his Muggle relatives, who don\'t want him to return to the academy. Other creatures want him to stay home too; Dobby, an ugly little elf that speaks in an annoying third person (\"Dobby thinks that...\" reminding me of \"Bob Dole won\'t...\"), tries his magical best to keep Harry from boarding the magical train, saying that someone wants to do him harm, although he won\'t say who. Thankfully, Ron Weasley (Rupert Grint) and his twin brothers rescue him in their flying car. Harry and Ron eventually make it to Hogwarts, but not without coming within a hair\'s breadth of getting killed or expelled. They quickly fall into old patterns: they hang out with lovely young know-it-all Hermione (Emma Watson), they commence their battle of wills with the odious Draco Malfoy (Tom Felton), who now has the support of his obviously evil father Lucius Malfoy (Jason Isaacs), and they get into trouble.</p><p>There is trouble brewing, though: something is petrifying students, some creature that dwells in the Chamber of Secrets, a secret room hidden somewhere in the massive edifice of Hogwarts, which was created by the founder of the Slytherin house in an attempt to eliminate all \"mud-bloods\" (magicians born to Muggles) from the ranks of magicians. The suspicion as to who opened the Chamber and released, and now controls, the mysterious monster naturally falls on Harry, because he manages to be the first on the crime scene and looks suspicious, especially when it turns out he can talk to snakes in their own language. Harry, Ron, and Hermione must solve the mystery before students start getting killed; their investigation reveals deep secrets that involve the first opening of the Chamber fifty years before, a diary left by a long-forgotten student, and Hagrid (Robbie Coltrane), the lovable groundskeeper at Hogwarts.</p><p>We have the usual crew of characters: in addition to those mentioned above, Albus Dumbledore (the late Richard Harris) is just as magisterial as he was before, although he looks a little older and more tired; Snape (Alan Rickman) is still as sneaky and dour; and McGonagall (Maggie Smith) isn\'t as confident and hard-nosed. These changes make sense, because whatever is attacking students threatens to force the closure of the school, and might mean the return of Voldemort, the evil wizard who killed Harry\'s parents and tried to come back in the first installment.</p><p>Added to the mix are one so-so character and one unforgettable one. Miriam Margoyles plays Professor Sprout, who teaches herbology and is educating her class on the use of the mandrake root, in a scene that evokes more than a few chuckles for anyone who\'s read the John Donne poem \"Song\" (\"get with child a mandrake root\"—and I only read it because Ebert pointed out the reference). And Kenneth Branagh plays Gilderoy Lockhart, cashing in on all the scorn that British people apparently heap on him; he\'s perfect as a big-headed, self-promoting blowhard, more talk than action, who would rather sell the students copies of his autobiography than teach them Defense Against the Dark Arts, which is supposed to be his area of expertise. He\'s easily the most interesting character outside of Hagrid that the series has produced thus far.</p><p>Since this is the second installment, we can start to judge the principal actors on the basis of their improvement from the first movie. Sadly, they are not good actors. Daniel Radcliffe is passable but somewhat wooden as Harry, Emma Watson shows promise but is a little shrill as Hermione, and Rupert Grint grates on the nerves more and more as Ron. Tom Felton as Draco Malfoy still snarls like the bad guy from a Hannah-Barbara cartoon, and I don\'t expect him to get any better as the series plows on.</p><p>There were dramatic improvements in terms of special effects and blending the fantastic in with the real world. Gone are the too-perfect CGI effects of part 1; the digital elf Dobby looks great, the Quidditch game (which is exciting but goes on way too long and resembles nothing else but the extraneous pod-racing scene from <i>Star Wars: Episode 1</i>) now looks like it\'s real people in real danger, and the capstone effect, which inhabits the last quarter of the film (I don\'t want to give it away to those four or five other people who haven\'t read the book), is terrifyingly good.</p><p>Despite the improvements, though, you still have to contend with the stately, respectful pace, which sometimes takes the enjoyment out of scenes that seem like they should have been more fun. The writer and director have not changed; Chris Columbus still doesn\'t seem to have a firm grasp of the frantic joy of the books, and writer Steve Kloves seems like he is still happy to simply reproduce page after page accurately and antiseptically. The score by John Williams is just as overpowering as in the first one. The addition of cinematographer Roger Pratt (of <i><em>12 Monkeys</em></i> and <i><em>Batman</em></i> fame) is a plus; perhaps he was behind the more seamless blending of the CGI with the real-life, and Hogwarts looks even more imposing and labyrinthine than before. But despite all of this, Alfonso Cuaron blew this film, and indeed the rest of the interminable series, out of the water with his <em>Harry Potter and the Prisoner of Azkaban</em>, because he is a better filmmaker than any of the others who tackled these thankless projects.</p>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Harry Potter and the Chamber of Secrets (2002)','','inherit','closed','closed','','166-revision-v1','','','2019-07-24 02:43:37','2019-07-24 02:43:37','',166,'http://itcamefrombeyondpulp.com/uncategorized/166-revision-v1/',0,'revision','',0),(170,1,'2019-07-24 14:54:35','2019-07-24 14:54:35','[et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" custom_padding=\"0px|||||\" next_background_color=\"#e02b20\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\" global_module=\"74\"][et_pb_row global_parent=\"74\" custom_padding=\"0px||0px|||\" custom_margin=\"|auto|-66px|auto||\" _builder_version=\"3.26.3\"][et_pb_column type=\"4_4\" global_parent=\"74\" _builder_version=\"3.26.3\"][et_pb_image global_parent=\"74\" src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/itfbp-header.jpg\" _builder_version=\"3.26.3\" url=\"http://itcamefrombeyondpulp.com\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" background_color=\"#e02b20\" width=\"1080px\" module_alignment=\"center\" custom_padding=\"10px||0px|||\" border_width_bottom=\"5px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\" border_width_bottom_tablet=\"5px\" border_width_bottom_phone=\"5px\" prev_background_color=\"#ffffff\" next_background_color=\"#ffffff\" global_module=\"97\"][et_pb_row global_parent=\"97\" column_structure=\"1_3,1_3,1_3\" custom_padding=\"0px|0px|0px|0px\" custom_margin=\"0px|0px|0px|0px\" _builder_version=\"3.26.3\" min_height=\"0px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\" module_alignment=\"center\"][et_pb_column type=\"1_3\" global_parent=\"97\" _builder_version=\"3.26.3\"][et_pb_text global_parent=\"97\" _builder_version=\"3.26.3\" header_text_color=\"#ffffff\" z_index_tablet=\"500\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" text_text_shadow_horizontal_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_vertical_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_blur_strength=\"text_text_shadow_style,%91object Object%93\" link_text_shadow_horizontal_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_vertical_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_blur_strength=\"link_text_shadow_style,%91object Object%93\" ul_text_shadow_horizontal_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_vertical_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_blur_strength=\"ul_text_shadow_style,%91object Object%93\" ol_text_shadow_horizontal_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_vertical_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_blur_strength=\"ol_text_shadow_style,%91object Object%93\" quote_text_shadow_horizontal_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_vertical_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_blur_strength=\"quote_text_shadow_style,%91object Object%93\" header_text_shadow_horizontal_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_vertical_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_blur_strength=\"header_text_shadow_style,%91object Object%93\" header_2_text_shadow_horizontal_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_vertical_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_blur_strength=\"header_2_text_shadow_style,%91object Object%93\" header_3_text_shadow_horizontal_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_vertical_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_blur_strength=\"header_3_text_shadow_style,%91object Object%93\" header_4_text_shadow_horizontal_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_vertical_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_blur_strength=\"header_4_text_shadow_style,%91object Object%93\" header_5_text_shadow_horizontal_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_vertical_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_blur_strength=\"header_5_text_shadow_style,%91object Object%93\" header_6_text_shadow_horizontal_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_vertical_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_blur_strength=\"header_6_text_shadow_style,%91object Object%93\"]\r\n\r\n</p>\r\n<h1 style=\"text-align: center;\"><a href=\"http://itcamefrombeyondpulp.com/movies/\"><strong>MOVIES &amp; TV</strong></a></h1>\r\n<p>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" global_parent=\"97\" _builder_version=\"3.26.3\"][et_pb_text global_parent=\"97\" _builder_version=\"3.26.3\" header_text_color=\"#ffffff\" z_index_tablet=\"500\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" text_text_shadow_horizontal_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_vertical_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_blur_strength=\"text_text_shadow_style,%91object Object%93\" link_text_shadow_horizontal_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_vertical_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_blur_strength=\"link_text_shadow_style,%91object Object%93\" ul_text_shadow_horizontal_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_vertical_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_blur_strength=\"ul_text_shadow_style,%91object Object%93\" ol_text_shadow_horizontal_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_vertical_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_blur_strength=\"ol_text_shadow_style,%91object Object%93\" quote_text_shadow_horizontal_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_vertical_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_blur_strength=\"quote_text_shadow_style,%91object Object%93\" header_text_shadow_horizontal_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_vertical_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_blur_strength=\"header_text_shadow_style,%91object Object%93\" header_2_text_shadow_horizontal_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_vertical_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_blur_strength=\"header_2_text_shadow_style,%91object Object%93\" header_3_text_shadow_horizontal_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_vertical_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_blur_strength=\"header_3_text_shadow_style,%91object Object%93\" header_4_text_shadow_horizontal_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_vertical_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_blur_strength=\"header_4_text_shadow_style,%91object Object%93\" header_5_text_shadow_horizontal_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_vertical_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_blur_strength=\"header_5_text_shadow_style,%91object Object%93\" header_6_text_shadow_horizontal_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_vertical_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_blur_strength=\"header_6_text_shadow_style,%91object Object%93\"]\r\n\r\n</p>\r\n<h1 style=\"text-align: center;\"><a href=\"http://itcamefrombeyondpulp.com/books/\"><strong>BOOKS</strong></a></h1>\r\n<p>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" global_parent=\"97\" _builder_version=\"3.26.3\"][et_pb_text global_parent=\"97\" _builder_version=\"3.26.3\" header_text_color=\"#ffffff\" z_index_tablet=\"500\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" text_text_shadow_horizontal_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_vertical_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_blur_strength=\"text_text_shadow_style,%91object Object%93\" link_text_shadow_horizontal_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_vertical_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_blur_strength=\"link_text_shadow_style,%91object Object%93\" ul_text_shadow_horizontal_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_vertical_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_blur_strength=\"ul_text_shadow_style,%91object Object%93\" ol_text_shadow_horizontal_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_vertical_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_blur_strength=\"ol_text_shadow_style,%91object Object%93\" quote_text_shadow_horizontal_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_vertical_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_blur_strength=\"quote_text_shadow_style,%91object Object%93\" header_text_shadow_horizontal_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_vertical_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_blur_strength=\"header_text_shadow_style,%91object Object%93\" header_2_text_shadow_horizontal_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_vertical_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_blur_strength=\"header_2_text_shadow_style,%91object Object%93\" header_3_text_shadow_horizontal_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_vertical_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_blur_strength=\"header_3_text_shadow_style,%91object Object%93\" header_4_text_shadow_horizontal_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_vertical_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_blur_strength=\"header_4_text_shadow_style,%91object Object%93\" header_5_text_shadow_horizontal_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_vertical_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_blur_strength=\"header_5_text_shadow_style,%91object Object%93\" header_6_text_shadow_horizontal_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_vertical_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_blur_strength=\"header_6_text_shadow_style,%91object Object%93\"]\r\n\r\n</p>\r\n<h1 style=\"text-align: center;\"><a href=\"http://itcamefrombeyondpulp.com/sales/\"><strong>SALES</strong></a></h1>\r\n<p>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" fullwidth=\"on\" specialty=\"off\" prev_background_color=\"#e02b20\" next_background_color=\"#e02b20\" _builder_version=\"3.26.3\" inner_module_alignment=\"center\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\" width=\"80%\"][et_pb_fullwidth_menu _builder_version=\"3.26.3\" menu_id=\"2\" background_color=\"#e02b20\" submenu_direction=\"downwards\" fullwidth_menu=\"off\" menu_text_shadow_horizontal_length=\"menu_text_shadow_style,%91object Object%93\" menu_text_shadow_horizontal_length_tablet=\"0px\" menu_text_shadow_vertical_length=\"menu_text_shadow_style,%91object Object%93\" menu_text_shadow_vertical_length_tablet=\"0px\" menu_text_shadow_blur_strength=\"menu_text_shadow_style,%91object Object%93\" menu_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\" dropdown_menu_text_color=\"#ffffff\" text_orientation=\"center\" background_layout=\"dark\" menu_font=\"|800||on|||||\" menu_text_color=\"#ffffff\" menu_font_size=\"22px\" menu_letter_spacing=\"5px\" custom_padding=\"5px|||\" border_width_bottom=\"5px\" border_width_bottom_tablet=\"5px\" border_width_bottom_phone=\"5px\" /][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" background_color=\"#e02b20\" width=\"1080px\" module_alignment=\"center\" custom_padding=\"10px||0px|||\" prev_background_color=\"#ffffff\"][et_pb_row custom_padding=\"10px|10px||\" _builder_version=\"3.26.3\" background_color=\"#ffffff\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" border_width_bottom=\"5px\" border_color_bottom=\"#e02b20\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.26.3\" text_text_shadow_horizontal_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\"]\r\n\r\n<h1 style=\"text-align: center;\">Movies &amp; TV Reviews</h1><p style=\"text-align: center;\"><strong><a href=\"http://itcamefrombeyondpulp.com/movies/children-of-men-2006/\">Children of Men (2006)</a><br /></strong><strong><a href=\"http://itcamefrombeyondpulp.com/movies/cloverfield-2008/\">Cloverfield (2008)</a><br /><a href=\"http://itcamefrombeyondpulp.com/movies/the-dark-knight-2008/\">The Dark Knight (2008)</a><br /><a href=\"http://itcamefrombeyondpulp.com/movies/the-fountain-2006/\">The Fountain (2006)</a><br /><a href=\"http://itcamefrombeyondpulp.com/movies/hardware-1990/\">Hardware (1990)</a><br /><a href=\"http://itcamefrombeyondpulp.com/movies/harry-potter-and-the-chamber-of-secrets-2002/\">Harry Potter and the Chamber of Secrets (2002)</a><br /><a href=\"http://itcamefrombeyondpulp.com/movies/harry-potter-and-the-sorcerers-stone-2001/\">Harry Potter and the Sorcerer\'s Stone (2001)</a><br /><a href=\"http://itcamefrombeyondpulp.com/movies/maniac-1934/\">Maniac (1934)</a><br /></strong><a href=\"http://itcamefrombeyondpulp.com/movies/serenity-2005/\"><strong>Serenity (2005)</strong></a></p>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Movies','','inherit','closed','closed','','45-revision-v1','','','2019-07-24 14:54:35','2019-07-24 14:54:35','',45,'http://itcamefrombeyondpulp.com/uncategorized/45-revision-v1/',0,'revision','',0),(175,1,'2019-07-24 15:00:53','2019-07-24 15:00:53','[et_pb_section bb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.26.3\" width=\"1080px\" width_tablet=\"100%\" width_last_edited=\"on|phone\" module_alignment=\"center\" inner_module_alignment=\"center\" custom_padding=\"0px||0px||false|false\" z_index_tablet=\"500\" hover_enabled=\"0\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" prev_background_color=\"#000000\" next_background_color=\"#e02b20\" template_type=\"section\"][et_pb_fullwidth_menu menu_id=\"2\" submenu_direction=\"downwards\" fullwidth_menu=\"off\" dropdown_menu_text_color=\"#ffffff\" _builder_version=\"3.26.3\" menu_font=\"|800||on|||||\" menu_text_color=\"#ffffff\" menu_font_size=\"22px\" menu_letter_spacing=\"5px\" background_color=\"#e02b20\" border_width_bottom=\"5px\" text_orientation=\"center\" background_layout=\"dark\" custom_margin=\"0px||||false|false\" custom_padding=\"1px||0px||false|false\" z_index_tablet=\"500\" menu_text_shadow_horizontal_length_tablet=\"0px\" menu_text_shadow_vertical_length_tablet=\"0px\" menu_text_shadow_blur_strength_tablet=\"1px\" border_width_bottom_tablet=\"5px\" border_width_bottom_phone=\"5px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" /][/et_pb_section]','nav bar','','publish','closed','closed','','nav-bar','','','2019-08-19 02:58:43','2019-08-19 02:58:43','',0,'http://itcamefrombeyondpulp.com/et_pb_layout/nav-bar/',0,'et_pb_layout','',0),(185,1,'2019-07-24 21:27:50','2019-07-24 21:27:50','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.26.3\" width=\"80%\" inner_module_alignment=\"center\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" module_alignment=\"center\" template_type=\"section\"][et_pb_fullwidth_menu menu_id=\"2\" submenu_direction=\"downwards\" fullwidth_menu=\"off\" dropdown_menu_text_color=\"#ffffff\" _builder_version=\"3.26.3\" menu_font=\"|800||on|||||\" menu_text_color=\"#ffffff\" menu_font_size=\"22px\" menu_letter_spacing=\"5px\" background_color=\"#e02b20\" border_width_bottom=\"5px\" text_orientation=\"center\" background_layout=\"dark\" custom_padding=\"5px|||\" z_index_tablet=\"500\" menu_text_shadow_horizontal_length_tablet=\"0px\" menu_text_shadow_vertical_length_tablet=\"0px\" menu_text_shadow_blur_strength_tablet=\"1px\" border_width_bottom_tablet=\"5px\" border_width_bottom_phone=\"5px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\"][/et_pb_fullwidth_menu][/et_pb_section]','nav bar','','inherit','closed','closed','','175-revision-v1','','','2019-07-24 21:27:50','2019-07-24 21:27:50','',175,'http://itcamefrombeyondpulp.com/uncategorized/175-revision-v1/',0,'revision','',0),(183,1,'2019-07-24 21:25:51','2019-07-24 21:25:51','[et_pb_section bb_built=\"1\" fullwidth=\"on\" specialty=\"off\" prev_background_color=\"#000000\" next_background_color=\"#e02b20\" _builder_version=\"3.26.3\" inner_module_alignment=\"center\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\" width=\"80%\" template_type=\"section\"][et_pb_fullwidth_menu _builder_version=\"3.26.3\" menu_id=\"2\" background_color=\"#e02b20\" submenu_direction=\"downwards\" fullwidth_menu=\"off\" menu_text_shadow_horizontal_length=\"menu_text_shadow_style,%91object Object%93\" menu_text_shadow_horizontal_length_tablet=\"0px\" menu_text_shadow_vertical_length=\"menu_text_shadow_style,%91object Object%93\" menu_text_shadow_vertical_length_tablet=\"0px\" menu_text_shadow_blur_strength=\"menu_text_shadow_style,%91object Object%93\" menu_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\" dropdown_menu_text_color=\"#ffffff\" text_orientation=\"center\" background_layout=\"dark\" menu_font=\"|800||on|||||\" menu_text_color=\"#ffffff\" menu_font_size=\"22px\" menu_letter_spacing=\"5px\" custom_padding=\"5px|||\" border_width_bottom=\"5px\" border_width_bottom_tablet=\"5px\" border_width_bottom_phone=\"5px\" /][/et_pb_section]','nav bar','','inherit','closed','closed','','175-revision-v1','','','2019-07-24 21:25:51','2019-07-24 21:25:51','',175,'http://itcamefrombeyondpulp.com/uncategorized/175-revision-v1/',0,'revision','',0),(176,1,'2019-07-24 15:01:19','2019-07-24 15:01:19','[et_pb_section bb_built=\"1\" fullwidth=\"on\" specialty=\"off\" prev_background_color=\"#e02b20\" next_background_color=\"#e02b20\" _builder_version=\"3.26.3\" inner_module_alignment=\"center\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\" width=\"80%\" template_type=\"section\"][et_pb_fullwidth_menu _builder_version=\"3.26.3\" menu_id=\"2\" background_color=\"#e02b20\" submenu_direction=\"downwards\" fullwidth_menu=\"off\" menu_text_shadow_horizontal_length=\"menu_text_shadow_style,%91object Object%93\" menu_text_shadow_horizontal_length_tablet=\"0px\" menu_text_shadow_vertical_length=\"menu_text_shadow_style,%91object Object%93\" menu_text_shadow_vertical_length_tablet=\"0px\" menu_text_shadow_blur_strength=\"menu_text_shadow_style,%91object Object%93\" menu_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\" dropdown_menu_text_color=\"#ffffff\" text_orientation=\"justified\" background_layout=\"dark\" menu_font=\"|800||on|||||\" menu_text_color=\"#ffffff\" menu_font_size=\"22px\" menu_letter_spacing=\"5px\" custom_padding=\"5px|||\" border_width_bottom=\"5px\" border_width_bottom_tablet=\"5px\" border_width_bottom_phone=\"5px\" /][/et_pb_section]','nav bar','','inherit','closed','closed','','175-revision-v1','','','2019-07-24 15:01:19','2019-07-24 15:01:19','',175,'http://itcamefrombeyondpulp.com/uncategorized/175-revision-v1/',0,'revision','',0),(179,1,'2019-07-24 15:04:27','2019-07-24 15:04:27','[et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" custom_padding=\"0px|||||\" next_background_color=\"#000000\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\" global_module=\"74\"][et_pb_row global_parent=\"74\" custom_padding=\"0px||0px|||\" custom_margin=\"|auto|-66px|auto||\" _builder_version=\"3.26.3\"][et_pb_column type=\"4_4\" global_parent=\"74\" _builder_version=\"3.26.3\"][et_pb_image global_parent=\"74\" src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/itfbp-header.jpg\" _builder_version=\"3.26.3\" url=\"http://itcamefrombeyondpulp.com\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" fullwidth=\"on\" specialty=\"off\" prev_background_color=\"#000000\" _builder_version=\"3.26.3\" inner_module_alignment=\"center\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\" width=\"80%\" global_module=\"175\" next_background_color=\"#e02b20\"][et_pb_fullwidth_menu global_parent=\"175\" _builder_version=\"3.26.3\" menu_id=\"2\" background_color=\"#e02b20\" submenu_direction=\"downwards\" fullwidth_menu=\"off\" menu_text_shadow_horizontal_length=\"menu_text_shadow_style,%91object Object%93\" menu_text_shadow_horizontal_length_tablet=\"0px\" menu_text_shadow_vertical_length=\"menu_text_shadow_style,%91object Object%93\" menu_text_shadow_vertical_length_tablet=\"0px\" menu_text_shadow_blur_strength=\"menu_text_shadow_style,%91object Object%93\" menu_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\" dropdown_menu_text_color=\"#ffffff\" text_orientation=\"justified\" background_layout=\"dark\" menu_font=\"|800||on|||||\" menu_text_color=\"#ffffff\" menu_font_size=\"22px\" menu_letter_spacing=\"5px\" custom_padding=\"5px|||\" border_width_bottom=\"5px\" border_width_bottom_tablet=\"5px\" border_width_bottom_phone=\"5px\" /][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" background_color=\"#e02b20\" width=\"1080px\" module_alignment=\"center\" custom_padding=\"10px||0px|||\" prev_background_color=\"#ffffff\"][et_pb_row custom_padding=\"10px|10px||\" _builder_version=\"3.26.3\" background_color=\"#ffffff\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" border_width_bottom=\"5px\" border_color_bottom=\"#e02b20\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.26.3\" text_text_shadow_horizontal_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\"]\r\n\r\n<h1 style=\"text-align: center;\">Movies &amp; TV Reviews</h1>\r\n<p style=\"text-align: center;\"><strong><a href=\"http://itcamefrombeyondpulp.com/movies/children-of-men-2006/\">Children of Men (2006)</a><br /></strong><strong><a href=\"http://itcamefrombeyondpulp.com/movies/cloverfield-2008/\">Cloverfield (2008)</a><br /><a href=\"http://itcamefrombeyondpulp.com/movies/the-dark-knight-2008/\">The Dark Knight (2008)</a><br /><a href=\"http://itcamefrombeyondpulp.com/movies/the-fountain-2006/\">The Fountain (2006)</a><br /><a href=\"http://itcamefrombeyondpulp.com/movies/hardware-1990/\">Hardware (1990)</a><br /><a href=\"http://itcamefrombeyondpulp.com/movies/harry-potter-and-the-chamber-of-secrets-2002/\">Harry Potter and the Chamber of Secrets (2002)</a><br /><a href=\"http://itcamefrombeyondpulp.com/movies/harry-potter-and-the-sorcerers-stone-2001/\">Harry Potter and the Sorcerer\'s Stone (2001)</a><br /><a href=\"http://itcamefrombeyondpulp.com/movies/maniac-1934/\">Maniac (1934)</a><br /></strong><a href=\"http://itcamefrombeyondpulp.com/movies/serenity-2005/\"><strong>Serenity (2005)</strong></a></p>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Movies','','inherit','closed','closed','','45-revision-v1','','','2019-07-24 15:04:27','2019-07-24 15:04:27','',45,'http://itcamefrombeyondpulp.com/uncategorized/45-revision-v1/',0,'revision','',0),(177,1,'2019-07-24 15:01:24','2019-07-24 15:01:24','[et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" custom_padding=\"0px|||||\" next_background_color=\"#e02b20\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\" global_module=\"74\"][et_pb_row global_parent=\"74\" custom_padding=\"0px||0px|||\" custom_margin=\"|auto|-66px|auto||\" _builder_version=\"3.26.3\"][et_pb_column type=\"4_4\" global_parent=\"74\" _builder_version=\"3.26.3\"][et_pb_image global_parent=\"74\" src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/itfbp-header.jpg\" _builder_version=\"3.26.3\" url=\"http://itcamefrombeyondpulp.com\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" background_color=\"#e02b20\" width=\"1080px\" module_alignment=\"center\" custom_padding=\"10px||0px|||\" border_width_bottom=\"5px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\" border_width_bottom_tablet=\"5px\" border_width_bottom_phone=\"5px\" global_module=\"97\" prev_background_color=\"#ffffff\" next_background_color=\"#ffffff\"][et_pb_row global_parent=\"97\" column_structure=\"1_3,1_3,1_3\" custom_padding=\"0px|0px|0px|0px\" custom_margin=\"0px|0px|0px|0px\" _builder_version=\"3.26.3\" min_height=\"0px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\" module_alignment=\"center\"][et_pb_column type=\"1_3\" global_parent=\"97\" _builder_version=\"3.26.3\"][et_pb_text global_parent=\"97\" _builder_version=\"3.26.3\" header_text_color=\"#ffffff\" z_index_tablet=\"500\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" text_text_shadow_horizontal_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_vertical_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_blur_strength=\"text_text_shadow_style,%91object Object%93\" link_text_shadow_horizontal_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_vertical_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_blur_strength=\"link_text_shadow_style,%91object Object%93\" ul_text_shadow_horizontal_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_vertical_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_blur_strength=\"ul_text_shadow_style,%91object Object%93\" ol_text_shadow_horizontal_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_vertical_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_blur_strength=\"ol_text_shadow_style,%91object Object%93\" quote_text_shadow_horizontal_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_vertical_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_blur_strength=\"quote_text_shadow_style,%91object Object%93\" header_text_shadow_horizontal_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_vertical_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_blur_strength=\"header_text_shadow_style,%91object Object%93\" header_2_text_shadow_horizontal_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_vertical_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_blur_strength=\"header_2_text_shadow_style,%91object Object%93\" header_3_text_shadow_horizontal_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_vertical_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_blur_strength=\"header_3_text_shadow_style,%91object Object%93\" header_4_text_shadow_horizontal_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_vertical_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_blur_strength=\"header_4_text_shadow_style,%91object Object%93\" header_5_text_shadow_horizontal_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_vertical_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_blur_strength=\"header_5_text_shadow_style,%91object Object%93\" header_6_text_shadow_horizontal_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_vertical_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_blur_strength=\"header_6_text_shadow_style,%91object Object%93\"]\r\n\r\n</p>\r\n<h1 style=\"text-align: center;\"><a href=\"http://itcamefrombeyondpulp.com/movies/\"><strong>MOVIES &amp; TV</strong></a></h1>\r\n<p>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" global_parent=\"97\" _builder_version=\"3.26.3\"][et_pb_text global_parent=\"97\" _builder_version=\"3.26.3\" header_text_color=\"#ffffff\" z_index_tablet=\"500\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" text_text_shadow_horizontal_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_vertical_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_blur_strength=\"text_text_shadow_style,%91object Object%93\" link_text_shadow_horizontal_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_vertical_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_blur_strength=\"link_text_shadow_style,%91object Object%93\" ul_text_shadow_horizontal_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_vertical_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_blur_strength=\"ul_text_shadow_style,%91object Object%93\" ol_text_shadow_horizontal_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_vertical_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_blur_strength=\"ol_text_shadow_style,%91object Object%93\" quote_text_shadow_horizontal_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_vertical_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_blur_strength=\"quote_text_shadow_style,%91object Object%93\" header_text_shadow_horizontal_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_vertical_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_blur_strength=\"header_text_shadow_style,%91object Object%93\" header_2_text_shadow_horizontal_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_vertical_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_blur_strength=\"header_2_text_shadow_style,%91object Object%93\" header_3_text_shadow_horizontal_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_vertical_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_blur_strength=\"header_3_text_shadow_style,%91object Object%93\" header_4_text_shadow_horizontal_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_vertical_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_blur_strength=\"header_4_text_shadow_style,%91object Object%93\" header_5_text_shadow_horizontal_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_vertical_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_blur_strength=\"header_5_text_shadow_style,%91object Object%93\" header_6_text_shadow_horizontal_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_vertical_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_blur_strength=\"header_6_text_shadow_style,%91object Object%93\"]\r\n\r\n</p>\r\n<h1 style=\"text-align: center;\"><a href=\"http://itcamefrombeyondpulp.com/books/\"><strong>BOOKS</strong></a></h1>\r\n<p>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" global_parent=\"97\" _builder_version=\"3.26.3\"][et_pb_text global_parent=\"97\" _builder_version=\"3.26.3\" header_text_color=\"#ffffff\" z_index_tablet=\"500\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" text_text_shadow_horizontal_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_vertical_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_blur_strength=\"text_text_shadow_style,%91object Object%93\" link_text_shadow_horizontal_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_vertical_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_blur_strength=\"link_text_shadow_style,%91object Object%93\" ul_text_shadow_horizontal_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_vertical_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_blur_strength=\"ul_text_shadow_style,%91object Object%93\" ol_text_shadow_horizontal_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_vertical_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_blur_strength=\"ol_text_shadow_style,%91object Object%93\" quote_text_shadow_horizontal_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_vertical_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_blur_strength=\"quote_text_shadow_style,%91object Object%93\" header_text_shadow_horizontal_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_vertical_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_blur_strength=\"header_text_shadow_style,%91object Object%93\" header_2_text_shadow_horizontal_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_vertical_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_blur_strength=\"header_2_text_shadow_style,%91object Object%93\" header_3_text_shadow_horizontal_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_vertical_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_blur_strength=\"header_3_text_shadow_style,%91object Object%93\" header_4_text_shadow_horizontal_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_vertical_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_blur_strength=\"header_4_text_shadow_style,%91object Object%93\" header_5_text_shadow_horizontal_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_vertical_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_blur_strength=\"header_5_text_shadow_style,%91object Object%93\" header_6_text_shadow_horizontal_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_vertical_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_blur_strength=\"header_6_text_shadow_style,%91object Object%93\"]\r\n\r\n</p>\r\n<h1 style=\"text-align: center;\"><a href=\"http://itcamefrombeyondpulp.com/sales/\"><strong>SALES</strong></a></h1>\r\n<p>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" fullwidth=\"on\" specialty=\"off\" prev_background_color=\"#e02b20\" next_background_color=\"#e02b20\" _builder_version=\"3.26.3\" inner_module_alignment=\"center\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\" width=\"80%\" global_module=\"175\"][et_pb_fullwidth_menu global_parent=\"175\" _builder_version=\"3.26.3\" menu_id=\"2\" background_color=\"#e02b20\" submenu_direction=\"downwards\" fullwidth_menu=\"off\" menu_text_shadow_horizontal_length=\"menu_text_shadow_style,%91object Object%93\" menu_text_shadow_horizontal_length_tablet=\"0px\" menu_text_shadow_vertical_length=\"menu_text_shadow_style,%91object Object%93\" menu_text_shadow_vertical_length_tablet=\"0px\" menu_text_shadow_blur_strength=\"menu_text_shadow_style,%91object Object%93\" menu_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\" dropdown_menu_text_color=\"#ffffff\" text_orientation=\"justified\" background_layout=\"dark\" menu_font=\"|800||on|||||\" menu_text_color=\"#ffffff\" menu_font_size=\"22px\" menu_letter_spacing=\"5px\" custom_padding=\"5px|||\" border_width_bottom=\"5px\" border_width_bottom_tablet=\"5px\" border_width_bottom_phone=\"5px\" /][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" background_color=\"#e02b20\" width=\"1080px\" module_alignment=\"center\" custom_padding=\"10px||0px|||\" prev_background_color=\"#ffffff\"][et_pb_row custom_padding=\"10px|10px||\" _builder_version=\"3.26.3\" background_color=\"#ffffff\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" border_width_bottom=\"5px\" border_color_bottom=\"#e02b20\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.26.3\" text_text_shadow_horizontal_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\"]\r\n\r\n<h1 style=\"text-align: center;\">Movies &amp; TV Reviews</h1>\r\n<p style=\"text-align: center;\"><strong><a href=\"http://itcamefrombeyondpulp.com/movies/children-of-men-2006/\">Children of Men (2006)</a><br /></strong><strong><a href=\"http://itcamefrombeyondpulp.com/movies/cloverfield-2008/\">Cloverfield (2008)</a><br /><a href=\"http://itcamefrombeyondpulp.com/movies/the-dark-knight-2008/\">The Dark Knight (2008)</a><br /><a href=\"http://itcamefrombeyondpulp.com/movies/the-fountain-2006/\">The Fountain (2006)</a><br /><a href=\"http://itcamefrombeyondpulp.com/movies/hardware-1990/\">Hardware (1990)</a><br /><a href=\"http://itcamefrombeyondpulp.com/movies/harry-potter-and-the-chamber-of-secrets-2002/\">Harry Potter and the Chamber of Secrets (2002)</a><br /><a href=\"http://itcamefrombeyondpulp.com/movies/harry-potter-and-the-sorcerers-stone-2001/\">Harry Potter and the Sorcerer\'s Stone (2001)</a><br /><a href=\"http://itcamefrombeyondpulp.com/movies/maniac-1934/\">Maniac (1934)</a><br /></strong><a href=\"http://itcamefrombeyondpulp.com/movies/serenity-2005/\"><strong>Serenity (2005)</strong></a></p>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Movies','','inherit','closed','closed','','45-revision-v1','','','2019-07-24 15:01:24','2019-07-24 15:01:24','',45,'http://itcamefrombeyondpulp.com/uncategorized/45-revision-v1/',0,'revision','',0),(224,1,'2019-07-24 23:15:57','2019-07-24 23:15:57','[et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" custom_padding=\"0px|||||\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" custom_margin=\"||11px|||\" next_background_color=\"#000000\" template_type=\"section\"][et_pb_row custom_padding=\"0px||0px|||\" custom_margin=\"|auto|-66px|auto||\" _builder_version=\"3.26.3\"][et_pb_column type=\"4_4\" _builder_version=\"3.26.3\"][et_pb_image src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/header.jpg\" url=\"http://itcamefrombeyondpulp.com\" _builder_version=\"3.26.3\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" /][/et_pb_column][/et_pb_row][/et_pb_section]','header','','inherit','closed','closed','','74-revision-v1','','','2019-07-24 23:15:57','2019-07-24 23:15:57','',74,'http://itcamefrombeyondpulp.com/uncategorized/74-revision-v1/',0,'revision','',0),(225,1,'2019-07-24 23:16:17','2019-07-24 23:16:17','[et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" custom_padding=\"0px|||||\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" custom_margin=\"||11px|||\" next_background_color=\"#e02b20\" template_type=\"section\"][et_pb_row custom_padding=\"0px||0px|||\" custom_margin=\"|auto|-66px|auto||\" _builder_version=\"3.26.3\"][et_pb_column type=\"4_4\" _builder_version=\"3.26.3\"][et_pb_image src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/header.jpg\" url=\"http://itcamefrombeyondpulp.com\" _builder_version=\"3.26.3\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" /][/et_pb_column][/et_pb_row][/et_pb_section]','header','','inherit','closed','closed','','74-revision-v1','','','2019-07-24 23:16:17','2019-07-24 23:16:17','',74,'http://itcamefrombeyondpulp.com/uncategorized/74-revision-v1/',0,'revision','',0),(226,1,'2019-07-24 23:17:18','2019-07-24 23:17:18','[et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" custom_padding=\"0px|||||\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" custom_margin=\"||11px|||\" next_background_color=\"#e02b20\" global_module=\"74\"][et_pb_row global_parent=\"74\" custom_padding=\"0px||0px|||\" custom_margin=\"|auto|-66px|auto||\" _builder_version=\"3.26.3\"][et_pb_column type=\"4_4\" global_parent=\"74\" _builder_version=\"3.26.3\"][et_pb_image global_parent=\"74\" src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/header.jpg\" url=\"http://itcamefrombeyondpulp.com\" _builder_version=\"3.26.3\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" background_color=\"#e02b20\" width=\"1080px\" module_alignment=\"center\" custom_padding=\"10px||0px|||\" border_width_bottom=\"5px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\" border_width_bottom_tablet=\"5px\" border_width_bottom_phone=\"5px\" prev_background_color=\"#ffffff\" next_background_color=\"#000000\"][et_pb_row column_structure=\"1_3,1_3,1_3\" custom_padding=\"0px|0px|0px|0px\" custom_margin=\"0px|0px|0px|0px\" _builder_version=\"3.26.3\" min_height=\"0px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\" module_alignment=\"center\"][et_pb_column type=\"1_3\" _builder_version=\"3.26.3\"][et_pb_text _builder_version=\"3.26.3\" header_text_color=\"#ffffff\" z_index_tablet=\"500\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" text_text_shadow_horizontal_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_vertical_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_blur_strength=\"text_text_shadow_style,%91object Object%93\" link_text_shadow_horizontal_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_vertical_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_blur_strength=\"link_text_shadow_style,%91object Object%93\" ul_text_shadow_horizontal_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_vertical_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_blur_strength=\"ul_text_shadow_style,%91object Object%93\" ol_text_shadow_horizontal_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_vertical_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_blur_strength=\"ol_text_shadow_style,%91object Object%93\" quote_text_shadow_horizontal_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_vertical_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_blur_strength=\"quote_text_shadow_style,%91object Object%93\" header_text_shadow_horizontal_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_vertical_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_blur_strength=\"header_text_shadow_style,%91object Object%93\" header_2_text_shadow_horizontal_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_vertical_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_blur_strength=\"header_2_text_shadow_style,%91object Object%93\" header_3_text_shadow_horizontal_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_vertical_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_blur_strength=\"header_3_text_shadow_style,%91object Object%93\" header_4_text_shadow_horizontal_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_vertical_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_blur_strength=\"header_4_text_shadow_style,%91object Object%93\" header_5_text_shadow_horizontal_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_vertical_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_blur_strength=\"header_5_text_shadow_style,%91object Object%93\" header_6_text_shadow_horizontal_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_vertical_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_blur_strength=\"header_6_text_shadow_style,%91object Object%93\"]\n\n</p>\n<h1 style=\"text-align: center;\"><a href=\"http://itcamefrombeyondpulp.com/movies/\"><strong>MOVIES &amp; TV</strong></a></h1>\n<p>\n\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.26.3\"][et_pb_text _builder_version=\"3.26.3\" header_text_color=\"#ffffff\" z_index_tablet=\"500\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" text_text_shadow_horizontal_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_vertical_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_blur_strength=\"text_text_shadow_style,%91object Object%93\" link_text_shadow_horizontal_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_vertical_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_blur_strength=\"link_text_shadow_style,%91object Object%93\" ul_text_shadow_horizontal_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_vertical_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_blur_strength=\"ul_text_shadow_style,%91object Object%93\" ol_text_shadow_horizontal_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_vertical_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_blur_strength=\"ol_text_shadow_style,%91object Object%93\" quote_text_shadow_horizontal_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_vertical_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_blur_strength=\"quote_text_shadow_style,%91object Object%93\" header_text_shadow_horizontal_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_vertical_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_blur_strength=\"header_text_shadow_style,%91object Object%93\" header_2_text_shadow_horizontal_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_vertical_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_blur_strength=\"header_2_text_shadow_style,%91object Object%93\" header_3_text_shadow_horizontal_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_vertical_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_blur_strength=\"header_3_text_shadow_style,%91object Object%93\" header_4_text_shadow_horizontal_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_vertical_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_blur_strength=\"header_4_text_shadow_style,%91object Object%93\" header_5_text_shadow_horizontal_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_vertical_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_blur_strength=\"header_5_text_shadow_style,%91object Object%93\" header_6_text_shadow_horizontal_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_vertical_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_blur_strength=\"header_6_text_shadow_style,%91object Object%93\"]\n\n</p>\n<h1 style=\"text-align: center;\"><a href=\"http://itcamefrombeyondpulp.com/books/\"><strong>BOOKS</strong></a></h1>\n<p>\n\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.26.3\"][et_pb_text _builder_version=\"3.26.3\" header_text_color=\"#ffffff\" z_index_tablet=\"500\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" text_text_shadow_horizontal_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_vertical_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_blur_strength=\"text_text_shadow_style,%91object Object%93\" link_text_shadow_horizontal_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_vertical_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_blur_strength=\"link_text_shadow_style,%91object Object%93\" ul_text_shadow_horizontal_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_vertical_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_blur_strength=\"ul_text_shadow_style,%91object Object%93\" ol_text_shadow_horizontal_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_vertical_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_blur_strength=\"ol_text_shadow_style,%91object Object%93\" quote_text_shadow_horizontal_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_vertical_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_blur_strength=\"quote_text_shadow_style,%91object Object%93\" header_text_shadow_horizontal_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_vertical_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_blur_strength=\"header_text_shadow_style,%91object Object%93\" header_2_text_shadow_horizontal_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_vertical_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_blur_strength=\"header_2_text_shadow_style,%91object Object%93\" header_3_text_shadow_horizontal_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_vertical_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_blur_strength=\"header_3_text_shadow_style,%91object Object%93\" header_4_text_shadow_horizontal_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_vertical_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_blur_strength=\"header_4_text_shadow_style,%91object Object%93\" header_5_text_shadow_horizontal_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_vertical_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_blur_strength=\"header_5_text_shadow_style,%91object Object%93\" header_6_text_shadow_horizontal_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_vertical_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_blur_strength=\"header_6_text_shadow_style,%91object Object%93\"]\n\n</p>\n<h1 style=\"text-align: center;\"><a href=\"http://itcamefrombeyondpulp.com/sales/\"><strong>SALES</strong></a></h1>\n<p>\n\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" background_color=\"#e02b20\" width=\"1080px\" module_alignment=\"center\" custom_padding=\"10px||0px|||\" prev_background_color=\"#000000\"][et_pb_row _builder_version=\"3.26.3\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" background_color=\"#ffffff\" custom_padding=\"10px|10px||10px|false|false\" border_width_bottom=\"5px\" border_color_bottom=\"#e02b20\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image _builder_version=\"3.26.3\" src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/hp-sorc.jpg\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\" /][et_pb_text _builder_version=\"3.26.3\" z_index_tablet=\"500\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" text_text_shadow_horizontal_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_vertical_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_blur_strength=\"text_text_shadow_style,%91object Object%93\" link_text_shadow_horizontal_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_vertical_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_blur_strength=\"link_text_shadow_style,%91object Object%93\" ul_text_shadow_horizontal_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_vertical_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_blur_strength=\"ul_text_shadow_style,%91object Object%93\" ol_text_shadow_horizontal_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_vertical_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_blur_strength=\"ol_text_shadow_style,%91object Object%93\" quote_text_shadow_horizontal_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_vertical_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_blur_strength=\"quote_text_shadow_style,%91object Object%93\" header_text_shadow_horizontal_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_vertical_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_blur_strength=\"header_text_shadow_style,%91object Object%93\" header_2_text_shadow_horizontal_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_vertical_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_blur_strength=\"header_2_text_shadow_style,%91object Object%93\" header_3_text_shadow_horizontal_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_vertical_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_blur_strength=\"header_3_text_shadow_style,%91object Object%93\" header_4_text_shadow_horizontal_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_vertical_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_blur_strength=\"header_4_text_shadow_style,%91object Object%93\" header_5_text_shadow_horizontal_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_vertical_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_blur_strength=\"header_5_text_shadow_style,%91object Object%93\" header_6_text_shadow_horizontal_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_vertical_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_blur_strength=\"header_6_text_shadow_style,%91object Object%93\"]\n\n<h3 style=\"text-align: center;\"><strong><em>Harry Potter and the Sorcerer\'s Stone</em> (Chris Columbus, 2001, 152 min.)</strong></h3>\n<p>I sat watching the first installment of the <i>Harry Potter</i> franchise, mildly entertained but nagged by something that I couldn\'t figure out until nearly an hour into the film: I had already seen it, and it was better the first time. I had seen it in my head, one day just before the film was originally released in 2001; I was home sick from work, and I read a large chunk of it while soaking in a bath, and finished the rest later that day. The pages flew by, and I literally couldn\'t put it down. There\'s something about the experience of reading a really exciting page-turner that a film version, especially such a concertedly faithful adaptation as this one, can\'t reproduce. It\'s a Xerox copy of the book, and a copy is never as good as the original.</p>\n<p>I am not one of those people who hates movies that change books; in fact, I rather enjoy it when books I enjoy are made into movies that I enjoy for completely different reasons. Literature and film are two radically different media; things that work on the page may not work as well in the harsh \"reality\" of a more visual medium. The essential thing when adapting a beloved book is to capture the essence of what made the book great. Attempting to reproduce visually everything that happens in a book is not a good way of capturing that essence—sometimes, you lose the feel when you worry too much about the look.</p>\n<p>For the five or six of you who don\'t at least know the story, Harry Potter (Daniel Radcliffe) is the son of wizards who were killed by Voldemort, an evil sorcerer whose lust for power led him to kill off everyone who opposed him. He succeeded, but when he tried to kill the infant Harry, he was seemingly destroyed, the boy untouched save for a lightning-shaped scar on his forehead. He was left with his Muggle relatives (Muggles are regular people, non-wizards) the Dursleys, who are crude, selfish, and devoutly anti-magic. We catch up with Harry as he is living in the hell of suburban London, sleeping in a closet beneath the stairs while his fat cousin Dudley gets all the attention. He gets his first inkling of his magical abilities at the zoo in a funny scene that ends with Dudley trapped in the snake cage. Suddenly, letters start to arrive for him from Hogwarts Academy, the leading school for sorcerers. Despite his ornery relatives\' efforts, he is taken away by Hagrid (Robbie Coltrane), the groundskeeper for Hogwart\'s. He is introduced to his heritage as both a wizard and a hero; everyone in the magical world knows his name.</p>\n<p>At Hogwart\'s, he meets the core characters who will populate the novels and the films based on them. There is Ron Weasley (Rupert Grint), a poor kid with bright red hair with whom Harry quickly makes friends; Hermione (Emma Watson), a know-it-all who nonetheless befriends the two boys; and Draco Malfoy (Tom Felton), a pretty boy with a mean streak who wants to learn magic for the power he can gain from it. There are also the professors: Dumbledore (the late great Richard Harris), who runs the school and feels protective toward Harry; Snape (Alan Rickman), the head of the Slytherin house who takes an instant dislike for Harry; Quirrell (Ian Hart), a stuttering nervous wreck; and McGonagall (Maggie Smith), whose hard demeanor masks a protective streak. Harry is quickly acculturated to the world of Hogwart\'s: he learns spells and potions, discovers that he is a gifted wizard who is good at practically everything, and manages to get into trouble on a nearly daily basis. He and his friends stumble onto a mystery that involves a stone that gives eternal life, a creature that kills unicorns, a mirror that shows you what you think you want, and a mysterious trap door that guards something important enough to be watched over by Fluffy, a Cerberus-like three-headed monster.</p>\n<p>Of the characters, the child actors, many of them first-timers, acquitted themselves well; indeed, they looked and talked much like I imagined them. My favorite character was Hagrid, the shambling buffoon who always says more than he should; I found myself laughing and smiling every time he came onscreen. Alan Rickman was suitably snarling and evil as Snape, while Richard Harris created a majestic and kindly Dumbledore.</p>\n<p>I had some problems with the special effects. A lot of them weren\'t very good. Actually, I suppose they were very good, but they were too perfect, too clear: they stood out from the background as effects, not as seamlessly integrated parts of the magical world the filmmakers were trying to recreate. I was especially disappointed by the troll that attacks Hermione and the Quidditch game, which was one of the best sequences in the book because, in your imagination, the rules of gravity and space don\'t apply. Something about seeing it enacted by real people made it seem a lot like Christopher Reeve, arm extended, \"flying\" against a blue screen as <i><em>Superman</em></i>. I reserve special enmity for the Oscar-nominated score by John Williams; it was everywhere, getting in the way, trying to make us feel a certain way, wall to wall, whenever nobody was talking. It was excessive, a good example of what\'s wrong with a lot of movie music.</p>\n<p>I suppose that\'s the essential complaint I had with the movie. It tried so hard to be faithful to the book, to recreate exactly every character, every event, every nuance, that it shot itself in the foot because it is impossible to trump the images that readers, at least this one, get in their heads when they\'re reading a good book. In the book, during the exciting scenes, the pages flew by, as I rushed to see what was going to happen next. You can\'t do that onscreen; director Chris Columbus could only show what was there in real time, which often seemed too slow and stately. I wonder what a more imaginative director, such as Tim Burton or Terry Gilliam, might have done with the material.</p>\n\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Harry Potter and the Sorcerer\'s Stone (2001)','','inherit','closed','closed','','161-autosave-v1','','','2019-07-24 23:17:18','2019-07-24 23:17:18','',161,'http://itcamefrombeyondpulp.com/uncategorized/161-autosave-v1/',0,'revision','',0),(209,1,'2019-07-24 21:53:53','2019-07-24 21:53:53','[et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" custom_padding=\"0px|||||\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" custom_margin=\"||11px|||\" global_module=\"74\" next_background_color=\"#000000\"][et_pb_row global_parent=\"74\" custom_padding=\"0px||0px|||\" custom_margin=\"|auto|-66px|auto||\" _builder_version=\"3.26.3\"][et_pb_column type=\"4_4\" global_parent=\"74\" _builder_version=\"3.26.3\"][et_pb_image global_parent=\"74\" src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/header.jpg\" url=\"http://itcamefrombeyondpulp.com\" _builder_version=\"3.26.3\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.26.3\" width=\"1080px\" inner_module_alignment=\"center\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" module_alignment=\"center\" custom_padding=\"0px||0px||false|false\" prev_background_color=\"#000000\" global_module=\"175\" next_background_color=\"#000000\"][et_pb_fullwidth_menu global_parent=\"175\" menu_id=\"2\" submenu_direction=\"downwards\" fullwidth_menu=\"off\" dropdown_menu_text_color=\"#ffffff\" _builder_version=\"3.26.3\" menu_font=\"|800||on|||||\" menu_text_color=\"#ffffff\" menu_font_size=\"22px\" menu_letter_spacing=\"5px\" background_color=\"#e02b20\" border_width_bottom=\"5px\" text_orientation=\"center\" background_layout=\"dark\" custom_padding=\"1px||0px||false|false\" z_index_tablet=\"500\" menu_text_shadow_horizontal_length_tablet=\"0px\" menu_text_shadow_vertical_length_tablet=\"0px\" menu_text_shadow_blur_strength_tablet=\"1px\" border_width_bottom_tablet=\"5px\" border_width_bottom_phone=\"5px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" custom_margin=\"0px||||false|false\" /][/et_pb_section][et_pb_section bb_built=\"1\" fullwidth=\"off\" specialty=\"off\" prev_background_color=\"#000000\"][et_pb_row][et_pb_column type=\"1_3\"][et_pb_text _builder_version=\"3.26.3\" text_text_shadow_horizontal_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\"]\r\n\r\n<h3 style=\"text-align: center;\">Latest Book Reviews</h3>\r\n\r\n[/et_pb_text][et_pb_blog _builder_version=\"3.26.3\" posts_number=\"3\" include_categories=\"7\" show_thumbnail=\"off\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_excerpt=\"off\" show_pagination=\"off\" background_color=\"#ffffff\" box_shadow_horizontal_image_tablet=\"0px\" box_shadow_vertical_image_tablet=\"0px\" box_shadow_blur_image_tablet=\"40px\" box_shadow_spread_image_tablet=\"0px\" text_shadow_horizontal_length=\"text_shadow_style,%91object Object%93\" text_shadow_horizontal_length_tablet=\"0px\" text_shadow_vertical_length=\"text_shadow_style,%91object Object%93\" text_shadow_vertical_length_tablet=\"0px\" text_shadow_blur_strength=\"text_shadow_style,%91object Object%93\" text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_blur_strength_tablet=\"1px\" body_text_shadow_horizontal_length=\"body_text_shadow_style,%91object Object%93\" body_text_shadow_horizontal_length_tablet=\"0px\" body_text_shadow_vertical_length=\"body_text_shadow_style,%91object Object%93\" body_text_shadow_vertical_length_tablet=\"0px\" body_text_shadow_blur_strength=\"body_text_shadow_style,%91object Object%93\" body_text_shadow_blur_strength_tablet=\"1px\" body_link_text_shadow_horizontal_length=\"body_link_text_shadow_style,%91object Object%93\" body_link_text_shadow_horizontal_length_tablet=\"0px\" body_link_text_shadow_vertical_length=\"body_link_text_shadow_style,%91object Object%93\" body_link_text_shadow_vertical_length_tablet=\"0px\" body_link_text_shadow_blur_strength=\"body_link_text_shadow_style,%91object Object%93\" body_link_text_shadow_blur_strength_tablet=\"1px\" body_ul_text_shadow_horizontal_length=\"body_ul_text_shadow_style,%91object Object%93\" body_ul_text_shadow_horizontal_length_tablet=\"0px\" body_ul_text_shadow_vertical_length=\"body_ul_text_shadow_style,%91object Object%93\" body_ul_text_shadow_vertical_length_tablet=\"0px\" body_ul_text_shadow_blur_strength=\"body_ul_text_shadow_style,%91object Object%93\" body_ul_text_shadow_blur_strength_tablet=\"1px\" body_ol_text_shadow_horizontal_length=\"body_ol_text_shadow_style,%91object Object%93\" body_ol_text_shadow_horizontal_length_tablet=\"0px\" body_ol_text_shadow_vertical_length=\"body_ol_text_shadow_style,%91object Object%93\" body_ol_text_shadow_vertical_length_tablet=\"0px\" body_ol_text_shadow_blur_strength=\"body_ol_text_shadow_style,%91object Object%93\" body_ol_text_shadow_blur_strength_tablet=\"1px\" body_quote_text_shadow_horizontal_length=\"body_quote_text_shadow_style,%91object Object%93\" body_quote_text_shadow_horizontal_length_tablet=\"0px\" body_quote_text_shadow_vertical_length=\"body_quote_text_shadow_style,%91object Object%93\" body_quote_text_shadow_vertical_length_tablet=\"0px\" body_quote_text_shadow_blur_strength=\"body_quote_text_shadow_style,%91object Object%93\" body_quote_text_shadow_blur_strength_tablet=\"1px\" meta_text_shadow_horizontal_length=\"meta_text_shadow_style,%91object Object%93\" meta_text_shadow_horizontal_length_tablet=\"0px\" meta_text_shadow_vertical_length=\"meta_text_shadow_style,%91object Object%93\" meta_text_shadow_vertical_length_tablet=\"0px\" meta_text_shadow_blur_strength=\"meta_text_shadow_style,%91object Object%93\" meta_text_shadow_blur_strength_tablet=\"1px\" read_more_text_shadow_horizontal_length=\"read_more_text_shadow_style,%91object Object%93\" read_more_text_shadow_horizontal_length_tablet=\"0px\" read_more_text_shadow_vertical_length=\"read_more_text_shadow_style,%91object Object%93\" read_more_text_shadow_vertical_length_tablet=\"0px\" read_more_text_shadow_blur_strength=\"read_more_text_shadow_style,%91object Object%93\" read_more_text_shadow_blur_strength_tablet=\"1px\" pagination_text_shadow_horizontal_length=\"pagination_text_shadow_style,%91object Object%93\" pagination_text_shadow_horizontal_length_tablet=\"0px\" pagination_text_shadow_vertical_length=\"pagination_text_shadow_style,%91object Object%93\" pagination_text_shadow_vertical_length_tablet=\"0px\" pagination_text_shadow_blur_strength=\"pagination_text_shadow_style,%91object Object%93\" pagination_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\" /][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text _builder_version=\"3.26.3\" text_text_shadow_horizontal_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\"]\r\n\r\n<h3 style=\"text-align: center;\">Latest Movie &amp; TV Reviews</h3>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text _builder_version=\"3.26.3\" text_text_shadow_horizontal_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\"]\r\n\r\n<h3 style=\"text-align: center;\">Sci-Fi for Sale</h3>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','','','inherit','closed','closed','','17-revision-v1','','','2019-07-24 21:53:53','2019-07-24 21:53:53','',17,'http://itcamefrombeyondpulp.com/uncategorized/17-revision-v1/',0,'revision','',0),(210,1,'2019-07-24 21:54:08','2019-07-24 21:54:08','[et_pb_section bb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.26.3\" width=\"1080px\" inner_module_alignment=\"center\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" module_alignment=\"center\" custom_padding=\"0px||0px||false|false\" prev_background_color=\"#000000\" next_background_color=\"#000000\" template_type=\"section\"][et_pb_fullwidth_menu menu_id=\"2\" submenu_direction=\"downwards\" fullwidth_menu=\"off\" dropdown_menu_text_color=\"#ffffff\" _builder_version=\"3.26.3\" menu_font=\"|800||on|||||\" menu_text_color=\"#ffffff\" menu_font_size=\"22px\" menu_letter_spacing=\"5px\" background_color=\"#e02b20\" border_width_bottom=\"5px\" text_orientation=\"center\" background_layout=\"dark\" custom_padding=\"1px||0px||false|false\" z_index_tablet=\"500\" menu_text_shadow_horizontal_length_tablet=\"0px\" menu_text_shadow_vertical_length_tablet=\"0px\" menu_text_shadow_blur_strength_tablet=\"1px\" border_width_bottom_tablet=\"5px\" border_width_bottom_phone=\"5px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" custom_margin=\"0px||||false|false\" /][/et_pb_section]','nav bar','','inherit','closed','closed','','175-revision-v1','','','2019-07-24 21:54:08','2019-07-24 21:54:08','',175,'http://itcamefrombeyondpulp.com/uncategorized/175-revision-v1/',0,'revision','',0),(211,1,'2019-07-24 21:54:43','2019-07-24 21:54:43','[et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" custom_padding=\"0px|||||\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" custom_margin=\"||11px|||\" next_background_color=\"#000000\" global_module=\"74\"][et_pb_row global_parent=\"74\" custom_padding=\"0px||0px|||\" custom_margin=\"|auto|-66px|auto||\" _builder_version=\"3.26.3\"][et_pb_column type=\"4_4\" global_parent=\"74\" _builder_version=\"3.26.3\"][et_pb_image global_parent=\"74\" src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/header.jpg\" url=\"http://itcamefrombeyondpulp.com\" _builder_version=\"3.26.3\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.26.3\" width=\"1080px\" inner_module_alignment=\"center\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" module_alignment=\"center\" custom_padding=\"0px||0px||false|false\" prev_background_color=\"#000000\" global_module=\"175\" next_background_color=\"#000000\"][et_pb_fullwidth_menu global_parent=\"175\" menu_id=\"2\" submenu_direction=\"downwards\" fullwidth_menu=\"off\" dropdown_menu_text_color=\"#ffffff\" _builder_version=\"3.26.3\" menu_font=\"|800||on|||||\" menu_text_color=\"#ffffff\" menu_font_size=\"22px\" menu_letter_spacing=\"5px\" background_color=\"#e02b20\" border_width_bottom=\"5px\" text_orientation=\"center\" background_layout=\"dark\" custom_padding=\"1px||0px||false|false\" z_index_tablet=\"500\" menu_text_shadow_horizontal_length_tablet=\"0px\" menu_text_shadow_vertical_length_tablet=\"0px\" menu_text_shadow_blur_strength_tablet=\"1px\" border_width_bottom_tablet=\"5px\" border_width_bottom_phone=\"5px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" custom_margin=\"0px||||false|false\" /][/et_pb_section][et_pb_section bb_built=\"1\" fullwidth=\"off\" specialty=\"off\" prev_background_color=\"#000000\" inner_width=\"auto\" inner_max_width=\"1080px\"][et_pb_row][et_pb_column type=\"1_3\" custom_padding__hover=\"|||\" custom_padding=\"|||\"][et_pb_text _builder_version=\"3.26.3\" text_text_shadow_horizontal_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\"]\r\n\r\n<h3 style=\"text-align: center;\">Latest Book Reviews</h3>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" custom_padding__hover=\"|||\" custom_padding=\"|||\"][et_pb_text _builder_version=\"3.26.3\" text_text_shadow_horizontal_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\"]\r\n\r\n<h3 style=\"text-align: center;\">Latest Movie &amp; TV Reviews</h3>\r\n\r\n[/et_pb_text][et_pb_blog _builder_version=\"3.26.3\" posts_number=\"3\" include_categories=\"6\" show_thumbnail=\"off\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_excerpt=\"off\" show_pagination=\"off\" background_color=\"#ffffff\" box_shadow_horizontal_image_tablet=\"0px\" box_shadow_vertical_image_tablet=\"0px\" box_shadow_blur_image_tablet=\"40px\" box_shadow_spread_image_tablet=\"0px\" text_shadow_horizontal_length=\"text_shadow_style,%91object Object%93\" text_shadow_horizontal_length_tablet=\"0px\" text_shadow_vertical_length=\"text_shadow_style,%91object Object%93\" text_shadow_vertical_length_tablet=\"0px\" text_shadow_blur_strength=\"text_shadow_style,%91object Object%93\" text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_blur_strength_tablet=\"1px\" body_text_shadow_horizontal_length=\"body_text_shadow_style,%91object Object%93\" body_text_shadow_horizontal_length_tablet=\"0px\" body_text_shadow_vertical_length=\"body_text_shadow_style,%91object Object%93\" body_text_shadow_vertical_length_tablet=\"0px\" body_text_shadow_blur_strength=\"body_text_shadow_style,%91object Object%93\" body_text_shadow_blur_strength_tablet=\"1px\" body_link_text_shadow_horizontal_length=\"body_link_text_shadow_style,%91object Object%93\" body_link_text_shadow_horizontal_length_tablet=\"0px\" body_link_text_shadow_vertical_length=\"body_link_text_shadow_style,%91object Object%93\" body_link_text_shadow_vertical_length_tablet=\"0px\" body_link_text_shadow_blur_strength=\"body_link_text_shadow_style,%91object Object%93\" body_link_text_shadow_blur_strength_tablet=\"1px\" body_ul_text_shadow_horizontal_length=\"body_ul_text_shadow_style,%91object Object%93\" body_ul_text_shadow_horizontal_length_tablet=\"0px\" body_ul_text_shadow_vertical_length=\"body_ul_text_shadow_style,%91object Object%93\" body_ul_text_shadow_vertical_length_tablet=\"0px\" body_ul_text_shadow_blur_strength=\"body_ul_text_shadow_style,%91object Object%93\" body_ul_text_shadow_blur_strength_tablet=\"1px\" body_ol_text_shadow_horizontal_length=\"body_ol_text_shadow_style,%91object Object%93\" body_ol_text_shadow_horizontal_length_tablet=\"0px\" body_ol_text_shadow_vertical_length=\"body_ol_text_shadow_style,%91object Object%93\" body_ol_text_shadow_vertical_length_tablet=\"0px\" body_ol_text_shadow_blur_strength=\"body_ol_text_shadow_style,%91object Object%93\" body_ol_text_shadow_blur_strength_tablet=\"1px\" body_quote_text_shadow_horizontal_length=\"body_quote_text_shadow_style,%91object Object%93\" body_quote_text_shadow_horizontal_length_tablet=\"0px\" body_quote_text_shadow_vertical_length=\"body_quote_text_shadow_style,%91object Object%93\" body_quote_text_shadow_vertical_length_tablet=\"0px\" body_quote_text_shadow_blur_strength=\"body_quote_text_shadow_style,%91object Object%93\" body_quote_text_shadow_blur_strength_tablet=\"1px\" meta_text_shadow_horizontal_length=\"meta_text_shadow_style,%91object Object%93\" meta_text_shadow_horizontal_length_tablet=\"0px\" meta_text_shadow_vertical_length=\"meta_text_shadow_style,%91object Object%93\" meta_text_shadow_vertical_length_tablet=\"0px\" meta_text_shadow_blur_strength=\"meta_text_shadow_style,%91object Object%93\" meta_text_shadow_blur_strength_tablet=\"1px\" read_more_text_shadow_horizontal_length=\"read_more_text_shadow_style,%91object Object%93\" read_more_text_shadow_horizontal_length_tablet=\"0px\" read_more_text_shadow_vertical_length=\"read_more_text_shadow_style,%91object Object%93\" read_more_text_shadow_vertical_length_tablet=\"0px\" read_more_text_shadow_blur_strength=\"read_more_text_shadow_style,%91object Object%93\" read_more_text_shadow_blur_strength_tablet=\"1px\" pagination_text_shadow_horizontal_length=\"pagination_text_shadow_style,%91object Object%93\" pagination_text_shadow_horizontal_length_tablet=\"0px\" pagination_text_shadow_vertical_length=\"pagination_text_shadow_style,%91object Object%93\" pagination_text_shadow_vertical_length_tablet=\"0px\" pagination_text_shadow_blur_strength=\"pagination_text_shadow_style,%91object Object%93\" pagination_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\" /][/et_pb_column][et_pb_column type=\"1_3\" custom_padding__hover=\"|||\" custom_padding=\"|||\"][et_pb_text _builder_version=\"3.26.3\" text_text_shadow_horizontal_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\"]\r\n\r\n<h3 style=\"text-align: center;\">Sci-Fi for Sale</h3>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','','','inherit','closed','closed','','17-revision-v1','','','2019-07-24 21:54:43','2019-07-24 21:54:43','',17,'http://itcamefrombeyondpulp.com/uncategorized/17-revision-v1/',0,'revision','',0),(212,1,'2019-07-24 21:57:01','2019-07-24 21:57:01','[et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" custom_padding=\"0px|||||\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" custom_margin=\"||11px|||\" next_background_color=\"#000000\" global_module=\"74\"][et_pb_row global_parent=\"74\" custom_padding=\"0px||0px|||\" custom_margin=\"|auto|-66px|auto||\" _builder_version=\"3.26.3\"][et_pb_column type=\"4_4\" global_parent=\"74\" _builder_version=\"3.26.3\"][et_pb_image global_parent=\"74\" src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/header.jpg\" url=\"http://itcamefrombeyondpulp.com\" _builder_version=\"3.26.3\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.26.3\" width=\"1080px\" inner_module_alignment=\"center\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" module_alignment=\"center\" custom_padding=\"0px||0px||false|false\" prev_background_color=\"#000000\" next_background_color=\"#000000\" global_module=\"175\"][et_pb_fullwidth_menu global_parent=\"175\" menu_id=\"2\" submenu_direction=\"downwards\" fullwidth_menu=\"off\" dropdown_menu_text_color=\"#ffffff\" _builder_version=\"3.26.3\" menu_font=\"|800||on|||||\" menu_text_color=\"#ffffff\" menu_font_size=\"22px\" menu_letter_spacing=\"5px\" background_color=\"#e02b20\" border_width_bottom=\"5px\" text_orientation=\"center\" background_layout=\"dark\" custom_padding=\"1px||0px||false|false\" z_index_tablet=\"500\" menu_text_shadow_horizontal_length_tablet=\"0px\" menu_text_shadow_vertical_length_tablet=\"0px\" menu_text_shadow_blur_strength_tablet=\"1px\" border_width_bottom_tablet=\"5px\" border_width_bottom_phone=\"5px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" custom_margin=\"0px||||false|false\" /][/et_pb_section][et_pb_section bb_built=\"1\" fullwidth=\"off\" specialty=\"off\" prev_background_color=\"#000000\" inner_width=\"auto\" inner_max_width=\"1080px\"][et_pb_row][et_pb_column type=\"1_3\" custom_padding__hover=\"|||\" custom_padding=\"|||\"][et_pb_text _builder_version=\"3.26.3\" text_text_shadow_horizontal_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\"]\r\n\r\n<h3 style=\"text-align: center;\">Latest Book Reviews</h3>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" custom_padding__hover=\"|||\" custom_padding=\"|||\"][et_pb_text _builder_version=\"3.26.3\" text_text_shadow_horizontal_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\"]\r\n\r\n<h3 style=\"text-align: center;\">Latest Movie &amp; TV Reviews</h3>\r\n\r\n[/et_pb_text][et_pb_blog _builder_version=\"3.26.3\" posts_number=\"3\" include_categories=\"6\" show_thumbnail=\"off\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_excerpt=\"off\" show_pagination=\"off\" background_color=\"#ffffff\" box_shadow_horizontal_image_tablet=\"0px\" box_shadow_vertical_image_tablet=\"0px\" box_shadow_blur_image_tablet=\"40px\" box_shadow_spread_image_tablet=\"0px\" text_shadow_horizontal_length=\"text_shadow_style,%91object Object%93\" text_shadow_horizontal_length_tablet=\"0px\" text_shadow_vertical_length=\"text_shadow_style,%91object Object%93\" text_shadow_vertical_length_tablet=\"0px\" text_shadow_blur_strength=\"text_shadow_style,%91object Object%93\" text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_blur_strength_tablet=\"1px\" body_text_shadow_horizontal_length=\"body_text_shadow_style,%91object Object%93\" body_text_shadow_horizontal_length_tablet=\"0px\" body_text_shadow_vertical_length=\"body_text_shadow_style,%91object Object%93\" body_text_shadow_vertical_length_tablet=\"0px\" body_text_shadow_blur_strength=\"body_text_shadow_style,%91object Object%93\" body_text_shadow_blur_strength_tablet=\"1px\" body_link_text_shadow_horizontal_length=\"body_link_text_shadow_style,%91object Object%93\" body_link_text_shadow_horizontal_length_tablet=\"0px\" body_link_text_shadow_vertical_length=\"body_link_text_shadow_style,%91object Object%93\" body_link_text_shadow_vertical_length_tablet=\"0px\" body_link_text_shadow_blur_strength=\"body_link_text_shadow_style,%91object Object%93\" body_link_text_shadow_blur_strength_tablet=\"1px\" body_ul_text_shadow_horizontal_length=\"body_ul_text_shadow_style,%91object Object%93\" body_ul_text_shadow_horizontal_length_tablet=\"0px\" body_ul_text_shadow_vertical_length=\"body_ul_text_shadow_style,%91object Object%93\" body_ul_text_shadow_vertical_length_tablet=\"0px\" body_ul_text_shadow_blur_strength=\"body_ul_text_shadow_style,%91object Object%93\" body_ul_text_shadow_blur_strength_tablet=\"1px\" body_ol_text_shadow_horizontal_length=\"body_ol_text_shadow_style,%91object Object%93\" body_ol_text_shadow_horizontal_length_tablet=\"0px\" body_ol_text_shadow_vertical_length=\"body_ol_text_shadow_style,%91object Object%93\" body_ol_text_shadow_vertical_length_tablet=\"0px\" body_ol_text_shadow_blur_strength=\"body_ol_text_shadow_style,%91object Object%93\" body_ol_text_shadow_blur_strength_tablet=\"1px\" body_quote_text_shadow_horizontal_length=\"body_quote_text_shadow_style,%91object Object%93\" body_quote_text_shadow_horizontal_length_tablet=\"0px\" body_quote_text_shadow_vertical_length=\"body_quote_text_shadow_style,%91object Object%93\" body_quote_text_shadow_vertical_length_tablet=\"0px\" body_quote_text_shadow_blur_strength=\"body_quote_text_shadow_style,%91object Object%93\" body_quote_text_shadow_blur_strength_tablet=\"1px\" meta_text_shadow_horizontal_length=\"meta_text_shadow_style,%91object Object%93\" meta_text_shadow_horizontal_length_tablet=\"0px\" meta_text_shadow_vertical_length=\"meta_text_shadow_style,%91object Object%93\" meta_text_shadow_vertical_length_tablet=\"0px\" meta_text_shadow_blur_strength=\"meta_text_shadow_style,%91object Object%93\" meta_text_shadow_blur_strength_tablet=\"1px\" read_more_text_shadow_horizontal_length=\"read_more_text_shadow_style,%91object Object%93\" read_more_text_shadow_horizontal_length_tablet=\"0px\" read_more_text_shadow_vertical_length=\"read_more_text_shadow_style,%91object Object%93\" read_more_text_shadow_vertical_length_tablet=\"0px\" read_more_text_shadow_blur_strength=\"read_more_text_shadow_style,%91object Object%93\" read_more_text_shadow_blur_strength_tablet=\"1px\" pagination_text_shadow_horizontal_length=\"pagination_text_shadow_style,%91object Object%93\" pagination_text_shadow_horizontal_length_tablet=\"0px\" pagination_text_shadow_vertical_length=\"pagination_text_shadow_style,%91object Object%93\" pagination_text_shadow_vertical_length_tablet=\"0px\" pagination_text_shadow_blur_strength=\"pagination_text_shadow_style,%91object Object%93\" pagination_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\" text_orientation=\"center\" header_font_size=\"12px\" /][/et_pb_column][et_pb_column type=\"1_3\" custom_padding__hover=\"|||\" custom_padding=\"|||\"][et_pb_text _builder_version=\"3.26.3\" text_text_shadow_horizontal_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\"]\r\n\r\n<h3 style=\"text-align: center;\">Sci-Fi for Sale</h3>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','','','inherit','closed','closed','','17-revision-v1','','','2019-07-24 21:57:01','2019-07-24 21:57:01','',17,'http://itcamefrombeyondpulp.com/uncategorized/17-revision-v1/',0,'revision','',0),(215,1,'2019-07-24 22:02:32','2019-07-24 22:02:32','[et_pb_section fb_built=\"1\" _builder_version=\"3.26.3\" custom_margin=\"||11px|||\" custom_padding=\"0px|||||\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" global_module=\"74\"][et_pb_row custom_padding=\"0px||0px|||\" custom_margin=\"|auto|-66px|auto||\" _builder_version=\"3.26.3\"][et_pb_column type=\"4_4\" _builder_version=\"3.26.3\"][et_pb_image src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/header.jpg\" url=\"http://itcamefrombeyondpulp.com\" _builder_version=\"3.26.3\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.26.3\" width=\"1080px\" module_alignment=\"center\" inner_module_alignment=\"center\" custom_padding=\"0px||0px||false|false\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" global_module=\"175\"][et_pb_fullwidth_menu menu_id=\"2\" submenu_direction=\"downwards\" fullwidth_menu=\"off\" dropdown_menu_text_color=\"#ffffff\" _builder_version=\"3.26.3\" menu_font=\"|800||on|||||\" menu_text_color=\"#ffffff\" menu_font_size=\"22px\" menu_letter_spacing=\"5px\" background_color=\"#e02b20\" border_width_bottom=\"5px\" text_orientation=\"center\" background_layout=\"dark\" custom_margin=\"0px||||false|false\" custom_padding=\"1px||0px||false|false\" z_index_tablet=\"500\" menu_text_shadow_horizontal_length_tablet=\"0px\" menu_text_shadow_vertical_length_tablet=\"0px\" menu_text_shadow_blur_strength_tablet=\"1px\" border_width_bottom_tablet=\"5px\" border_width_bottom_phone=\"5px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\"][/et_pb_fullwidth_menu][/et_pb_section]','','','inherit','closed','closed','','17-revision-v1','','','2019-07-24 22:02:32','2019-07-24 22:02:32','',17,'http://itcamefrombeyondpulp.com/uncategorized/17-revision-v1/',0,'revision','',0),(213,1,'2019-07-24 21:59:51','2019-07-24 21:59:51','[et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" custom_padding=\"0px|||||\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" custom_margin=\"||11px|||\" next_background_color=\"#000000\" global_module=\"74\"][et_pb_row global_parent=\"74\" custom_padding=\"0px||0px|||\" custom_margin=\"|auto|-66px|auto||\" _builder_version=\"3.26.3\"][et_pb_column type=\"4_4\" global_parent=\"74\" _builder_version=\"3.26.3\"][et_pb_image global_parent=\"74\" src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/header.jpg\" url=\"http://itcamefrombeyondpulp.com\" _builder_version=\"3.26.3\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.26.3\" width=\"1080px\" inner_module_alignment=\"center\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" module_alignment=\"center\" custom_padding=\"0px||0px||false|false\" prev_background_color=\"#000000\" next_background_color=\"#000000\" global_module=\"175\"][et_pb_fullwidth_menu global_parent=\"175\" menu_id=\"2\" submenu_direction=\"downwards\" fullwidth_menu=\"off\" dropdown_menu_text_color=\"#ffffff\" _builder_version=\"3.26.3\" menu_font=\"|800||on|||||\" menu_text_color=\"#ffffff\" menu_font_size=\"22px\" menu_letter_spacing=\"5px\" background_color=\"#e02b20\" border_width_bottom=\"5px\" text_orientation=\"center\" background_layout=\"dark\" custom_padding=\"1px||0px||false|false\" z_index_tablet=\"500\" menu_text_shadow_horizontal_length_tablet=\"0px\" menu_text_shadow_vertical_length_tablet=\"0px\" menu_text_shadow_blur_strength_tablet=\"1px\" border_width_bottom_tablet=\"5px\" border_width_bottom_phone=\"5px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" custom_margin=\"0px||||false|false\" /][/et_pb_section][et_pb_section bb_built=\"1\" fullwidth=\"off\" specialty=\"off\" prev_background_color=\"#000000\" inner_width=\"auto\" inner_max_width=\"1080px\"][et_pb_row][et_pb_column type=\"1_3\" custom_padding__hover=\"|||\" custom_padding=\"|||\"][et_pb_text _builder_version=\"3.26.3\" text_text_shadow_horizontal_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\"]\r\n\r\n<h3 style=\"text-align: center;\">Latest Book Reviews</h3>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" custom_padding__hover=\"|||\" custom_padding=\"|||\"][et_pb_text _builder_version=\"3.26.3\" text_text_shadow_horizontal_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\"]\r\n\r\n<h3 style=\"text-align: center;\">Latest Movie &amp; TV Reviews</h3>\r\n\r\n[/et_pb_text][et_pb_blog _builder_version=\"3.26.3\" posts_number=\"3\" include_categories=\"6\" show_thumbnail=\"off\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_excerpt=\"off\" show_pagination=\"off\" background_color=\"#ffffff\" box_shadow_horizontal_image_tablet=\"0px\" box_shadow_vertical_image_tablet=\"0px\" box_shadow_blur_image_tablet=\"40px\" box_shadow_spread_image_tablet=\"0px\" text_shadow_horizontal_length=\"text_shadow_style,%91object Object%93\" text_shadow_horizontal_length_tablet=\"0px\" text_shadow_vertical_length=\"text_shadow_style,%91object Object%93\" text_shadow_vertical_length_tablet=\"0px\" text_shadow_blur_strength=\"text_shadow_style,%91object Object%93\" text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_blur_strength_tablet=\"1px\" body_text_shadow_horizontal_length=\"body_text_shadow_style,%91object Object%93\" body_text_shadow_horizontal_length_tablet=\"0px\" body_text_shadow_vertical_length=\"body_text_shadow_style,%91object Object%93\" body_text_shadow_vertical_length_tablet=\"0px\" body_text_shadow_blur_strength=\"body_text_shadow_style,%91object Object%93\" body_text_shadow_blur_strength_tablet=\"1px\" body_link_text_shadow_horizontal_length=\"body_link_text_shadow_style,%91object Object%93\" body_link_text_shadow_horizontal_length_tablet=\"0px\" body_link_text_shadow_vertical_length=\"body_link_text_shadow_style,%91object Object%93\" body_link_text_shadow_vertical_length_tablet=\"0px\" body_link_text_shadow_blur_strength=\"body_link_text_shadow_style,%91object Object%93\" body_link_text_shadow_blur_strength_tablet=\"1px\" body_ul_text_shadow_horizontal_length=\"body_ul_text_shadow_style,%91object Object%93\" body_ul_text_shadow_horizontal_length_tablet=\"0px\" body_ul_text_shadow_vertical_length=\"body_ul_text_shadow_style,%91object Object%93\" body_ul_text_shadow_vertical_length_tablet=\"0px\" body_ul_text_shadow_blur_strength=\"body_ul_text_shadow_style,%91object Object%93\" body_ul_text_shadow_blur_strength_tablet=\"1px\" body_ol_text_shadow_horizontal_length=\"body_ol_text_shadow_style,%91object Object%93\" body_ol_text_shadow_horizontal_length_tablet=\"0px\" body_ol_text_shadow_vertical_length=\"body_ol_text_shadow_style,%91object Object%93\" body_ol_text_shadow_vertical_length_tablet=\"0px\" body_ol_text_shadow_blur_strength=\"body_ol_text_shadow_style,%91object Object%93\" body_ol_text_shadow_blur_strength_tablet=\"1px\" body_quote_text_shadow_horizontal_length=\"body_quote_text_shadow_style,%91object Object%93\" body_quote_text_shadow_horizontal_length_tablet=\"0px\" body_quote_text_shadow_vertical_length=\"body_quote_text_shadow_style,%91object Object%93\" body_quote_text_shadow_vertical_length_tablet=\"0px\" body_quote_text_shadow_blur_strength=\"body_quote_text_shadow_style,%91object Object%93\" body_quote_text_shadow_blur_strength_tablet=\"1px\" meta_text_shadow_horizontal_length=\"meta_text_shadow_style,%91object Object%93\" meta_text_shadow_horizontal_length_tablet=\"0px\" meta_text_shadow_vertical_length=\"meta_text_shadow_style,%91object Object%93\" meta_text_shadow_vertical_length_tablet=\"0px\" meta_text_shadow_blur_strength=\"meta_text_shadow_style,%91object Object%93\" meta_text_shadow_blur_strength_tablet=\"1px\" read_more_text_shadow_horizontal_length=\"read_more_text_shadow_style,%91object Object%93\" read_more_text_shadow_horizontal_length_tablet=\"0px\" read_more_text_shadow_vertical_length=\"read_more_text_shadow_style,%91object Object%93\" read_more_text_shadow_vertical_length_tablet=\"0px\" read_more_text_shadow_blur_strength=\"read_more_text_shadow_style,%91object Object%93\" read_more_text_shadow_blur_strength_tablet=\"1px\" pagination_text_shadow_horizontal_length=\"pagination_text_shadow_style,%91object Object%93\" pagination_text_shadow_horizontal_length_tablet=\"0px\" pagination_text_shadow_vertical_length=\"pagination_text_shadow_style,%91object Object%93\" pagination_text_shadow_vertical_length_tablet=\"0px\" pagination_text_shadow_blur_strength=\"pagination_text_shadow_style,%91object Object%93\" pagination_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\" text_orientation=\"center\" header_font_size=\"12px\" body_line_height=\"1em\" /][/et_pb_column][et_pb_column type=\"1_3\" custom_padding__hover=\"|||\" custom_padding=\"|||\"][et_pb_text _builder_version=\"3.26.3\" text_text_shadow_horizontal_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\"]\r\n\r\n<h3 style=\"text-align: center;\">Sci-Fi for Sale</h3>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','','','inherit','closed','closed','','17-revision-v1','','','2019-07-24 21:59:51','2019-07-24 21:59:51','',17,'http://itcamefrombeyondpulp.com/uncategorized/17-revision-v1/',0,'revision','',0),(228,1,'2019-07-24 23:18:32','2019-07-24 23:18:32','[et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" custom_padding=\"0px|||||\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" custom_margin=\"||11px|||\" next_background_color=\"#000000\" template_type=\"section\"][et_pb_row custom_padding=\"0px||0px|||\" custom_margin=\"|auto|-66px|auto||\" _builder_version=\"3.26.3\"][et_pb_column type=\"4_4\" _builder_version=\"3.26.3\"][et_pb_image src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/header.jpg\" url=\"http://itcamefrombeyondpulp.com\" _builder_version=\"3.26.3\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" /][/et_pb_column][/et_pb_row][/et_pb_section]','header','','inherit','closed','closed','','74-revision-v1','','','2019-07-24 23:18:32','2019-07-24 23:18:32','',74,'http://itcamefrombeyondpulp.com/uncategorized/74-revision-v1/',0,'revision','',0),(229,1,'2019-07-24 23:18:57','2019-07-24 23:18:57','[et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" custom_padding=\"0px|||||\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" custom_margin=\"||11px|||\" next_background_color=\"#e02b20\" template_type=\"section\"][et_pb_row custom_padding=\"0px||0px|||\" custom_margin=\"|auto|-66px|auto||\" _builder_version=\"3.26.3\"][et_pb_column type=\"4_4\" _builder_version=\"3.26.3\"][et_pb_image src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/header.jpg\" url=\"http://itcamefrombeyondpulp.com\" _builder_version=\"3.26.3\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" /][/et_pb_column][/et_pb_row][/et_pb_section]','header','','inherit','closed','closed','','74-revision-v1','','','2019-07-24 23:18:57','2019-07-24 23:18:57','',74,'http://itcamefrombeyondpulp.com/uncategorized/74-revision-v1/',0,'revision','',0),(235,1,'2019-07-25 20:45:51','2019-07-25 20:45:51','[et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" custom_padding=\"0px|||||\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" custom_margin=\"||11px|||\" next_background_color=\"#e02b20\" template_type=\"section\"][et_pb_row custom_padding=\"0px||0px|||\" custom_margin=\"|auto|-66px|auto||\" _builder_version=\"3.26.3\"][et_pb_column type=\"4_4\" _builder_version=\"3.26.3\"][et_pb_image src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/header.jpg\" url=\"http://itcamefrombeyondpulp.com\" _builder_version=\"3.26.3\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" /][/et_pb_column][/et_pb_row][/et_pb_section]','header','','inherit','closed','closed','','74-revision-v1','','','2019-07-25 20:45:51','2019-07-25 20:45:51','',74,'http://itcamefrombeyondpulp.com/uncategorized/74-revision-v1/',0,'revision','',0),(236,1,'2019-07-25 20:50:34','2019-07-25 20:50:34','[et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" custom_padding=\"0px|||||\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" custom_margin=\"||11px|||\" next_background_color=\"#000000\" global_module=\"74\"][et_pb_row global_parent=\"74\" custom_padding=\"0px||0px|||\" custom_margin=\"|auto|-66px|auto||\" _builder_version=\"3.26.3\"][et_pb_column type=\"4_4\" global_parent=\"74\" _builder_version=\"3.26.3\"][et_pb_image global_parent=\"74\" src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/header.jpg\" url=\"http://itcamefrombeyondpulp.com\" _builder_version=\"3.26.3\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.26.3\" width=\"1080px\" inner_module_alignment=\"center\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" module_alignment=\"center\" custom_padding=\"0px||0px||false|false\" prev_background_color=\"#000000\" next_background_color=\"#e02b20\" global_module=\"175\"][et_pb_fullwidth_menu global_parent=\"175\" menu_id=\"2\" submenu_direction=\"downwards\" fullwidth_menu=\"off\" dropdown_menu_text_color=\"#ffffff\" _builder_version=\"3.26.3\" menu_font=\"|800||on|||||\" menu_text_color=\"#ffffff\" menu_font_size=\"22px\" menu_letter_spacing=\"5px\" background_color=\"#e02b20\" border_width_bottom=\"5px\" text_orientation=\"center\" background_layout=\"dark\" custom_padding=\"1px||0px||false|false\" z_index_tablet=\"500\" menu_text_shadow_horizontal_length_tablet=\"0px\" menu_text_shadow_vertical_length_tablet=\"0px\" menu_text_shadow_blur_strength_tablet=\"1px\" border_width_bottom_tablet=\"5px\" border_width_bottom_phone=\"5px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" custom_margin=\"0px||||false|false\" /][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" background_color=\"#e02b20\" width=\"1080px\" module_alignment=\"center\" custom_padding=\"10px||0px|||\" prev_background_color=\"#ffffff\"][et_pb_row _builder_version=\"3.26.3\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" background_color=\"#ffffff\" custom_padding=\"10px|10px||10px|false|false\" border_width_bottom=\"5px\" border_color_bottom=\"#e02b20\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image _builder_version=\"3.26.3\" src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/fountain.jpeg\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\" /][et_pb_text _builder_version=\"3.26.3\" z_index_tablet=\"500\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" text_text_shadow_horizontal_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_vertical_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_blur_strength=\"text_text_shadow_style,%91object Object%93\" link_text_shadow_horizontal_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_vertical_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_blur_strength=\"link_text_shadow_style,%91object Object%93\" ul_text_shadow_horizontal_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_vertical_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_blur_strength=\"ul_text_shadow_style,%91object Object%93\" ol_text_shadow_horizontal_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_vertical_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_blur_strength=\"ol_text_shadow_style,%91object Object%93\" quote_text_shadow_horizontal_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_vertical_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_blur_strength=\"quote_text_shadow_style,%91object Object%93\" header_text_shadow_horizontal_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_vertical_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_blur_strength=\"header_text_shadow_style,%91object Object%93\" header_2_text_shadow_horizontal_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_vertical_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_blur_strength=\"header_2_text_shadow_style,%91object Object%93\" header_3_text_shadow_horizontal_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_vertical_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_blur_strength=\"header_3_text_shadow_style,%91object Object%93\" header_4_text_shadow_horizontal_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_vertical_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_blur_strength=\"header_4_text_shadow_style,%91object Object%93\" header_5_text_shadow_horizontal_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_vertical_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_blur_strength=\"header_5_text_shadow_style,%91object Object%93\" header_6_text_shadow_horizontal_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_vertical_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_blur_strength=\"header_6_text_shadow_style,%91object Object%93\"]\n\n<h3 style=\"text-align: center;\"><strong><em>The Fountain</em> (Darren Aronofsky, 2006, 96 min.)</strong></h3>\n<p>Darren Aronofsky\'s <i>The Fountain</i> is many things, but primarily it\'s a film about love. Countless films address the same topic, or use it as a framework to tell a story, but few are as passionate and insistent in their focus. This isn\'t the superficial love of pop songs; it\'s not cynical <i>Ghost</i>-style manipulation. It\'s a naked, fearless film about Love and Forever, with strident capital letters, about a fierce, time-defying love that connects one couple through a thousand years of history. It\'s also a poignant mediation on how missed chances can echo forever. It\'s also a bold artistic statement from a director who has never let a limited budget stand in his way. It might not always make perfect sense, but it\'s the best film of the year, the most moving and romantic film to come out in a long time.</p>\n<p>Five hundred years ago, a conquistador named Tomas (Hugh Jackman) vows to the Spanish Queen Isabella (Rachel Weisz) that he will travel to Central America and find the Tree of Life so that they can live together forever. In the present day, a neuroscientist named Tommy Creo (Jackman) is frantically trying to find a cure for cancer to in time to save his wife Izzy (Weisz), who is dying of a brain tumor while attempting to finish a novel about the conquistador and his queen. In his desperation, Tommy turns to some bark from an \"old growth\" Central American tree, with surprising results. Five hundred years in the future, Tommy floats through space in a sphere containing a gigantic tree, traveling toward a distant nebula as the events of the past thousand years haunt him. According to the film, the Mayans believed that this nebula was their underworld; its location had helped Tomas find the Tree of Life; now Tommy is traveling there so he can be with Izzy forever. After 1000 years, Tommy has learned patience; he does Tae Bo in front of a blanket of stars, and tattoos rings on his skin to remind him of how long he\'s waited, and how he can wait a little while longer. \"Finish it,\" Izzy\'s voice echoes. \"We\'re almost there,\" he replies.</p>\n<p>Some of the Eastern elements of future-Tommy\'s world are poorly integrated, and this prompted an involuntary guffaw when future-Tommy and past-Tomas\'s stories connect in an unexpected way. I wish the sap from the Tree of Life didn\'t look like Elmer\'s Glue. I wish Aronofsky hadn\'t gone with the cheap, artificial tactic of suspense-building music just before the beautiful scene on the roof in the snow. There are significant problems with the past segments of the film: Weisz seemed a little lost as the Queen, forced, as she is, to shoulder a little too much iconographic burden, and the segment lacks the kind of circular resolution that the other segments have. The love between Queen Isabella and Tomas the Conquistador would more properly be called worship, which is part of love but not all. What\'s missing is tenderness, which develops during the present-day segments. Whatever problems the film might have are all but forgiven here. Their scenes together are almost unbearably tender; it\'s as if we\'re intruding on private moments between them. Aronofsky\'s camera caresses Weisz; his adoration for her is palpable and catching. If she didn\'t seem up to the earlier segments, she blossoms here. And Jackman shines as well, delivering one of the finest male performances of the year.</p>\n<p>If Aronofsky owes a lot to other films, most obviously Stanley Kubrick\'s <i>2001: A Space Odyssey</i>, the specific vision and scope are all his. Many of the amazing special effects were created not via CGI, which Aronofsky felt (rightly) would ruin the film\'s timelessness, but via micro-photography of chemical reactions in petrie dishes. This is simply brilliant: first, because the resulting effects have a vivid three-dimensionality that CGI effects often lack, and second, because the very method of creating the effects ties in with the themes of the film. Aronofsky\'s limited budget, cut in half after an earlier attempt starring Brad Pitt fell through, is a blessing in other ways. The exteriors are limited, forcing creative transitions between times and places.</p>\n<p>I feel like, unlike so many films, <i>The Fountain</i> rewards repeat viewings; there are elements here, thought out in incredible detail, that I missed the first time but I picked up on when I saw it again the next morning. I liked how even in the cold laboratory settings of the present-day segments, Tommy walks through pools of warm, golden light, tying together the torchlight of the past and the nebular light of the future. At first it seemed out of place, but made sense when I thought about it as future-Tommy working through his memories. I liked how the same triangular pattern of the star system with the nebula in the center kept popping up in the set decoration and shot framings, and also how the starburst pattern from Tomas\'s shrine to his queen kept showing up in much the same ways. But most of all, I loved how it made me want to believe in forever. There\'s not a trace of cynicism here, just incredibly honest and emotional filmmaking that\'s not afraid to slip up in its pursuit of something beautiful. It\'s cinematic poetry in an age when poetry is considered quaint.</p>\n\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','The Fountain (2006)','','inherit','closed','closed','','137-autosave-v1','','','2019-07-25 20:50:34','2019-07-25 20:50:34','',137,'http://itcamefrombeyondpulp.com/uncategorized/137-autosave-v1/',0,'revision','',0),(239,1,'2019-07-25 20:50:51','2019-07-25 20:50:51','[et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" custom_padding=\"0px|||||\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" custom_margin=\"||11px|||\" next_background_color=\"#e02b20\" template_type=\"section\"][et_pb_row custom_padding=\"0px||0px|||\" custom_margin=\"|auto|-66px|auto||\" _builder_version=\"3.26.3\"][et_pb_column type=\"4_4\" _builder_version=\"3.26.3\"][et_pb_image src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/header.jpg\" url=\"http://itcamefrombeyondpulp.com\" _builder_version=\"3.26.3\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" /][/et_pb_column][/et_pb_row][/et_pb_section]','header','','inherit','closed','closed','','74-revision-v1','','','2019-07-25 20:50:51','2019-07-25 20:50:51','',74,'http://itcamefrombeyondpulp.com/uncategorized/74-revision-v1/',0,'revision','',0),(247,1,'2019-07-25 20:52:59','2019-07-25 20:52:59','[et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" custom_padding=\"0px|||||\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" custom_margin=\"||11px|||\" next_background_color=\"#000000\" template_type=\"section\"][et_pb_row custom_padding=\"0px||0px|||\" custom_margin=\"|auto|-66px|auto||\" _builder_version=\"3.26.3\"][et_pb_column type=\"4_4\" _builder_version=\"3.26.3\"][et_pb_image src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/header.jpg\" url=\"http://itcamefrombeyondpulp.com\" _builder_version=\"3.26.3\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" /][/et_pb_column][/et_pb_row][/et_pb_section]','header','','inherit','closed','closed','','74-revision-v1','','','2019-07-25 20:52:59','2019-07-25 20:52:59','',74,'http://itcamefrombeyondpulp.com/uncategorized/74-revision-v1/',0,'revision','',0),(248,1,'2019-07-25 20:53:19','2019-07-25 20:53:19','[et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" custom_padding=\"0px|||||\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" custom_margin=\"||11px|||\" next_background_color=\"#e02b20\" template_type=\"section\"][et_pb_row custom_padding=\"0px||0px|||\" custom_margin=\"|auto|-66px|auto||\" _builder_version=\"3.26.3\"][et_pb_column type=\"4_4\" _builder_version=\"3.26.3\"][et_pb_image src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/header.jpg\" url=\"http://itcamefrombeyondpulp.com\" _builder_version=\"3.26.3\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" /][/et_pb_column][/et_pb_row][/et_pb_section]','header','','inherit','closed','closed','','74-revision-v1','','','2019-07-25 20:53:19','2019-07-25 20:53:19','',74,'http://itcamefrombeyondpulp.com/uncategorized/74-revision-v1/',0,'revision','',0),(253,1,'2019-07-25 21:02:45','2019-07-25 21:02:45','','phantom','','inherit','closed','closed','','phantom','','','2019-07-25 21:02:45','2019-07-25 21:02:45','',251,'http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/phantom.jpeg',0,'attachment','image/jpeg',0),(254,1,'2019-07-25 21:03:19','2019-07-25 21:03:19','[et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" custom_padding=\"0px|||||\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" custom_margin=\"||11px|||\" next_background_color=\"#000000\" global_module=\"74\"][et_pb_row global_parent=\"74\" custom_padding=\"0px||0px|||\" custom_margin=\"|auto|-66px|auto||\" _builder_version=\"3.26.3\"][et_pb_column type=\"4_4\" global_parent=\"74\" _builder_version=\"3.26.3\"][et_pb_image global_parent=\"74\" src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/header.jpg\" url=\"http://itcamefrombeyondpulp.com\" _builder_version=\"3.26.3\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.26.3\" width=\"1080px\" inner_module_alignment=\"center\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" module_alignment=\"center\" custom_padding=\"0px||0px||false|false\" next_background_color=\"#e02b20\" global_module=\"175\" prev_background_color=\"#000000\"][et_pb_fullwidth_menu global_parent=\"175\" menu_id=\"2\" submenu_direction=\"downwards\" fullwidth_menu=\"off\" dropdown_menu_text_color=\"#ffffff\" _builder_version=\"3.26.3\" menu_font=\"|800||on|||||\" menu_text_color=\"#ffffff\" menu_font_size=\"22px\" menu_letter_spacing=\"5px\" background_color=\"#e02b20\" border_width_bottom=\"5px\" text_orientation=\"center\" background_layout=\"dark\" custom_padding=\"1px||0px||false|false\" z_index_tablet=\"500\" menu_text_shadow_horizontal_length_tablet=\"0px\" menu_text_shadow_vertical_length_tablet=\"0px\" menu_text_shadow_blur_strength_tablet=\"1px\" border_width_bottom_tablet=\"5px\" border_width_bottom_phone=\"5px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" custom_margin=\"0px||||false|false\" /][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" background_color=\"#e02b20\" width=\"1080px\" module_alignment=\"center\" custom_padding=\"10px||0px|||\" prev_background_color=\"#ffffff\"][et_pb_row _builder_version=\"3.26.3\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" background_color=\"#ffffff\" custom_padding=\"10px|10px||10px|false|false\" border_width_bottom=\"5px\" border_color_bottom=\"#e02b20\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image _builder_version=\"3.26.3\" src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/phantom.jpeg\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\" /][et_pb_text _builder_version=\"3.26.3\" z_index_tablet=\"500\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" text_text_shadow_horizontal_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_vertical_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_blur_strength=\"text_text_shadow_style,%91object Object%93\" link_text_shadow_horizontal_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_vertical_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_blur_strength=\"link_text_shadow_style,%91object Object%93\" ul_text_shadow_horizontal_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_vertical_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_blur_strength=\"ul_text_shadow_style,%91object Object%93\" ol_text_shadow_horizontal_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_vertical_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_blur_strength=\"ol_text_shadow_style,%91object Object%93\" quote_text_shadow_horizontal_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_vertical_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_blur_strength=\"quote_text_shadow_style,%91object Object%93\" header_text_shadow_horizontal_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_vertical_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_blur_strength=\"header_text_shadow_style,%91object Object%93\" header_2_text_shadow_horizontal_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_vertical_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_blur_strength=\"header_2_text_shadow_style,%91object Object%93\" header_3_text_shadow_horizontal_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_vertical_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_blur_strength=\"header_3_text_shadow_style,%91object Object%93\" header_4_text_shadow_horizontal_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_vertical_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_blur_strength=\"header_4_text_shadow_style,%91object Object%93\" header_5_text_shadow_horizontal_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_vertical_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_blur_strength=\"header_5_text_shadow_style,%91object Object%93\" header_6_text_shadow_horizontal_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_vertical_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_blur_strength=\"header_6_text_shadow_style,%91object Object%93\"]\r\n\r\n<h3 style=\"text-align: center;\"><strong><em>The Phantom Planet</em> (William Marshall, 1961, 82 min.)</strong></h3><p>In the year 1980, Pegasus rockets launched from the moon have been disappearing, so the US Government sends a crack team headed by Captain Frank Chapman (Dean Fredericks) to investigate. After a meteor shower (or is it?) disables his ship and kills his copilot, he crash-lands on the titular phantom planet, actually an asteroid that can flit through space and time. Upon breathing the asteroid\'s atmosphere, he shrinks down to HO scale and finds himself the prisoner of the little people who live there.</p><p>Their leader, Sessom (Francis X. Bushman), is happy to explain. They\'ve created a top-secret acceleration device of some sort—much of the film\'s dialog is expended on attempts to explain what, exactly, it is—that gives them the power to move their planet around. But in the wrong hands, it could be used for evil, so although strangers are welcome to become part of the society and even get their choice of hot chicks to shack up with, they\'re not allowed to leave. Also, there\'s a race of evil lizard people called the Solarites who really want the technology; Sessom and co. are holding one of them prisoner behind a force shield, and what could go wrong with that?</p><p>This film has been featured on <i>Mystery Science Theater 3000</i> and countless other bad-movie late-night TV shows; one internet reviewer commented on the host, a \"fat dude in a werewolf mask,\" making farting sounds throughout the film. Look, it\'s not <em>Citizen Kane</em>. There\'s only two or three sets, and some of the acting is wooden (especially Al Jarvis as the judge of the odd court that decides Chapman\'s fate when he arrives). But if you look at it in terms of what it\'s trying to achieve, it\'s actually quite compelling: a little cheaper-looking than average, but perhaps a little smarter. And despite having approximately a buck fifty to spend on effects, special effects whizzes Charles Duncan and Louis DeWitt deserved Oscars for their astounding miniatures and photographic effects, which outclass most big-budget films of the time.</p><p>The cast includes a couple of famous or would-be famous actors in the twilight of their careers. The stunningly beautiful Coleen Gray, who seemed poised for superstardom after early-career performances in <em>Red River</em>, <em>Nightmare Alley</em>, and <em>Kiss of Death</em>, only to have her contract dropped by Fox, still managed to make a few notable noirs like Phil Karlson\'s <em>Kansas City Confidential</em> and Stanley Kubrick\'s <em>The Killing</em>. She seems a little shell-shocked here, perhaps wondering what happened to her career, still statuesque but distracted. Although the handsome Herron (Anthony Dexter) wants her, she sets her dreamy eyes on the newcomer, although her apparent glee in informing him that he can never escape doesn\'t exactly win him over. She\'s upstaged by the mute Zetha (Dolores Faith), whose smoldering screen presence lasts as long as she remains mute, and is certainly aided when she writhes around on her marble bed.</p><p>And the \"King of Movies\" himself, Francis X. Bushman, plays Sessom, the leader of this tiny civilization. He\'s the focus of the film, and he brings every ounce of his gravitas, drawing on what must have been crushing disappointment with a late career that he never envisioned to make Sessom feel almost Shakespearean in his dignity and pathos. He\'s the tiny king who has control over a force that could transform the universe, only he must live as a vagabond to guard it from people who would misuse it, and meanwhile it\'s slowly destroying him and his people. And there are other surprising moments, like the genuine drama when Chapman\'s copilot is killed. Of course that complexity is presented in a bargain-basement setting, one whose limited budget encourages modern viewers—and probably contemporary viewers as well—to ignore its successes in favor of cackling unmercifully at its failures.</p>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','The Phantom Planet (1961)','','inherit','closed','closed','','251-revision-v1','','','2019-07-25 21:03:19','2019-07-25 21:03:19','',251,'http://itcamefrombeyondpulp.com/uncategorized/251-revision-v1/',0,'revision','',0),(255,1,'2019-07-25 21:03:37','2019-07-25 21:03:37','[et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" custom_padding=\"0px|||||\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" custom_margin=\"||11px|||\" next_background_color=\"#000000\" template_type=\"section\"][et_pb_row custom_padding=\"0px||0px|||\" custom_margin=\"|auto|-66px|auto||\" _builder_version=\"3.26.3\"][et_pb_column type=\"4_4\" _builder_version=\"3.26.3\"][et_pb_image src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/header.jpg\" url=\"http://itcamefrombeyondpulp.com\" _builder_version=\"3.26.3\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" /][/et_pb_column][/et_pb_row][/et_pb_section]','header','','inherit','closed','closed','','74-revision-v1','','','2019-07-25 21:03:37','2019-07-25 21:03:37','',74,'http://itcamefrombeyondpulp.com/uncategorized/74-revision-v1/',0,'revision','',0),(256,1,'2019-07-25 21:04:08','2019-07-25 21:04:08','[et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" custom_padding=\"0px|||||\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" custom_margin=\"||11px|||\" next_background_color=\"#e02b20\" template_type=\"section\"][et_pb_row custom_padding=\"0px||0px|||\" custom_margin=\"|auto|-66px|auto||\" _builder_version=\"3.26.3\"][et_pb_column type=\"4_4\" _builder_version=\"3.26.3\"][et_pb_image src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/header.jpg\" url=\"http://itcamefrombeyondpulp.com\" _builder_version=\"3.26.3\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" /][/et_pb_column][/et_pb_row][/et_pb_section]','header','','inherit','closed','closed','','74-revision-v1','','','2019-07-25 21:04:08','2019-07-25 21:04:08','',74,'http://itcamefrombeyondpulp.com/uncategorized/74-revision-v1/',0,'revision','',0),(260,1,'2019-07-25 22:34:32','2019-07-25 22:34:32','[et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" custom_padding=\"0px|||||\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" custom_margin=\"||11px|||\" next_background_color=\"#000000\" global_module=\"74\"][et_pb_row global_parent=\"74\" custom_padding=\"0px||0px|||\" custom_margin=\"|auto|-66px|auto||\" _builder_version=\"3.26.3\"][et_pb_column type=\"4_4\" global_parent=\"74\" _builder_version=\"3.26.3\"][et_pb_image global_parent=\"74\" src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/header.jpg\" url=\"http://itcamefrombeyondpulp.com\" _builder_version=\"3.26.3\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.26.3\" width=\"1080px\" inner_module_alignment=\"center\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" module_alignment=\"center\" custom_padding=\"0px||0px||false|false\" prev_background_color=\"#000000\" next_background_color=\"#e02b20\" global_module=\"175\"][et_pb_fullwidth_menu global_parent=\"175\" menu_id=\"2\" submenu_direction=\"downwards\" fullwidth_menu=\"off\" dropdown_menu_text_color=\"#ffffff\" _builder_version=\"3.26.3\" menu_font=\"|800||on|||||\" menu_text_color=\"#ffffff\" menu_font_size=\"22px\" menu_letter_spacing=\"5px\" background_color=\"#e02b20\" border_width_bottom=\"5px\" text_orientation=\"center\" background_layout=\"dark\" custom_padding=\"1px||0px||false|false\" z_index_tablet=\"500\" menu_text_shadow_horizontal_length_tablet=\"0px\" menu_text_shadow_vertical_length_tablet=\"0px\" menu_text_shadow_blur_strength_tablet=\"1px\" border_width_bottom_tablet=\"5px\" border_width_bottom_phone=\"5px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" custom_margin=\"0px||||false|false\" /][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" background_color=\"#e02b20\" width=\"1080px\" module_alignment=\"center\" custom_padding=\"10px||0px|||\" prev_background_color=\"#ffffff\"][et_pb_row _builder_version=\"3.26.3\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" background_color=\"#ffffff\" custom_padding=\"10px|10px||10px|false|false\" border_width_bottom=\"5px\" border_color_bottom=\"#e02b20\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image _builder_version=\"3.26.3\" src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/predator.jpeg\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\" /][et_pb_text _builder_version=\"3.26.3\" z_index_tablet=\"500\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" text_text_shadow_horizontal_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_vertical_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_blur_strength=\"text_text_shadow_style,%91object Object%93\" link_text_shadow_horizontal_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_vertical_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_blur_strength=\"link_text_shadow_style,%91object Object%93\" ul_text_shadow_horizontal_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_vertical_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_blur_strength=\"ul_text_shadow_style,%91object Object%93\" ol_text_shadow_horizontal_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_vertical_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_blur_strength=\"ol_text_shadow_style,%91object Object%93\" quote_text_shadow_horizontal_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_vertical_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_blur_strength=\"quote_text_shadow_style,%91object Object%93\" header_text_shadow_horizontal_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_vertical_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_blur_strength=\"header_text_shadow_style,%91object Object%93\" header_2_text_shadow_horizontal_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_vertical_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_blur_strength=\"header_2_text_shadow_style,%91object Object%93\" header_3_text_shadow_horizontal_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_vertical_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_blur_strength=\"header_3_text_shadow_style,%91object Object%93\" header_4_text_shadow_horizontal_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_vertical_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_blur_strength=\"header_4_text_shadow_style,%91object Object%93\" header_5_text_shadow_horizontal_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_vertical_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_blur_strength=\"header_5_text_shadow_style,%91object Object%93\" header_6_text_shadow_horizontal_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_vertical_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_blur_strength=\"header_6_text_shadow_style,%91object Object%93\"]\r\n\r\n<h3 style=\"text-align: center;\"><strong><em>Predator</em> (John McTiernan, 1987, 107 min.)</strong></h3><p>John McTiernan\'s <i>Predator</i> is one of the best sci-fi/action films ever made. It\'s got a no-frills plot, a great leading actor (yes, the Governator could be great in the right role), a colorful supporting cast (even if they are all just a collection of character traits with machine guns), phenomenal location photography courtesy of Donald McAlpine, perfectly integrated special effects, and one of the best monsters in sci-fi history. And then there\'s John McTiernan, who, when he was on (as he was in <em>Die Hard</em> and here), was the best action-movie director in the business. I\'m not going to defend it for any other reasons; if you\'re looking for high art, you already skipped it and I\'m not going to convince you. Instead, I\'m going to make a case for a brilliantly written character, a forgettable guy who, for reasons detailed below, is essential to the film\'s success.</p><p>I would like to draw your attention to the helicopter ride that transports Arnold Schwarzenegger\'s crack team of hardened soldiers to the depths of the jungle, shortly after the beginning the film. Its prime reason for existing is to introduce us to each character\'s identifying traits. It is the most efficient scene of its kind in any action movie I\'ve seen. In action movies, most characters don\'t get developed, because there\'s not enough time. They usually get one trait—the tall guy, the guy with the glasses, the black guy, etc. If a character is lucky, he or she might get more than one trait—the tall guy with glasses, the black guy who tells jokes, etc. On that helicopter ride, we get to know these soldiers. There\'s Hawkins, played by the action-movie writer Shane Black, who wears geeky glasses, tells bad jokes, and has lightning-fast reflexes. There\'s Billy (Sonny Landham), who is a gigantic, laconic Native American who doesn\'t get the jokes. There\'s Mac (Bill Duke), a black man who shaves constantly and is incredibly, almost scarily, intense. Blain (Jesse Ventura) is an arrogant loudmouth who chews tobacco and wears one of those Australian Outback hats. Dillon (Carl Weathers), the newcomer to the group, is eager to fit in, clumsy in his attempts, and disliked by everyone. After this three-minute scene, we know everything we need to know about all of the characters, in addition to learning a little more about Dutch (Schwarzenegger). Other action-movie screenwriters should look to it for guidance. It should be taught in seminars.</p><p>But then there\'s Poncho, played by Richard Chaves. What\'s he doing in that helicopter? At 5\'10\", he is three inches shorter than the next tallest commando. He doesn\'t have hypertrophied biceps or a 30-inch neck. He doesn\'t wear an extravagant hat or huge glasses. He doesn\'t dry-shave with a disposable razor, tell lame jokes, or chew tobacco. He doesn\'t carry a battery-powered machine cannon or a foot-long machete. Compared to the virtual superheroes surrounding him, he\'s pretty ordinary, almost a nobody. But he\'s not a nobody—he\'s us.</p><p>In literature, an audience surrogate is someone who essentially stands in for the reader, asking questions or making observations that prompt exposition or explanation. It\'s often a tool of mystery writers and comic-book writers (Jimmy Olson in <i>Superman</i> is a good example). The audience surrogate is an average person caught up in extraordinary circumstances. Chaves\'s Poncho is one of the most craftily written audience surrogates in film. He\'s not just our window into the film\'s mysteries; he\'s the the guinea pig, the canary in the coal mine, the workhorse, the prompter of catch-phrases, and, significantly, the last commando aside from Arnold to die and the first to be listed in the end credits. Poncho, he of the terminal ordinariness, is one of the most important characters in the film, and the filmmakers knew it.</p><p>Much of the rest of Poncho\'s dialogue is traditional audience surrogate questions and statements, some of which frankly states the obvious, as if he\'s speaking for us. When the team starts finding skinned human bodies, he asks incredulously, \"The guerrillas skinned them?\" And later, \"Why did they skin them?\" Why, indeed? Hmm. Maybe it\'s not guerrillas. After Bill Duke kills a wild boar, thinking it\'s the creature stalking them, Poncho points out, \"You killed a pig.\" When the Predator manages to sneak in through a series of tripwires and steal a dead commando\'s body, Poncho observes, \"It came in through the tripwires.\" But sometimes his observations clear up potential audience questions: we\'re wondering why they don\'t just have the chopper fly to where they are, and he immediately says \"Shitload of good a chopper\'s gonna do us in here anyhow,\" referring to the thick jungle they\'re fighting through. Finally, he\'s the most human in his reactions, giving us someone to identify with. He reacts to the skinned bodies with \"Holy mother of God\"; when Arnold asks him if he\'s found a missing character, he groans \"I can\'t tell,\" referring to the pile of intestines he\'s been asked to identify.</p><p>But let\'s not forget one of his dialogue\'s most important functions: because this is a 1980s action film, someone needs to facilitate the one-liners, and that duty falls to Pancho. Were it not for his \"You\'re bleeding,\" Jesse Ventura would have no reason to utter the film\'s best one-liner, \"I ain\'t got time to bleed.\" He\'s also willing to sacrifice grammar to help his comrades-in-arms. In an exchange with Sonny Landham, after learning that the taciturn Indian is scared, he has an awkward line: \"You ain\'t afraid of no man.\" The reason for the phrasing becomes apparent when Landham replies, \"There\'s something out there, and it ain\'t no man.\"<br /><br />Because we\'re discovering the alien creature\'s mysteries at the same rate as the characters, it\'s no coincidence that our stand-in is usually the one sent out to figure out what\'s going on. He climbs the tree to inspect the downed helicopter. He leads the soldiers out of the rebel camp. He\'s the first to walk into the valley of death. He discovers Hawkins\'s body. He\'s sent out after the huge firefight to discover that they didn\'t hit anything. He believes their attractive rebel captive when she talks about the jungle coming alive; he\'s the only one who can speak Spanish enough to communicate with her (at least until she reveals that she can speak English). His role as trailblazer is crucial: because the film is so careful about what it reveals and when, we\'re often kept in the dark. When the script requires us to learn something, it\'s usually Poncho who does the learning for us.</p><p>It\'s not surprising that he tends to disappear during the big firefights: we came to watch bigger-than-life, musclebound superbeings doing their thing, and we don\'t want to watch some guy who looks like the UPS driver. It\'s also no mistake that he\'s the last commando to die: he\'s our witness to everything that happens in the film, and he holds on until there\'s nothing new for us to learn and the film passes out of the realm of ordinary people like us and into Schwarzenegger vs. alien killing machine territory. The facts that he\'s nearly killed by wandering into one of his own booby traps and then becomes a burden to Schwarzenegger until he\'s rather ignominiously offed by the space monster just adds to the connection: if I were in an Arnold Schwarzenegger movie, I\'d probably wander into a booby trap too.</p><p>In the single best episode of <i>Buffy the Vampire Slayer</i>, \"The Zeppo,\" <i>Buffy</i>\'s audience surrogate, Xander Harris, saves the world without any of his more talented friends noticing. The reference is to the fourth Marx brother—the straight man, the normal guy who doesn\'t get any routines of his own. The Zeppo here, Richard Chaves\'s Poncho, is essential to <i>Predator</i>\'s success, but nobody notices him—including me, until I rewatched the film for this essay. He stands out by resolutely not standing out; he\'s central to the film by being peripheral to the superhero goings-on.</p><p>I will register one complaint with the film. Like John Carpenter\'s <em>The Thing</em>, another nearly perfect sci-fi/thriller, <i>Predator</i> front-loads its biggest—perhaps its only—mistake, and it\'s the same mistake in both films. The first shot is of a spaceship entering Earth\'s atmosphere, which sort of completely ruins what should be a big surprise later on. In <i>The Thing</i>, the big reveal of the huge hole in the ice should be the first confirmation we get that we\'re dealing with something otherworldly; here, the origin of the invisible attacker should be a complete mystery to us. Sure, we don\'t know <i>exactly</i> what we\'re dealing with, but we know it\'s an alien, and that\'s one surprise I\'d rather be surprised by. But that\'s a quibble. Once we get Dutch and company into the jungle, it\'s all tension all the time.</p>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Predator (1987)','','publish','closed','closed','','predator-1987','','','2019-07-25 22:34:32','2019-07-25 22:34:32','',0,'http://itcamefrombeyondpulp.com/?p=260',0,'post','',0),(261,1,'2019-07-25 22:33:56','2019-07-25 22:33:56','','predator','','inherit','closed','closed','','predator','','','2019-07-25 22:33:56','2019-07-25 22:33:56','',260,'http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/predator.jpeg',0,'attachment','image/jpeg',0),(262,1,'2019-07-25 22:34:32','2019-07-25 22:34:32','[et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" custom_padding=\"0px|||||\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" custom_margin=\"||11px|||\" next_background_color=\"#000000\" global_module=\"74\"][et_pb_row global_parent=\"74\" custom_padding=\"0px||0px|||\" custom_margin=\"|auto|-66px|auto||\" _builder_version=\"3.26.3\"][et_pb_column type=\"4_4\" global_parent=\"74\" _builder_version=\"3.26.3\"][et_pb_image global_parent=\"74\" src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/header.jpg\" url=\"http://itcamefrombeyondpulp.com\" _builder_version=\"3.26.3\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.26.3\" width=\"1080px\" inner_module_alignment=\"center\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" module_alignment=\"center\" custom_padding=\"0px||0px||false|false\" prev_background_color=\"#000000\" next_background_color=\"#e02b20\" global_module=\"175\"][et_pb_fullwidth_menu global_parent=\"175\" menu_id=\"2\" submenu_direction=\"downwards\" fullwidth_menu=\"off\" dropdown_menu_text_color=\"#ffffff\" _builder_version=\"3.26.3\" menu_font=\"|800||on|||||\" menu_text_color=\"#ffffff\" menu_font_size=\"22px\" menu_letter_spacing=\"5px\" background_color=\"#e02b20\" border_width_bottom=\"5px\" text_orientation=\"center\" background_layout=\"dark\" custom_padding=\"1px||0px||false|false\" z_index_tablet=\"500\" menu_text_shadow_horizontal_length_tablet=\"0px\" menu_text_shadow_vertical_length_tablet=\"0px\" menu_text_shadow_blur_strength_tablet=\"1px\" border_width_bottom_tablet=\"5px\" border_width_bottom_phone=\"5px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" custom_margin=\"0px||||false|false\" /][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" background_color=\"#e02b20\" width=\"1080px\" module_alignment=\"center\" custom_padding=\"10px||0px|||\" prev_background_color=\"#ffffff\"][et_pb_row _builder_version=\"3.26.3\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" background_color=\"#ffffff\" custom_padding=\"10px|10px||10px|false|false\" border_width_bottom=\"5px\" border_color_bottom=\"#e02b20\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image _builder_version=\"3.26.3\" src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/predator.jpeg\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\" /][et_pb_text _builder_version=\"3.26.3\" z_index_tablet=\"500\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" text_text_shadow_horizontal_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_vertical_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_blur_strength=\"text_text_shadow_style,%91object Object%93\" link_text_shadow_horizontal_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_vertical_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_blur_strength=\"link_text_shadow_style,%91object Object%93\" ul_text_shadow_horizontal_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_vertical_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_blur_strength=\"ul_text_shadow_style,%91object Object%93\" ol_text_shadow_horizontal_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_vertical_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_blur_strength=\"ol_text_shadow_style,%91object Object%93\" quote_text_shadow_horizontal_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_vertical_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_blur_strength=\"quote_text_shadow_style,%91object Object%93\" header_text_shadow_horizontal_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_vertical_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_blur_strength=\"header_text_shadow_style,%91object Object%93\" header_2_text_shadow_horizontal_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_vertical_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_blur_strength=\"header_2_text_shadow_style,%91object Object%93\" header_3_text_shadow_horizontal_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_vertical_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_blur_strength=\"header_3_text_shadow_style,%91object Object%93\" header_4_text_shadow_horizontal_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_vertical_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_blur_strength=\"header_4_text_shadow_style,%91object Object%93\" header_5_text_shadow_horizontal_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_vertical_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_blur_strength=\"header_5_text_shadow_style,%91object Object%93\" header_6_text_shadow_horizontal_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_vertical_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_blur_strength=\"header_6_text_shadow_style,%91object Object%93\"]\r\n\r\n<h3 style=\"text-align: center;\"><strong><em>Predator</em> (John McTiernan, 1987, 107 min.)</strong></h3><p>John McTiernan\'s <i>Predator</i> is one of the best sci-fi/action films ever made. It\'s got a no-frills plot, a great leading actor (yes, the Governator could be great in the right role), a colorful supporting cast (even if they are all just a collection of character traits with machine guns), phenomenal location photography courtesy of Donald McAlpine, perfectly integrated special effects, and one of the best monsters in sci-fi history. And then there\'s John McTiernan, who, when he was on (as he was in <em>Die Hard</em> and here), was the best action-movie director in the business. I\'m not going to defend it for any other reasons; if you\'re looking for high art, you already skipped it and I\'m not going to convince you. Instead, I\'m going to make a case for a brilliantly written character, a forgettable guy who, for reasons detailed below, is essential to the film\'s success.</p><p>I would like to draw your attention to the helicopter ride that transports Arnold Schwarzenegger\'s crack team of hardened soldiers to the depths of the jungle, shortly after the beginning the film. Its prime reason for existing is to introduce us to each character\'s identifying traits. It is the most efficient scene of its kind in any action movie I\'ve seen. In action movies, most characters don\'t get developed, because there\'s not enough time. They usually get one trait—the tall guy, the guy with the glasses, the black guy, etc. If a character is lucky, he or she might get more than one trait—the tall guy with glasses, the black guy who tells jokes, etc. On that helicopter ride, we get to know these soldiers. There\'s Hawkins, played by the action-movie writer Shane Black, who wears geeky glasses, tells bad jokes, and has lightning-fast reflexes. There\'s Billy (Sonny Landham), who is a gigantic, laconic Native American who doesn\'t get the jokes. There\'s Mac (Bill Duke), a black man who shaves constantly and is incredibly, almost scarily, intense. Blain (Jesse Ventura) is an arrogant loudmouth who chews tobacco and wears one of those Australian Outback hats. Dillon (Carl Weathers), the newcomer to the group, is eager to fit in, clumsy in his attempts, and disliked by everyone. After this three-minute scene, we know everything we need to know about all of the characters, in addition to learning a little more about Dutch (Schwarzenegger). Other action-movie screenwriters should look to it for guidance. It should be taught in seminars.</p><p>But then there\'s Poncho, played by Richard Chaves. What\'s he doing in that helicopter? At 5\'10\", he is three inches shorter than the next tallest commando. He doesn\'t have hypertrophied biceps or a 30-inch neck. He doesn\'t wear an extravagant hat or huge glasses. He doesn\'t dry-shave with a disposable razor, tell lame jokes, or chew tobacco. He doesn\'t carry a battery-powered machine cannon or a foot-long machete. Compared to the virtual superheroes surrounding him, he\'s pretty ordinary, almost a nobody. But he\'s not a nobody—he\'s us.</p><p>In literature, an audience surrogate is someone who essentially stands in for the reader, asking questions or making observations that prompt exposition or explanation. It\'s often a tool of mystery writers and comic-book writers (Jimmy Olson in <i>Superman</i> is a good example). The audience surrogate is an average person caught up in extraordinary circumstances. Chaves\'s Poncho is one of the most craftily written audience surrogates in film. He\'s not just our window into the film\'s mysteries; he\'s the the guinea pig, the canary in the coal mine, the workhorse, the prompter of catch-phrases, and, significantly, the last commando aside from Arnold to die and the first to be listed in the end credits. Poncho, he of the terminal ordinariness, is one of the most important characters in the film, and the filmmakers knew it.</p><p>Much of the rest of Poncho\'s dialogue is traditional audience surrogate questions and statements, some of which frankly states the obvious, as if he\'s speaking for us. When the team starts finding skinned human bodies, he asks incredulously, \"The guerrillas skinned them?\" And later, \"Why did they skin them?\" Why, indeed? Hmm. Maybe it\'s not guerrillas. After Bill Duke kills a wild boar, thinking it\'s the creature stalking them, Poncho points out, \"You killed a pig.\" When the Predator manages to sneak in through a series of tripwires and steal a dead commando\'s body, Poncho observes, \"It came in through the tripwires.\" But sometimes his observations clear up potential audience questions: we\'re wondering why they don\'t just have the chopper fly to where they are, and he immediately says \"Shitload of good a chopper\'s gonna do us in here anyhow,\" referring to the thick jungle they\'re fighting through. Finally, he\'s the most human in his reactions, giving us someone to identify with. He reacts to the skinned bodies with \"Holy mother of God\"; when Arnold asks him if he\'s found a missing character, he groans \"I can\'t tell,\" referring to the pile of intestines he\'s been asked to identify.</p><p>But let\'s not forget one of his dialogue\'s most important functions: because this is a 1980s action film, someone needs to facilitate the one-liners, and that duty falls to Pancho. Were it not for his \"You\'re bleeding,\" Jesse Ventura would have no reason to utter the film\'s best one-liner, \"I ain\'t got time to bleed.\" He\'s also willing to sacrifice grammar to help his comrades-in-arms. In an exchange with Sonny Landham, after learning that the taciturn Indian is scared, he has an awkward line: \"You ain\'t afraid of no man.\" The reason for the phrasing becomes apparent when Landham replies, \"There\'s something out there, and it ain\'t no man.\"<br /><br />Because we\'re discovering the alien creature\'s mysteries at the same rate as the characters, it\'s no coincidence that our stand-in is usually the one sent out to figure out what\'s going on. He climbs the tree to inspect the downed helicopter. He leads the soldiers out of the rebel camp. He\'s the first to walk into the valley of death. He discovers Hawkins\'s body. He\'s sent out after the huge firefight to discover that they didn\'t hit anything. He believes their attractive rebel captive when she talks about the jungle coming alive; he\'s the only one who can speak Spanish enough to communicate with her (at least until she reveals that she can speak English). His role as trailblazer is crucial: because the film is so careful about what it reveals and when, we\'re often kept in the dark. When the script requires us to learn something, it\'s usually Poncho who does the learning for us.</p><p>It\'s not surprising that he tends to disappear during the big firefights: we came to watch bigger-than-life, musclebound superbeings doing their thing, and we don\'t want to watch some guy who looks like the UPS driver. It\'s also no mistake that he\'s the last commando to die: he\'s our witness to everything that happens in the film, and he holds on until there\'s nothing new for us to learn and the film passes out of the realm of ordinary people like us and into Schwarzenegger vs. alien killing machine territory. The facts that he\'s nearly killed by wandering into one of his own booby traps and then becomes a burden to Schwarzenegger until he\'s rather ignominiously offed by the space monster just adds to the connection: if I were in an Arnold Schwarzenegger movie, I\'d probably wander into a booby trap too.</p><p>In the single best episode of <i>Buffy the Vampire Slayer</i>, \"The Zeppo,\" <i>Buffy</i>\'s audience surrogate, Xander Harris, saves the world without any of his more talented friends noticing. The reference is to the fourth Marx brother—the straight man, the normal guy who doesn\'t get any routines of his own. The Zeppo here, Richard Chaves\'s Poncho, is essential to <i>Predator</i>\'s success, but nobody notices him—including me, until I rewatched the film for this essay. He stands out by resolutely not standing out; he\'s central to the film by being peripheral to the superhero goings-on.</p><p>I will register one complaint with the film. Like John Carpenter\'s <em>The Thing</em>, another nearly perfect sci-fi/thriller, <i>Predator</i> front-loads its biggest—perhaps its only—mistake, and it\'s the same mistake in both films. The first shot is of a spaceship entering Earth\'s atmosphere, which sort of completely ruins what should be a big surprise later on. In <i>The Thing</i>, the big reveal of the huge hole in the ice should be the first confirmation we get that we\'re dealing with something otherworldly; here, the origin of the invisible attacker should be a complete mystery to us. Sure, we don\'t know <i>exactly</i> what we\'re dealing with, but we know it\'s an alien, and that\'s one surprise I\'d rather be surprised by. But that\'s a quibble. Once we get Dutch and company into the jungle, it\'s all tension all the time.</p>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Predator (1987)','','inherit','closed','closed','','260-revision-v1','','','2019-07-25 22:34:32','2019-07-25 22:34:32','',260,'http://itcamefrombeyondpulp.com/uncategorized/260-revision-v1/',0,'revision','',0),(263,1,'2019-07-25 22:35:47','2019-07-25 22:35:47','[et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" custom_padding=\"0px|||||\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" custom_margin=\"||11px|||\" next_background_color=\"#000000\" global_module=\"74\"][et_pb_row global_parent=\"74\" custom_padding=\"0px||0px|||\" custom_margin=\"|auto|-66px|auto||\" _builder_version=\"3.26.3\"][et_pb_column type=\"4_4\" global_parent=\"74\" _builder_version=\"3.26.3\"][et_pb_image global_parent=\"74\" src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/header.jpg\" url=\"http://itcamefrombeyondpulp.com\" _builder_version=\"3.26.3\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.26.3\" width=\"1080px\" inner_module_alignment=\"center\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" module_alignment=\"center\" custom_padding=\"0px||0px||false|false\" prev_background_color=\"#000000\" next_background_color=\"#e02b20\" global_module=\"175\"][et_pb_fullwidth_menu global_parent=\"175\" menu_id=\"2\" submenu_direction=\"downwards\" fullwidth_menu=\"off\" dropdown_menu_text_color=\"#ffffff\" _builder_version=\"3.26.3\" menu_font=\"|800||on|||||\" menu_text_color=\"#ffffff\" menu_font_size=\"22px\" menu_letter_spacing=\"5px\" background_color=\"#e02b20\" border_width_bottom=\"5px\" text_orientation=\"center\" background_layout=\"dark\" custom_padding=\"1px||0px||false|false\" z_index_tablet=\"500\" menu_text_shadow_horizontal_length_tablet=\"0px\" menu_text_shadow_vertical_length_tablet=\"0px\" menu_text_shadow_blur_strength_tablet=\"1px\" border_width_bottom_tablet=\"5px\" border_width_bottom_phone=\"5px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" custom_margin=\"0px||||false|false\" /][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" background_color=\"#e02b20\" width=\"1080px\" module_alignment=\"center\" custom_padding=\"10px||0px|||\" prev_background_color=\"#ffffff\"][et_pb_row _builder_version=\"3.26.3\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" background_color=\"#ffffff\" custom_padding=\"10px|10px||10px|false|false\" border_width_bottom=\"5px\" border_color_bottom=\"#e02b20\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image _builder_version=\"3.26.3\" src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/predator.jpeg\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\" /][et_pb_text _builder_version=\"3.26.3\" z_index_tablet=\"500\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" text_text_shadow_horizontal_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_vertical_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_blur_strength=\"text_text_shadow_style,%91object Object%93\" link_text_shadow_horizontal_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_vertical_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_blur_strength=\"link_text_shadow_style,%91object Object%93\" ul_text_shadow_horizontal_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_vertical_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_blur_strength=\"ul_text_shadow_style,%91object Object%93\" ol_text_shadow_horizontal_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_vertical_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_blur_strength=\"ol_text_shadow_style,%91object Object%93\" quote_text_shadow_horizontal_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_vertical_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_blur_strength=\"quote_text_shadow_style,%91object Object%93\" header_text_shadow_horizontal_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_vertical_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_blur_strength=\"header_text_shadow_style,%91object Object%93\" header_2_text_shadow_horizontal_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_vertical_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_blur_strength=\"header_2_text_shadow_style,%91object Object%93\" header_3_text_shadow_horizontal_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_vertical_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_blur_strength=\"header_3_text_shadow_style,%91object Object%93\" header_4_text_shadow_horizontal_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_vertical_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_blur_strength=\"header_4_text_shadow_style,%91object Object%93\" header_5_text_shadow_horizontal_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_vertical_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_blur_strength=\"header_5_text_shadow_style,%91object Object%93\" header_6_text_shadow_horizontal_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_vertical_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_blur_strength=\"header_6_text_shadow_style,%91object Object%93\"]\n\n<h3 style=\"text-align: center;\"><strong><em>Predator</em> (John McTiernan, 1987, 107 min.)</strong></h3>\n<p>John McTiernan\'s <i>Predator</i> is one of the best sci-fi/action films ever made. It\'s got a no-frills plot, a great leading actor (yes, the Governator could be great in the right role), a colorful supporting cast (even if they are all just a collection of character traits with machine guns), phenomenal location photography courtesy of Donald McAlpine, perfectly integrated special effects, and one of the best monsters in sci-fi history. And then there\'s John McTiernan, who, when he was on (as he was in <em>Die Hard</em> and here), was the best action-movie director in the business. I\'m not going to defend it for any other reasons; if you\'re looking for high art, you already skipped it and I\'m not going to convince you. Instead, I\'m going to make a case for a brilliantly written character, a forgettable guy who, for reasons detailed below, is essential to the film\'s success.</p>\n<p>I would like to draw your attention to the helicopter ride that transports Arnold Schwarzenegger\'s crack team of hardened soldiers to the depths of the jungle, shortly after the beginning the film. Its prime reason for existing is to introduce us to each character\'s identifying traits. It is the most efficient scene of its kind in any action movie I\'ve seen. In action movies, most characters don\'t get developed, because there\'s not enough time. They usually get one trait—the tall guy, the guy with the glasses, the black guy, etc. If a character is lucky, he or she might get more than one trait—the tall guy with glasses, the black guy who tells jokes, etc. On that helicopter ride, we get to know these soldiers. There\'s Hawkins, played by the action-movie writer Shane Black, who wears geeky glasses, tells bad jokes, and has lightning-fast reflexes. There\'s Billy (Sonny Landham), who is a gigantic, laconic Native American who doesn\'t get the jokes. There\'s Mac (Bill Duke), a black man who shaves constantly and is incredibly, almost scarily, intense. Blain (Jesse Ventura) is an arrogant loudmouth who chews tobacco and wears one of those Australian Outback hats. Dillon (Carl Weathers), the newcomer to the group, is eager to fit in, clumsy in his attempts, and disliked by everyone. After this three-minute scene, we know everything we need to know about all of the characters, in addition to learning a little more about Dutch (Schwarzenegger). Other action-movie screenwriters should look to it for guidance. It should be taught in seminars.</p>\n<p>But then there\'s Poncho, played by Richard Chaves. What\'s he doing in that helicopter? At 5\'10\", he is three inches shorter than the next tallest commando. He doesn\'t have hypertrophied biceps or a 30-inch neck. He doesn\'t wear an extravagant hat or huge glasses. He doesn\'t dry-shave with a disposable razor, tell lame jokes, or chew tobacco. He doesn\'t carry a battery-powered machine cannon or a foot-long machete. Compared to the virtual superheroes surrounding him, he\'s pretty ordinary, almost a nobody. But he\'s not a nobody—he\'s us.</p>\n<p>In literature, an audience surrogate is someone who essentially stands in for the reader, asking questions or making observations that prompt exposition or explanation. It\'s often a tool of mystery writers and comic-book writers (Jimmy Olson in <i>Superman</i> is a good example). The audience surrogate is an average person caught up in extraordinary circumstances. Chaves\'s Poncho is one of the most craftily written audience surrogates in film. He\'s not just our window into the film\'s mysteries; he\'s the the guinea pig, the canary in the coal mine, the workhorse, the prompter of catch-phrases, and, significantly, the last commando aside from Arnold to die and the first to be listed in the end credits. Poncho, he of the terminal ordinariness, is one of the most important characters in the film, and the filmmakers knew it.</p>\n<p>Much of the rest of Poncho\'s dialogue is traditional audience surrogate questions and statements, some of which frankly states the obvious, as if he\'s speaking for us. When the team starts finding skinned human bodies, he asks incredulously, \"The guerrillas skinned them?\" And later, \"Why did they skin them?\" Why, indeed? Hmm. Maybe it\'s not guerrillas. After Bill Duke kills a wild boar, thinking it\'s the creature stalking them, Poncho points out, \"You killed a pig.\" When the Predator manages to sneak in through a series of tripwires and steal a dead commando\'s body, Poncho observes, \"It came in through the tripwires.\" But sometimes his observations clear up potential audience questions: we\'re wondering why they don\'t just have the chopper fly to where they are, and he immediately says \"Shitload of good a chopper\'s gonna do us in here anyhow,\" referring to the thick jungle they\'re fighting through. Finally, he\'s the most human in his reactions, giving us someone to identify with. He reacts to the skinned bodies with \"Holy mother of God\"; when Arnold asks him if he\'s found a missing character, he groans \"I can\'t tell,\" referring to the pile of intestines he\'s been asked to identify.</p>\n<p>But let\'s not forget one of his dialogue\'s most important functions: because this is a 1980s action film, someone needs to facilitate the one-liners, and that duty falls to Pancho. Were it not for his \"You\'re bleeding,\" Jesse Ventura would have no reason to utter the film\'s best one-liner, \"I ain\'t got time to bleed.\" He\'s also willing to sacrifice grammar to help his comrades-in-arms. In an exchange with Sonny Landham, after learning that the taciturn Indian is scared, he has an awkward line: \"You ain\'t afraid of no man.\" The reason for the phrasing becomes apparent when Landham replies, \"There\'s something out there, and it ain\'t no man.\"</p>\n<p>Because we\'re discovering the alien creature\'s mysteries at the same rate as the characters, it\'s no coincidence that our stand-in is usually the one sent out to figure out what\'s going on. He climbs the tree to inspect the downed helicopter. He leads the soldiers out of the rebel camp. He\'s the first to walk into the valley of death. He discovers Hawkins\'s body. He\'s sent out after the huge firefight to discover that they didn\'t hit anything. He believes their attractive rebel captive when she talks about the jungle coming alive; he\'s the only one who can speak Spanish enough to communicate with her (at least until she reveals that she can speak English). His role as trailblazer is crucial: because the film is so careful about what it reveals and when, we\'re often kept in the dark. When the script requires us to learn something, it\'s usually Poncho who does the learning for us.</p>\n<p>It\'s not surprising that he tends to disappear during the big firefights: we came to watch bigger-than-life, musclebound superbeings doing their thing, and we don\'t want to watch some guy who looks like the UPS driver. It\'s also no mistake that he\'s the last commando to die: he\'s our witness to everything that happens in the film, and he holds on until there\'s nothing new for us to learn and the film passes out of the realm of ordinary people like us and into Schwarzenegger vs. alien killing machine territory. The facts that he\'s nearly killed by wandering into one of his own booby traps and then becomes a burden to Schwarzenegger until he\'s rather ignominiously offed by the space monster just adds to the connection: if I were in an Arnold Schwarzenegger movie, I\'d probably wander into a booby trap too.</p>\n<p>In the single best episode of <i>Buffy the Vampire Slayer</i>, \"The Zeppo,\" <i>Buffy</i>\'s audience surrogate, Xander Harris, saves the world without any of his more talented friends noticing. The reference is to the fourth Marx brother—the straight man, the normal guy who doesn\'t get any routines of his own. The Zeppo here, Richard Chaves\'s Poncho, is essential to <i>Predator</i>\'s success, but nobody notices him—including me, until I rewatched the film for this essay. He stands out by resolutely not standing out; he\'s central to the film by being peripheral to the superhero goings-on.</p>\n<p>I will register one complaint with the film. Like John Carpenter\'s <em>The Thing</em>, another nearly perfect sci-fi/thriller, <i>Predator</i> front-loads its biggest—perhaps its only—mistake, and it\'s the same mistake in both films. The first shot is of a spaceship entering Earth\'s atmosphere, which sort of completely ruins what should be a big surprise later on. In <i>The Thing</i>, the big reveal of the huge hole in the ice should be the first confirmation we get that we\'re dealing with something otherworldly; here, the origin of the invisible attacker should be a complete mystery to us. Sure, we don\'t know <i>exactly</i> what we\'re dealing with, but we know it\'s an alien, and that\'s one surprise I\'d rather be surprised by. But that\'s a quibble. Once we get Dutch and company into the jungle, it\'s all tension all the time.</p>\n\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Predator (1987)','','inherit','closed','closed','','260-autosave-v1','','','2019-07-25 22:35:47','2019-07-25 22:35:47','',260,'http://itcamefrombeyondpulp.com/uncategorized/260-autosave-v1/',0,'revision','',0),(264,1,'2019-07-25 22:45:50','2019-07-25 22:45:50','[et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" custom_padding=\"0px|||||\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" custom_margin=\"||11px|||\" next_background_color=\"#000000\" global_module=\"74\"][et_pb_row global_parent=\"74\" custom_padding=\"0px||0px|||\" custom_margin=\"|auto|-66px|auto||\" _builder_version=\"3.26.3\"][et_pb_column type=\"4_4\" global_parent=\"74\" _builder_version=\"3.26.3\"][et_pb_image global_parent=\"74\" src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/header.jpg\" url=\"http://itcamefrombeyondpulp.com\" _builder_version=\"3.26.3\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.26.3\" width=\"1080px\" inner_module_alignment=\"center\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" module_alignment=\"center\" custom_padding=\"0px||0px||false|false\" prev_background_color=\"#000000\" next_background_color=\"#e02b20\" global_module=\"175\"][et_pb_fullwidth_menu global_parent=\"175\" menu_id=\"2\" submenu_direction=\"downwards\" fullwidth_menu=\"off\" dropdown_menu_text_color=\"#ffffff\" _builder_version=\"3.26.3\" menu_font=\"|800||on|||||\" menu_text_color=\"#ffffff\" menu_font_size=\"22px\" menu_letter_spacing=\"5px\" background_color=\"#e02b20\" border_width_bottom=\"5px\" text_orientation=\"center\" background_layout=\"dark\" custom_padding=\"1px||0px||false|false\" z_index_tablet=\"500\" menu_text_shadow_horizontal_length_tablet=\"0px\" menu_text_shadow_vertical_length_tablet=\"0px\" menu_text_shadow_blur_strength_tablet=\"1px\" border_width_bottom_tablet=\"5px\" border_width_bottom_phone=\"5px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" custom_margin=\"0px||||false|false\" /][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" background_color=\"#e02b20\" width=\"1080px\" module_alignment=\"center\" custom_padding=\"10px||0px|||\" prev_background_color=\"#ffffff\"][et_pb_row _builder_version=\"3.26.3\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" background_color=\"#ffffff\" custom_padding=\"10px|10px||10px|false|false\" border_width_bottom=\"5px\" border_color_bottom=\"#e02b20\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image _builder_version=\"3.26.3\" src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/xmen-laststand.jpg\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\" /][et_pb_text _builder_version=\"3.26.3\" z_index_tablet=\"500\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" text_text_shadow_horizontal_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_vertical_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_blur_strength=\"text_text_shadow_style,%91object Object%93\" link_text_shadow_horizontal_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_vertical_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_blur_strength=\"link_text_shadow_style,%91object Object%93\" ul_text_shadow_horizontal_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_vertical_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_blur_strength=\"ul_text_shadow_style,%91object Object%93\" ol_text_shadow_horizontal_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_vertical_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_blur_strength=\"ol_text_shadow_style,%91object Object%93\" quote_text_shadow_horizontal_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_vertical_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_blur_strength=\"quote_text_shadow_style,%91object Object%93\" header_text_shadow_horizontal_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_vertical_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_blur_strength=\"header_text_shadow_style,%91object Object%93\" header_2_text_shadow_horizontal_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_vertical_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_blur_strength=\"header_2_text_shadow_style,%91object Object%93\" header_3_text_shadow_horizontal_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_vertical_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_blur_strength=\"header_3_text_shadow_style,%91object Object%93\" header_4_text_shadow_horizontal_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_vertical_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_blur_strength=\"header_4_text_shadow_style,%91object Object%93\" header_5_text_shadow_horizontal_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_vertical_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_blur_strength=\"header_5_text_shadow_style,%91object Object%93\" header_6_text_shadow_horizontal_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_vertical_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_blur_strength=\"header_6_text_shadow_style,%91object Object%93\"]\r\n\r\n<h3 style=\"text-align: center;\"><strong><em>X-Men: The Last Stand</em> (Brett Ratner, 2006, 104 min.)</strong></h3><p>The third installment in the <i>X-Men</i> franchise isn\'t what you can call a success, especially coming on the heels of a so-so first film and a nearly perfect second film. My first instinct is to lay the blame at the feet of the director, good cinema\'s arch-nemesis Brett Ratner, but I think we can only partly blame him. It\'s tempting, of course, to point at him because <em>X2</em> was one of the best comic book movies ever made, and what changed? The director: Bryan Singer left to direct <em>Superman Returns</em>. However, I suspect that it\'s folly to rely on auteur theory when discussing a bazillion-dollar blockbuster. Ratner likely had little to say about casting, the script, the special effects, or any number of elements that didn\'t live up to expectations.</p><p>Certain things he did have control over, of course: the director\'s primary responsibility is the performances, and none was up to the standards set in the second sequel. Other things, like awkward scene setups, a generally somnolent pace, and action setpieces that fail to captivate, are also his fault. Who do we blame, for example, for the fact that it suddenly becomes night between cuts during the siege of Alcatraz at the end? But I don\'t know who to blame for the film\'s major problem for me: I didn\'t care a whit what happened. It never involved me; I was never swept away by the action or the effects on one hand, or by the story on the other. It\'s not just a matter of its failing to live up to the standard set by the second film; it\'s that it isn\'t good enough by any standards.</p><p>We learn that scientists have created a \"cure\" for mutancy, a drug derived from a weird mutant kid (Cameron Bright) whose aura neutralizes powers. This sets off a debate within the mutant community: is mutancy a disease that needs a cure? Is this a harmless, personal decision for mutants to make, or is forced administration of the cure next? Of course, the poles are defined by Professor X (Patrick Stewart), who advises a cautious course, and Magento (Ian McKellan), who sees this as a call to war between the humans and the mutants. In the middle are the rest of the mutants: people like Rogue (Anna Paquin), who hates her powers because they mean she can\'t snuggle with her boyfriend Iceman (Shawn Ashmore); and people like Pyro (Aaron Stanford), who relish the opportunity to use them. Magneto gathers an army of mutants and marches on Alcatraz Island, where the cure is being created, while the good guys, their ranks decimated, try to figure out what to do.</p><p>I\'m guessing that the central dramatic thrust of the film was supposed to be the rekindled but doomed love affair between Wolverine (Hugh Jackman) and the reborn (sort of) Jean Gray (Famke Janssen), but even though I could see that I was supposed to find their story an epic, Shakespearean tragedy, I could hardly pay attention to it. They have few scenes together, and Janssen\'s a blank throughout. There\'s supposed to be a struggle between the Jean that Professor X (Patrick Stewart) created through brainwashing and the uninhibited, ultra-powerful Dark Phoenix personality, but that struggle is apparent only through special effects—veiny face, eyes that go black, etc.—that are remarkably similar to the \"evil Willow\" from season 6 of <i>Buffy the Vampire Slayer </i>(although I suppose that Joss Whedon might have derived the evil Willow idea from the <i>X-Men</i> comics).</p><p>The Dark Phoenix character is a can of worms that Ratner and company open but fail to address or even think much about. They explicitly link mutant powers with adolescent sexuality (before this, the running subtext seemed to be that mutant powers were code for homosexuality—\"Have you ever tried... <i>not</i> being a mutant?\"), and they present us with female sexuality, in the form of Jean Gray, as the source of horrific powers that must be contained through brainwashing by Professor X. When she unravels the blocks he\'s placed on her powers, she becomes a force of chaos and destruction, dangerous and out of control just like she was as a teenager. In the end, as in her entire life, only a man can control her (acting out of love, of course... right?), this time by killing her. This is a disturbing elevation of the genre\'s misogyny, turning what is usually a sidenote into the climax of the film, and nobody involved in making the film thought to discuss its implications.</p><p>In general, there\'s just too much going on, too many characters to keep track of, and not enough skill at the helm to keep it all together. Important characters drop out of sight, their fates explained away in dialog. Other important characters go unnamed. As usual, interesting characters go unexplored (or vanished between sequels—what happened to Nightcrawler?) while dead wood commandeers valuable screen time (I\'m talking to you, Halle Berry). The interest that <i>X2</i> built up in Rogue (Anna Paquin) fizzles, as she\'s got nothing to do here. Relationships between the characters remain exactly where they were at the end of the second, far superior film—with all the talking going on, why don\'t we get to know anyone better, or better understand why certain people act the way they do?</p><p>It\'s called \"The Last Stand,\" and it packs in a handful of surprises that trick us into thinking that it might be true: several major characters die or become civilians (i.e., not mutants), and the climactic battle seems to wipe out most of the newly introduced characters. But the filmmakers hedge their bets, with some twists at the very end (and make sure you stick around after the credits) that are the equivalent of saying \"I\'m leaving\" while sticking your foot in the door. I just hope it\'s not Ratner\'s foot.</p>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','X-Men: The Last Stand (2006)','','publish','closed','closed','','x-men-the-last-stand-2006','','','2019-07-25 22:45:50','2019-07-25 22:45:50','',0,'http://itcamefrombeyondpulp.com/?p=264',0,'post','',0),(265,1,'2019-07-25 22:45:17','2019-07-25 22:45:17','','xmen laststand','','inherit','closed','closed','','xmen-laststand','','','2019-07-25 22:45:17','2019-07-25 22:45:17','',264,'http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/xmen-laststand.jpg',0,'attachment','image/jpeg',0),(266,1,'2019-07-25 22:45:37','2019-07-25 22:45:37','','xmen laststand','','inherit','closed','closed','','xmen-laststand-2','','','2019-07-25 22:45:37','2019-07-25 22:45:37','',264,'http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/xmen-laststand-1.jpg',0,'attachment','image/jpeg',0),(267,1,'2019-07-25 22:45:50','2019-07-25 22:45:50','[et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" custom_padding=\"0px|||||\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" custom_margin=\"||11px|||\" next_background_color=\"#000000\" global_module=\"74\"][et_pb_row global_parent=\"74\" custom_padding=\"0px||0px|||\" custom_margin=\"|auto|-66px|auto||\" _builder_version=\"3.26.3\"][et_pb_column type=\"4_4\" global_parent=\"74\" _builder_version=\"3.26.3\"][et_pb_image global_parent=\"74\" src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/header.jpg\" url=\"http://itcamefrombeyondpulp.com\" _builder_version=\"3.26.3\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.26.3\" width=\"1080px\" inner_module_alignment=\"center\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" module_alignment=\"center\" custom_padding=\"0px||0px||false|false\" prev_background_color=\"#000000\" next_background_color=\"#e02b20\" global_module=\"175\"][et_pb_fullwidth_menu global_parent=\"175\" menu_id=\"2\" submenu_direction=\"downwards\" fullwidth_menu=\"off\" dropdown_menu_text_color=\"#ffffff\" _builder_version=\"3.26.3\" menu_font=\"|800||on|||||\" menu_text_color=\"#ffffff\" menu_font_size=\"22px\" menu_letter_spacing=\"5px\" background_color=\"#e02b20\" border_width_bottom=\"5px\" text_orientation=\"center\" background_layout=\"dark\" custom_padding=\"1px||0px||false|false\" z_index_tablet=\"500\" menu_text_shadow_horizontal_length_tablet=\"0px\" menu_text_shadow_vertical_length_tablet=\"0px\" menu_text_shadow_blur_strength_tablet=\"1px\" border_width_bottom_tablet=\"5px\" border_width_bottom_phone=\"5px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" custom_margin=\"0px||||false|false\" /][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" background_color=\"#e02b20\" width=\"1080px\" module_alignment=\"center\" custom_padding=\"10px||0px|||\" prev_background_color=\"#ffffff\"][et_pb_row _builder_version=\"3.26.3\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" background_color=\"#ffffff\" custom_padding=\"10px|10px||10px|false|false\" border_width_bottom=\"5px\" border_color_bottom=\"#e02b20\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image _builder_version=\"3.26.3\" src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/xmen-laststand.jpg\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\" /][et_pb_text _builder_version=\"3.26.3\" z_index_tablet=\"500\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" text_text_shadow_horizontal_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_vertical_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_blur_strength=\"text_text_shadow_style,%91object Object%93\" link_text_shadow_horizontal_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_vertical_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_blur_strength=\"link_text_shadow_style,%91object Object%93\" ul_text_shadow_horizontal_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_vertical_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_blur_strength=\"ul_text_shadow_style,%91object Object%93\" ol_text_shadow_horizontal_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_vertical_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_blur_strength=\"ol_text_shadow_style,%91object Object%93\" quote_text_shadow_horizontal_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_vertical_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_blur_strength=\"quote_text_shadow_style,%91object Object%93\" header_text_shadow_horizontal_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_vertical_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_blur_strength=\"header_text_shadow_style,%91object Object%93\" header_2_text_shadow_horizontal_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_vertical_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_blur_strength=\"header_2_text_shadow_style,%91object Object%93\" header_3_text_shadow_horizontal_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_vertical_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_blur_strength=\"header_3_text_shadow_style,%91object Object%93\" header_4_text_shadow_horizontal_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_vertical_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_blur_strength=\"header_4_text_shadow_style,%91object Object%93\" header_5_text_shadow_horizontal_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_vertical_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_blur_strength=\"header_5_text_shadow_style,%91object Object%93\" header_6_text_shadow_horizontal_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_vertical_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_blur_strength=\"header_6_text_shadow_style,%91object Object%93\"]\r\n\r\n<h3 style=\"text-align: center;\"><strong><em>X-Men: The Last Stand</em> (Brett Ratner, 2006, 104 min.)</strong></h3><p>The third installment in the <i>X-Men</i> franchise isn\'t what you can call a success, especially coming on the heels of a so-so first film and a nearly perfect second film. My first instinct is to lay the blame at the feet of the director, good cinema\'s arch-nemesis Brett Ratner, but I think we can only partly blame him. It\'s tempting, of course, to point at him because <em>X2</em> was one of the best comic book movies ever made, and what changed? The director: Bryan Singer left to direct <em>Superman Returns</em>. However, I suspect that it\'s folly to rely on auteur theory when discussing a bazillion-dollar blockbuster. Ratner likely had little to say about casting, the script, the special effects, or any number of elements that didn\'t live up to expectations.</p><p>Certain things he did have control over, of course: the director\'s primary responsibility is the performances, and none was up to the standards set in the second sequel. Other things, like awkward scene setups, a generally somnolent pace, and action setpieces that fail to captivate, are also his fault. Who do we blame, for example, for the fact that it suddenly becomes night between cuts during the siege of Alcatraz at the end? But I don\'t know who to blame for the film\'s major problem for me: I didn\'t care a whit what happened. It never involved me; I was never swept away by the action or the effects on one hand, or by the story on the other. It\'s not just a matter of its failing to live up to the standard set by the second film; it\'s that it isn\'t good enough by any standards.</p><p>We learn that scientists have created a \"cure\" for mutancy, a drug derived from a weird mutant kid (Cameron Bright) whose aura neutralizes powers. This sets off a debate within the mutant community: is mutancy a disease that needs a cure? Is this a harmless, personal decision for mutants to make, or is forced administration of the cure next? Of course, the poles are defined by Professor X (Patrick Stewart), who advises a cautious course, and Magento (Ian McKellan), who sees this as a call to war between the humans and the mutants. In the middle are the rest of the mutants: people like Rogue (Anna Paquin), who hates her powers because they mean she can\'t snuggle with her boyfriend Iceman (Shawn Ashmore); and people like Pyro (Aaron Stanford), who relish the opportunity to use them. Magneto gathers an army of mutants and marches on Alcatraz Island, where the cure is being created, while the good guys, their ranks decimated, try to figure out what to do.</p><p>I\'m guessing that the central dramatic thrust of the film was supposed to be the rekindled but doomed love affair between Wolverine (Hugh Jackman) and the reborn (sort of) Jean Gray (Famke Janssen), but even though I could see that I was supposed to find their story an epic, Shakespearean tragedy, I could hardly pay attention to it. They have few scenes together, and Janssen\'s a blank throughout. There\'s supposed to be a struggle between the Jean that Professor X (Patrick Stewart) created through brainwashing and the uninhibited, ultra-powerful Dark Phoenix personality, but that struggle is apparent only through special effects—veiny face, eyes that go black, etc.—that are remarkably similar to the \"evil Willow\" from season 6 of <i>Buffy the Vampire Slayer </i>(although I suppose that Joss Whedon might have derived the evil Willow idea from the <i>X-Men</i> comics).</p><p>The Dark Phoenix character is a can of worms that Ratner and company open but fail to address or even think much about. They explicitly link mutant powers with adolescent sexuality (before this, the running subtext seemed to be that mutant powers were code for homosexuality—\"Have you ever tried... <i>not</i> being a mutant?\"), and they present us with female sexuality, in the form of Jean Gray, as the source of horrific powers that must be contained through brainwashing by Professor X. When she unravels the blocks he\'s placed on her powers, she becomes a force of chaos and destruction, dangerous and out of control just like she was as a teenager. In the end, as in her entire life, only a man can control her (acting out of love, of course... right?), this time by killing her. This is a disturbing elevation of the genre\'s misogyny, turning what is usually a sidenote into the climax of the film, and nobody involved in making the film thought to discuss its implications.</p><p>In general, there\'s just too much going on, too many characters to keep track of, and not enough skill at the helm to keep it all together. Important characters drop out of sight, their fates explained away in dialog. Other important characters go unnamed. As usual, interesting characters go unexplored (or vanished between sequels—what happened to Nightcrawler?) while dead wood commandeers valuable screen time (I\'m talking to you, Halle Berry). The interest that <i>X2</i> built up in Rogue (Anna Paquin) fizzles, as she\'s got nothing to do here. Relationships between the characters remain exactly where they were at the end of the second, far superior film—with all the talking going on, why don\'t we get to know anyone better, or better understand why certain people act the way they do?</p><p>It\'s called \"The Last Stand,\" and it packs in a handful of surprises that trick us into thinking that it might be true: several major characters die or become civilians (i.e., not mutants), and the climactic battle seems to wipe out most of the newly introduced characters. But the filmmakers hedge their bets, with some twists at the very end (and make sure you stick around after the credits) that are the equivalent of saying \"I\'m leaving\" while sticking your foot in the door. I just hope it\'s not Ratner\'s foot.</p>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','X-Men: The Last Stand (2006)','','inherit','closed','closed','','264-revision-v1','','','2019-07-25 22:45:50','2019-07-25 22:45:50','',264,'http://itcamefrombeyondpulp.com/uncategorized/264-revision-v1/',0,'revision','',0),(268,1,'2019-07-25 22:47:01','2019-07-25 22:47:01','[et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" custom_padding=\"0px|||||\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" custom_margin=\"||11px|||\" next_background_color=\"#000000\" global_module=\"74\"][et_pb_row global_parent=\"74\" custom_padding=\"0px||0px|||\" custom_margin=\"|auto|-66px|auto||\" _builder_version=\"3.26.3\"][et_pb_column type=\"4_4\" global_parent=\"74\" _builder_version=\"3.26.3\"][et_pb_image global_parent=\"74\" src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/header.jpg\" url=\"http://itcamefrombeyondpulp.com\" _builder_version=\"3.26.3\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.26.3\" width=\"1080px\" inner_module_alignment=\"center\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" module_alignment=\"center\" custom_padding=\"0px||0px||false|false\" prev_background_color=\"#000000\" next_background_color=\"#e02b20\" global_module=\"175\"][et_pb_fullwidth_menu global_parent=\"175\" menu_id=\"2\" submenu_direction=\"downwards\" fullwidth_menu=\"off\" dropdown_menu_text_color=\"#ffffff\" _builder_version=\"3.26.3\" menu_font=\"|800||on|||||\" menu_text_color=\"#ffffff\" menu_font_size=\"22px\" menu_letter_spacing=\"5px\" background_color=\"#e02b20\" border_width_bottom=\"5px\" text_orientation=\"center\" background_layout=\"dark\" custom_padding=\"1px||0px||false|false\" z_index_tablet=\"500\" menu_text_shadow_horizontal_length_tablet=\"0px\" menu_text_shadow_vertical_length_tablet=\"0px\" menu_text_shadow_blur_strength_tablet=\"1px\" border_width_bottom_tablet=\"5px\" border_width_bottom_phone=\"5px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" custom_margin=\"0px||||false|false\" /][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" background_color=\"#e02b20\" width=\"1080px\" module_alignment=\"center\" custom_padding=\"10px||0px|||\" prev_background_color=\"#ffffff\"][et_pb_row _builder_version=\"3.26.3\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" background_color=\"#ffffff\" custom_padding=\"10px|10px||10px|false|false\" border_width_bottom=\"5px\" border_color_bottom=\"#e02b20\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image _builder_version=\"3.26.3\" src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/xmen-laststand.jpg\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\" /][et_pb_text _builder_version=\"3.26.3\" z_index_tablet=\"500\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" text_text_shadow_horizontal_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_vertical_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_blur_strength=\"text_text_shadow_style,%91object Object%93\" link_text_shadow_horizontal_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_vertical_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_blur_strength=\"link_text_shadow_style,%91object Object%93\" ul_text_shadow_horizontal_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_vertical_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_blur_strength=\"ul_text_shadow_style,%91object Object%93\" ol_text_shadow_horizontal_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_vertical_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_blur_strength=\"ol_text_shadow_style,%91object Object%93\" quote_text_shadow_horizontal_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_vertical_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_blur_strength=\"quote_text_shadow_style,%91object Object%93\" header_text_shadow_horizontal_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_vertical_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_blur_strength=\"header_text_shadow_style,%91object Object%93\" header_2_text_shadow_horizontal_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_vertical_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_blur_strength=\"header_2_text_shadow_style,%91object Object%93\" header_3_text_shadow_horizontal_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_vertical_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_blur_strength=\"header_3_text_shadow_style,%91object Object%93\" header_4_text_shadow_horizontal_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_vertical_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_blur_strength=\"header_4_text_shadow_style,%91object Object%93\" header_5_text_shadow_horizontal_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_vertical_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_blur_strength=\"header_5_text_shadow_style,%91object Object%93\" header_6_text_shadow_horizontal_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_vertical_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_blur_strength=\"header_6_text_shadow_style,%91object Object%93\"]\n\n<h3 style=\"text-align: center;\"><strong><em>X-Men: The Last Stand</em> (Brett Ratner, 2006, 104 min.)</strong></h3>\n<p>The third installment in the <i>X-Men</i> franchise isn\'t what you can call a success, especially coming on the heels of a so-so first film and a nearly perfect second film. My first instinct is to lay the blame at the feet of the director, good cinema\'s arch-nemesis Brett Ratner, but I think we can only partly blame him. It\'s tempting, of course, to point at him because <em>X2</em> was one of the best comic book movies ever made, and what changed? The director: Bryan Singer left to direct <em>Superman Returns</em>. However, I suspect that it\'s folly to rely on auteur theory when discussing a bazillion-dollar blockbuster. Ratner likely had little to say about casting, the script, the special effects, or any number of elements that didn\'t live up to expectations.</p>\n<p>Certain things he did have control over, of course: the director\'s primary responsibility is the performances, and none was up to the standards set in the second sequel. Other things, like awkward scene setups, a generally somnolent pace, and action setpieces that fail to captivate, are also his fault. Who do we blame, for example, for the fact that it suddenly becomes night between cuts during the siege of Alcatraz at the end? But I don\'t know who to blame for the film\'s major problem for me: I didn\'t care a whit what happened. It never involved me; I was never swept away by the action or the effects on one hand, or by the story on the other. It\'s not just a matter of its failing to live up to the standard set by the second film; it\'s that it isn\'t good enough by any standards.</p>\n<p>We learn that scientists have created a \"cure\" for mutancy, a drug derived from a weird mutant kid (Cameron Bright) whose aura neutralizes powers. This sets off a debate within the mutant community: is mutancy a disease that needs a cure? Is this a harmless, personal decision for mutants to make, or is forced administration of the cure next? Of course, the poles are defined by Professor X (Patrick Stewart), who advises a cautious course, and Magento (Ian McKellan), who sees this as a call to war between the humans and the mutants. In the middle are the rest of the mutants: people like Rogue (Anna Paquin), who hates her powers because they mean she can\'t snuggle with her boyfriend Iceman (Shawn Ashmore); and people like Pyro (Aaron Stanford), who relish the opportunity to use them. Magneto gathers an army of mutants and marches on Alcatraz Island, where the cure is being created, while the good guys, their ranks decimated, try to figure out what to do.</p>\n<p>I\'m guessing that the central dramatic thrust of the film was supposed to be the rekindled but doomed love affair between Wolverine (Hugh Jackman) and the reborn (sort of) Jean Gray (Famke Janssen), but even though I could see that I was supposed to find their story an epic, Shakespearean tragedy, I could hardly pay attention to it. They have few scenes together, and Janssen\'s a blank throughout. There\'s supposed to be a struggle between the Jean that Professor X (Patrick Stewart) created through brainwashing and the uninhibited, ultra-powerful Dark Phoenix personality, but that struggle is apparent only through special effects—veiny face, eyes that go black, etc.—that are remarkably similar to the \"evil Willow\" from season 6 of <i>Buffy the Vampire Slayer </i>(although I suppose that Joss Whedon might have derived the evil Willow idea from the <i>X-Men</i> comics).</p>\n<p>The Dark Phoenix character is a can of worms that Ratner and company open but fail to address or even think much about. They explicitly link mutant powers with adolescent sexuality (before this, the running subtext seemed to be that mutant powers were code for homosexuality—\"Have you ever tried... <i>not</i> being a mutant?\"), and they present us with female sexuality, in the form of Jean Gray, as the source of horrific powers that must be contained through brainwashing by Professor X. When she unravels the blocks he\'s placed on her powers, she becomes a force of chaos and destruction, dangerous and out of control just like she was as a teenager. In the end, as in her entire life, only a man can control her (acting out of love, of course... right?), this time by killing her. This is a disturbing elevation of the genre\'s misogyny, turning what is usually a sidenote into the climax of the film, and nobody involved in making the film thought to discuss its implications.</p>\n<p>In general, there\'s just too much going on, too many characters to keep track of, and not enough skill at the helm to keep it all together. Important characters drop out of sight, their fates explained away in dialog. Other important characters go unnamed. As usual, interesting characters go unexplored (or vanished between sequels—what happened to Nightcrawler?) while dead wood commandeers valuable screen time (I\'m talking to you, Halle Berry). The interest that <i>X2</i> built up in Rogue (Anna Paquin) fizzles, as she\'s got nothing to do here. Relationships between the characters remain exactly where they were at the end of the second, far superior film—with all the talking going on, why don\'t we get to know anyone better, or better understand why certain people act the way they do?</p>\n<p>It\'s called \"The Last Stand,\" and it packs in a handful of surprises that trick us into thinking that it might be true: several major characters die or become civilians (i.e., not mutants), and the climactic battle seems to wipe out most of the newly introduced characters. But the filmmakers hedge their bets, with some twists at the very end (and make sure you stick around after the credits) that are the equivalent of saying \"I\'m leaving\" while sticking your foot in the door. I just hope it\'s not Ratner\'s foot.</p>\n\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','X-Men: The Last Stand (2006)','','inherit','closed','closed','','264-autosave-v1','','','2019-07-25 22:47:01','2019-07-25 22:47:01','',264,'http://itcamefrombeyondpulp.com/uncategorized/264-autosave-v1/',0,'revision','',0),(269,1,'2019-07-25 22:47:28','2019-07-25 22:47:28','[et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" custom_padding=\"0px|||||\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" custom_margin=\"||11px|||\" next_background_color=\"#000000\" global_module=\"74\"][et_pb_row global_parent=\"74\" custom_padding=\"0px||0px|||\" custom_margin=\"|auto|-66px|auto||\" _builder_version=\"3.26.3\"][et_pb_column type=\"4_4\" global_parent=\"74\" _builder_version=\"3.26.3\"][et_pb_image global_parent=\"74\" src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/header.jpg\" url=\"http://itcamefrombeyondpulp.com\" _builder_version=\"3.26.3\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.26.3\" width=\"1080px\" inner_module_alignment=\"center\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" module_alignment=\"center\" custom_padding=\"0px||0px||false|false\" prev_background_color=\"#000000\" next_background_color=\"#e02b20\" global_module=\"175\"][et_pb_fullwidth_menu global_parent=\"175\" menu_id=\"2\" submenu_direction=\"downwards\" fullwidth_menu=\"off\" dropdown_menu_text_color=\"#ffffff\" _builder_version=\"3.26.3\" menu_font=\"|800||on|||||\" menu_text_color=\"#ffffff\" menu_font_size=\"22px\" menu_letter_spacing=\"5px\" background_color=\"#e02b20\" border_width_bottom=\"5px\" text_orientation=\"center\" background_layout=\"dark\" custom_padding=\"1px||0px||false|false\" z_index_tablet=\"500\" menu_text_shadow_horizontal_length_tablet=\"0px\" menu_text_shadow_vertical_length_tablet=\"0px\" menu_text_shadow_blur_strength_tablet=\"1px\" border_width_bottom_tablet=\"5px\" border_width_bottom_phone=\"5px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" custom_margin=\"0px||||false|false\" /][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" background_color=\"#e02b20\" width=\"1080px\" module_alignment=\"center\" custom_padding=\"10px||0px|||\" prev_background_color=\"#ffffff\"][et_pb_row custom_padding=\"10px|10px||\" _builder_version=\"3.26.3\" background_color=\"#ffffff\" border_width_bottom=\"5px\" border_color_bottom=\"#e02b20\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.26.3\" z_index_tablet=\"500\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" text_text_shadow_horizontal_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_vertical_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_blur_strength=\"text_text_shadow_style,%91object Object%93\" link_text_shadow_horizontal_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_vertical_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_blur_strength=\"link_text_shadow_style,%91object Object%93\" ul_text_shadow_horizontal_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_vertical_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_blur_strength=\"ul_text_shadow_style,%91object Object%93\" ol_text_shadow_horizontal_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_vertical_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_blur_strength=\"ol_text_shadow_style,%91object Object%93\" quote_text_shadow_horizontal_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_vertical_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_blur_strength=\"quote_text_shadow_style,%91object Object%93\" header_text_shadow_horizontal_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_vertical_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_blur_strength=\"header_text_shadow_style,%91object Object%93\" header_2_text_shadow_horizontal_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_vertical_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_blur_strength=\"header_2_text_shadow_style,%91object Object%93\" header_3_text_shadow_horizontal_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_vertical_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_blur_strength=\"header_3_text_shadow_style,%91object Object%93\" header_4_text_shadow_horizontal_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_vertical_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_blur_strength=\"header_4_text_shadow_style,%91object Object%93\" header_5_text_shadow_horizontal_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_vertical_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_blur_strength=\"header_5_text_shadow_style,%91object Object%93\" header_6_text_shadow_horizontal_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_vertical_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_blur_strength=\"header_6_text_shadow_style,%91object Object%93\"]\r\n\r\n<h1 style=\"text-align: center;\">Movies &amp; TV Reviews</h1><p style=\"text-align: center;\"><strong><a href=\"http://itcamefrombeyondpulp.com/movies/children-of-men-2006/\">Children of Men (2006)</a><br /></strong><strong><a href=\"http://itcamefrombeyondpulp.com/movies/cloverfield-2008/\">Cloverfield (2008)</a><br /><a href=\"http://itcamefrombeyondpulp.com/movies/the-dark-knight-2008/\">The Dark Knight (2008)</a><br /><a href=\"http://itcamefrombeyondpulp.com/movies/the-fountain-2006/\">The Fountain (2006)</a><br /><a href=\"http://itcamefrombeyondpulp.com/movies/hardware-1990/\">Hardware (1990)</a><br /><a href=\"http://itcamefrombeyondpulp.com/movies/harry-potter-and-the-chamber-of-secrets-2002/\">Harry Potter and the Chamber of Secrets (2002)</a><br /><a href=\"http://itcamefrombeyondpulp.com/movies/harry-potter-and-the-sorcerers-stone-2001/\">Harry Potter and the Sorcerer\'s Stone (2001)</a><br /><a href=\"http://itcamefrombeyondpulp.com/movies/maniac-1934/\">Maniac (1934)</a><br /><a href=\"http://itcamefrombeyondpulp.com/movies/the-phantom-planet-1961/\">The Phantom Planet (1961)</a><br /><a href=\"http://itcamefrombeyondpulp.com/movies/predator-1987/\">Predator (1987)</a><br /></strong><a href=\"http://itcamefrombeyondpulp.com/movies/serenity-2005/\"><strong>Serenity (2005)</strong></a><br /><a href=\"http://itcamefrombeyondpulp.com/movies/x-men-the-last-stand-2006/\"><strong>X-Men: The Last Stand (2006)</strong></a></p>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Movies','','inherit','closed','closed','','45-revision-v1','','','2019-07-25 22:47:28','2019-07-25 22:47:28','',45,'http://itcamefrombeyondpulp.com/uncategorized/45-revision-v1/',0,'revision','',0),(270,1,'2019-07-25 22:55:58','2019-07-25 22:55:58','[et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" custom_padding=\"0px|||||\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" custom_margin=\"||11px|||\" next_background_color=\"#000000\" global_module=\"74\"][et_pb_row global_parent=\"74\" custom_padding=\"0px||0px|||\" custom_margin=\"|auto|-66px|auto||\" _builder_version=\"3.26.3\"][et_pb_column type=\"4_4\" global_parent=\"74\" _builder_version=\"3.26.3\"][et_pb_image global_parent=\"74\" src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/header.jpg\" url=\"http://itcamefrombeyondpulp.com\" _builder_version=\"3.26.3\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.26.3\" width=\"1080px\" inner_module_alignment=\"center\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" module_alignment=\"center\" custom_padding=\"0px||0px||false|false\" prev_background_color=\"#000000\" next_background_color=\"#e02b20\" global_module=\"175\"][et_pb_fullwidth_menu global_parent=\"175\" menu_id=\"2\" submenu_direction=\"downwards\" fullwidth_menu=\"off\" dropdown_menu_text_color=\"#ffffff\" _builder_version=\"3.26.3\" menu_font=\"|800||on|||||\" menu_text_color=\"#ffffff\" menu_font_size=\"22px\" menu_letter_spacing=\"5px\" background_color=\"#e02b20\" border_width_bottom=\"5px\" text_orientation=\"center\" background_layout=\"dark\" custom_padding=\"1px||0px||false|false\" z_index_tablet=\"500\" menu_text_shadow_horizontal_length_tablet=\"0px\" menu_text_shadow_vertical_length_tablet=\"0px\" menu_text_shadow_blur_strength_tablet=\"1px\" border_width_bottom_tablet=\"5px\" border_width_bottom_phone=\"5px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" custom_margin=\"0px||||false|false\" /][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" background_color=\"#e02b20\" width=\"1080px\" module_alignment=\"center\" custom_padding=\"10px||0px|||\" prev_background_color=\"#ffffff\"][et_pb_row custom_padding=\"10px|10px||\" _builder_version=\"3.26.3\" background_color=\"#ffffff\" border_width_bottom=\"5px\" border_color_bottom=\"#e02b20\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.26.3\" z_index_tablet=\"500\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" text_text_shadow_horizontal_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_vertical_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_blur_strength=\"text_text_shadow_style,%91object Object%93\" link_text_shadow_horizontal_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_vertical_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_blur_strength=\"link_text_shadow_style,%91object Object%93\" ul_text_shadow_horizontal_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_vertical_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_blur_strength=\"ul_text_shadow_style,%91object Object%93\" ol_text_shadow_horizontal_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_vertical_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_blur_strength=\"ol_text_shadow_style,%91object Object%93\" quote_text_shadow_horizontal_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_vertical_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_blur_strength=\"quote_text_shadow_style,%91object Object%93\" header_text_shadow_horizontal_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_vertical_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_blur_strength=\"header_text_shadow_style,%91object Object%93\" header_2_text_shadow_horizontal_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_vertical_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_blur_strength=\"header_2_text_shadow_style,%91object Object%93\" header_3_text_shadow_horizontal_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_vertical_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_blur_strength=\"header_3_text_shadow_style,%91object Object%93\" header_4_text_shadow_horizontal_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_vertical_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_blur_strength=\"header_4_text_shadow_style,%91object Object%93\" header_5_text_shadow_horizontal_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_vertical_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_blur_strength=\"header_5_text_shadow_style,%91object Object%93\" header_6_text_shadow_horizontal_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_vertical_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_blur_strength=\"header_6_text_shadow_style,%91object Object%93\"]\r\n\r\n<h1 style=\"text-align: center;\">Movies &amp; TV Reviews</h1>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_3\"][et_pb_text _builder_version=\"3.26.3\" text_text_shadow_horizontal_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\"]\r\n\r\n<h3 style=\"text-align: center;\">Sci-Fi</h3><p style=\"text-align: center;\"><strong><a href=\"http://itcamefrombeyondpulp.com/movies/children-of-men-2006/\">Children of Men (2006)</a><br /></strong><strong><a href=\"http://itcamefrombeyondpulp.com/movies/cloverfield-2008/\">Cloverfield (2008)</a><br /><a href=\"http://itcamefrombeyondpulp.com/movies/the-dark-knight-2008/\">The Dark Knight (2008)</a><br /><a href=\"http://itcamefrombeyondpulp.com/movies/the-fountain-2006/\">The Fountain (2006)</a><br /><a href=\"http://itcamefrombeyondpulp.com/movies/hardware-1990/\">Hardware (1990)</a><br /><a href=\"http://itcamefrombeyondpulp.com/movies/harry-potter-and-the-chamber-of-secrets-2002/\">Harry Potter and the Chamber of Secrets (2002)</a><br /><a href=\"http://itcamefrombeyondpulp.com/movies/harry-potter-and-the-sorcerers-stone-2001/\">Harry Potter and the Sorcerer\'s Stone (2001)</a><br /><a href=\"http://itcamefrombeyondpulp.com/movies/maniac-1934/\">Maniac (1934)</a><br /><a href=\"http://itcamefrombeyondpulp.com/movies/the-phantom-planet-1961/\">The Phantom Planet (1961)</a><br /><a href=\"http://itcamefrombeyondpulp.com/movies/predator-1987/\">Predator (1987)</a><br /></strong><a href=\"http://itcamefrombeyondpulp.com/movies/serenity-2005/\"><strong>Serenity (2005)</strong></a><br /><a href=\"http://itcamefrombeyondpulp.com/movies/x-men-the-last-stand-2006/\"><strong>X-Men: The Last Stand (2006)</strong></a></p>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text _builder_version=\"3.26.3\" text_text_shadow_horizontal_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\"]\r\n\r\n<h3 style=\"text-align: center;\">Horror</h3>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text _builder_version=\"3.26.3\" text_text_shadow_horizontal_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\"]\r\n\r\n<h3 style=\"text-align: center;\">Whatnot</h3>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Movies','','inherit','closed','closed','','45-revision-v1','','','2019-07-25 22:55:58','2019-07-25 22:55:58','',45,'http://itcamefrombeyondpulp.com/uncategorized/45-revision-v1/',0,'revision','',0),(294,1,'2019-07-26 02:08:21','2019-07-26 02:08:21','[et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" custom_padding=\"0px|||||\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" custom_margin=\"||11px|||\" next_background_color=\"#000000\" global_module=\"74\"][et_pb_row global_parent=\"74\" custom_padding=\"0px||0px|||\" custom_margin=\"|auto|-66px|auto||\" _builder_version=\"3.26.3\"][et_pb_column type=\"4_4\" global_parent=\"74\" _builder_version=\"3.26.3\"][et_pb_image global_parent=\"74\" src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/header.jpg\" url=\"http://itcamefrombeyondpulp.com\" _builder_version=\"3.26.3\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.26.3\" width=\"1080px\" module_alignment=\"center\" inner_module_alignment=\"center\" custom_padding=\"0px||0px||false|false\" z_index_tablet=\"500\" hover_enabled=\"0\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" width_last_edited=\"on|tablet\" width_phone=\"100%\" width_tablet=\"100%\" global_module=\"175\" prev_background_color=\"#000000\" next_background_color=\"#e02b20\"][et_pb_fullwidth_menu global_parent=\"175\" menu_id=\"2\" submenu_direction=\"downwards\" fullwidth_menu=\"off\" dropdown_menu_text_color=\"#ffffff\" _builder_version=\"3.26.3\" menu_font=\"|800||on|||||\" menu_text_color=\"#ffffff\" menu_font_size=\"22px\" menu_letter_spacing=\"5px\" background_color=\"#e02b20\" border_width_bottom=\"5px\" text_orientation=\"center\" background_layout=\"dark\" custom_margin=\"0px||||false|false\" custom_padding=\"1px||0px||false|false\" z_index_tablet=\"500\" menu_text_shadow_horizontal_length_tablet=\"0px\" menu_text_shadow_vertical_length_tablet=\"0px\" menu_text_shadow_blur_strength_tablet=\"1px\" border_width_bottom_tablet=\"5px\" border_width_bottom_phone=\"5px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" /][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" background_color=\"#e02b20\" width=\"1080px\" module_alignment=\"center\" custom_padding=\"10px||0px|||\" prev_background_color=\"#ffffff\"][et_pb_row _builder_version=\"3.26.3\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" background_color=\"#ffffff\" custom_padding=\"10px|10px||10px|false|false\" border_width_bottom=\"5px\" border_color_bottom=\"#e02b20\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image _builder_version=\"3.26.3\" src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/children.jpg\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\" /][et_pb_text _builder_version=\"3.26.3\" z_index_tablet=\"500\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" text_text_shadow_horizontal_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_vertical_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_blur_strength=\"text_text_shadow_style,%91object Object%93\" link_text_shadow_horizontal_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_vertical_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_blur_strength=\"link_text_shadow_style,%91object Object%93\" ul_text_shadow_horizontal_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_vertical_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_blur_strength=\"ul_text_shadow_style,%91object Object%93\" ol_text_shadow_horizontal_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_vertical_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_blur_strength=\"ol_text_shadow_style,%91object Object%93\" quote_text_shadow_horizontal_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_vertical_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_blur_strength=\"quote_text_shadow_style,%91object Object%93\" header_text_shadow_horizontal_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_vertical_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_blur_strength=\"header_text_shadow_style,%91object Object%93\" header_2_text_shadow_horizontal_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_vertical_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_blur_strength=\"header_2_text_shadow_style,%91object Object%93\" header_3_text_shadow_horizontal_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_vertical_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_blur_strength=\"header_3_text_shadow_style,%91object Object%93\" header_4_text_shadow_horizontal_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_vertical_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_blur_strength=\"header_4_text_shadow_style,%91object Object%93\" header_5_text_shadow_horizontal_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_vertical_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_blur_strength=\"header_5_text_shadow_style,%91object Object%93\" header_6_text_shadow_horizontal_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_vertical_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_blur_strength=\"header_6_text_shadow_style,%91object Object%93\"]\n\n<h3 style=\"text-align: center;\"><strong><em>The Children</em> (Max Kalmanowicz, 1980, 93 min.)</strong></h3>\n<p>One can only imagine what awful child-related experience prompted Carlton Albright and Edward Terry to write a screenplay as horrific as <i>The Children</i>; perhaps he suspects his kids of being the mailman\'s progeny. The \"scary little kid\" subgenre has never been scarier or more nihilistic than this incredibly effective and incredibly nasty bargain-basement shockfest. Its premise is simple: a busload of kids drives through a toxic fog and turns into... into what? They still look like apple-cheeked, sweet-faced munchkins, except their fingernails are black, and if they touch you, they melt the flesh from your bones. To paraphrase the song, I believe the children are our future, and there ain\'t no future here.</p>\n<p>After a prologue that establishes the source of the toxic fog, we follow the sheriff (Gil Rogers) as he tries to figure out why the school bus would be sitting empty on the side of the road. After he finds the first victim (the bus driver), his immediate concern is again with the children: who will protect them from whatever did this to the driver? It takes everyone concerned an inordinately long time to decide, finally, that the kids are the reason behind the rapidly accumulating bodies. But that\'s natural: we know we\'re watching a horror film called <i>The Children</i>, but it\'s almost against our instincts to suspect children of being capable of killing.</p>\n<p>The acting and dialogue are standard for the horror genre, meaning that they\'re basically sub-par, but that fact doesn\'t detract from the movie\'s effectiveness a whit. Director Max Kalmanowicz\'s staging of scenes is nothing special during the first two acts, when it\'s still daylight and the adults are still trying to figure out what\'s going on. But once night falls, his true gifts come into play. Under cover of near-darkness, he exhibits an almost supernatural mastery of simple, evocative, and scary-as-hell shot framing, shock reveals, and pacing. He doesn\'t make the mistake, common in the slasher genre, of overlighting his shots: the lighting here is the familiar blindness-inducing pitch black of a moonless night, in which headlights, flashlights, and candles illuminate just enough to remind you of how cavern-dark everything else is. It\'s here, in the dark, where he uses his scary kids brilliantly. Smiling, arms outstretched, calling \"mommy, mommy\" in their piping voices, they loom out of the blackness like pretty little angels of death: this is the single scariest image I can remember from any horror film.</p>\n<p>And if the soul-destroying horror of children turned into monsters weren\'t enough, the film bravely (if that\'s the right word; \"sadistically\" would fit too) follows through on its premise by making the destruction of the children necessary (i.e., there\'s no cure) and even more awful than the children themselves: only chopping off their hands will stop them. Both hands. That the camera pulls away from the scene of greatest carnage is no salve: the camera tracks slowly, sinuously out of a barn, into the yard, through a house, through the woods, as unearthly screams prompt our imaginations to supply pictures more nauseating than any makeup artist could create. And that\'s not even the most disturbing, or nihilistic, of the film\'s little horrors—it saves its biggest kick for last.</p>\n<p>The unfair 5.1 rating on IMDB could reflect any number of things: disgust with <i>The Children</i>\'s awful nihilism, or failure to look past the low-budget aesthetics to the brilliant way Kalmanowicz and company embrace and twist the genre\'s conventions and limitations. It\'s certainly not for everybody. It\'s probably not for most people. You know who you are.</p>\n\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','The Children (1980)','','inherit','closed','closed','','284-autosave-v1','','','2019-07-26 02:08:21','2019-07-26 02:08:21','',284,'http://itcamefrombeyondpulp.com/uncategorized/284-autosave-v1/',0,'revision','',0),(290,1,'2019-07-26 02:03:32','2019-07-26 02:03:32','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.26.3\" width=\"1080px\" module_alignment=\"center\" inner_module_alignment=\"center\" custom_padding=\"0px||0px||false|false\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" width_last_edited=\"on|desktop\" width_phone=\"100%\" template_type=\"section\"][et_pb_fullwidth_menu menu_id=\"2\" submenu_direction=\"downwards\" fullwidth_menu=\"off\" dropdown_menu_text_color=\"#ffffff\" _builder_version=\"3.26.3\" menu_font=\"|800||on|||||\" menu_text_color=\"#ffffff\" menu_font_size=\"22px\" menu_letter_spacing=\"5px\" background_color=\"#e02b20\" border_width_bottom=\"5px\" text_orientation=\"center\" background_layout=\"dark\" custom_margin=\"0px||||false|false\" custom_padding=\"1px||0px||false|false\" z_index_tablet=\"500\" menu_text_shadow_horizontal_length_tablet=\"0px\" menu_text_shadow_vertical_length_tablet=\"0px\" menu_text_shadow_blur_strength_tablet=\"1px\" border_width_bottom_tablet=\"5px\" border_width_bottom_phone=\"5px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\"][/et_pb_fullwidth_menu][/et_pb_section]','nav bar','','inherit','closed','closed','','175-revision-v1','','','2019-07-26 02:03:32','2019-07-26 02:03:32','',175,'http://itcamefrombeyondpulp.com/uncategorized/175-revision-v1/',0,'revision','',0),(293,1,'2019-07-26 02:08:08','2019-07-26 02:08:08','[et_pb_section bb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.26.3\" width=\"1080px\" module_alignment=\"center\" inner_module_alignment=\"center\" custom_padding=\"0px||0px||false|false\" z_index_tablet=\"500\" hover_enabled=\"0\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" width_last_edited=\"on|tablet\" width_phone=\"100%\" width_tablet=\"100%\" prev_background_color=\"#000000\" next_background_color=\"#e02b20\" template_type=\"section\"][et_pb_fullwidth_menu menu_id=\"2\" submenu_direction=\"downwards\" fullwidth_menu=\"off\" dropdown_menu_text_color=\"#ffffff\" _builder_version=\"3.26.3\" menu_font=\"|800||on|||||\" menu_text_color=\"#ffffff\" menu_font_size=\"22px\" menu_letter_spacing=\"5px\" background_color=\"#e02b20\" border_width_bottom=\"5px\" text_orientation=\"center\" background_layout=\"dark\" custom_margin=\"0px||||false|false\" custom_padding=\"1px||0px||false|false\" z_index_tablet=\"500\" menu_text_shadow_horizontal_length_tablet=\"0px\" menu_text_shadow_vertical_length_tablet=\"0px\" menu_text_shadow_blur_strength_tablet=\"1px\" border_width_bottom_tablet=\"5px\" border_width_bottom_phone=\"5px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" /][/et_pb_section]','nav bar','','inherit','closed','closed','','175-revision-v1','','','2019-07-26 02:08:08','2019-07-26 02:08:08','',175,'http://itcamefrombeyondpulp.com/uncategorized/175-revision-v1/',0,'revision','',0),(291,1,'2019-07-26 02:05:04','2019-07-26 02:05:04','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.26.3\" width=\"1080px\" module_alignment=\"center\" inner_module_alignment=\"center\" custom_padding=\"0px||0px||false|false\" z_index_tablet=\"500\" hover_enabled=\"0\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" width_last_edited=\"on|tablet\" width_phone=\"100%\" width_tablet=\"100%\" template_type=\"section\"][et_pb_fullwidth_menu menu_id=\"2\" submenu_direction=\"downwards\" fullwidth_menu=\"off\" dropdown_menu_text_color=\"#ffffff\" _builder_version=\"3.26.3\" menu_font=\"|800||on|||||\" menu_text_color=\"#ffffff\" menu_font_size=\"22px\" menu_letter_spacing=\"5px\" background_color=\"#e02b20\" border_width_bottom=\"5px\" text_orientation=\"center\" background_layout=\"dark\" custom_margin=\"0px||||false|false\" custom_padding=\"1px||0px||false|false\" z_index_tablet=\"500\" menu_text_shadow_horizontal_length_tablet=\"0px\" menu_text_shadow_vertical_length_tablet=\"0px\" menu_text_shadow_blur_strength_tablet=\"1px\" border_width_bottom_tablet=\"5px\" border_width_bottom_phone=\"5px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\"][/et_pb_fullwidth_menu][/et_pb_section]','nav bar','','inherit','closed','closed','','175-revision-v1','','','2019-07-26 02:05:04','2019-07-26 02:05:04','',175,'http://itcamefrombeyondpulp.com/uncategorized/175-revision-v1/',0,'revision','',0),(295,1,'2019-07-26 02:09:44','2019-07-26 02:09:44','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.26.3\" width=\"1080px\" width_tablet=\"100%\" width_phone=\"100%\" width_last_edited=\"on|phone\" module_alignment=\"center\" inner_module_alignment=\"center\" custom_padding=\"0px||0px||false|false\" z_index_tablet=\"500\" hover_enabled=\"0\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" template_type=\"section\"][et_pb_fullwidth_menu menu_id=\"2\" submenu_direction=\"downwards\" fullwidth_menu=\"off\" dropdown_menu_text_color=\"#ffffff\" _builder_version=\"3.26.3\" menu_font=\"|800||on|||||\" menu_text_color=\"#ffffff\" menu_font_size=\"22px\" menu_letter_spacing=\"5px\" background_color=\"#e02b20\" border_width_bottom=\"5px\" text_orientation=\"center\" background_layout=\"dark\" custom_margin=\"0px||||false|false\" custom_padding=\"1px||0px||false|false\" z_index_tablet=\"500\" menu_text_shadow_horizontal_length_tablet=\"0px\" menu_text_shadow_vertical_length_tablet=\"0px\" menu_text_shadow_blur_strength_tablet=\"1px\" border_width_bottom_tablet=\"5px\" border_width_bottom_phone=\"5px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\"][/et_pb_fullwidth_menu][/et_pb_section]','nav bar','','inherit','closed','closed','','175-revision-v1','','','2019-07-26 02:09:44','2019-07-26 02:09:44','',175,'http://itcamefrombeyondpulp.com/uncategorized/175-revision-v1/',0,'revision','',0),(271,1,'2019-07-26 00:52:43','2019-07-26 00:52:43','[et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" custom_padding=\"0px|||||\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" custom_margin=\"||11px|||\" next_background_color=\"#000000\" global_module=\"74\"][et_pb_row global_parent=\"74\" custom_padding=\"0px||0px|||\" custom_margin=\"|auto|-66px|auto||\" _builder_version=\"3.26.3\"][et_pb_column type=\"4_4\" global_parent=\"74\" _builder_version=\"3.26.3\"][et_pb_image global_parent=\"74\" src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/header.jpg\" url=\"http://itcamefrombeyondpulp.com\" _builder_version=\"3.26.3\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.26.3\" width=\"1080px\" inner_module_alignment=\"center\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" module_alignment=\"center\" custom_padding=\"0px||0px||false|false\" prev_background_color=\"#000000\" next_background_color=\"#e02b20\" global_module=\"175\"][et_pb_fullwidth_menu global_parent=\"175\" menu_id=\"2\" submenu_direction=\"downwards\" fullwidth_menu=\"off\" dropdown_menu_text_color=\"#ffffff\" _builder_version=\"3.26.3\" menu_font=\"|800||on|||||\" menu_text_color=\"#ffffff\" menu_font_size=\"22px\" menu_letter_spacing=\"5px\" background_color=\"#e02b20\" border_width_bottom=\"5px\" text_orientation=\"center\" background_layout=\"dark\" custom_padding=\"1px||0px||false|false\" z_index_tablet=\"500\" menu_text_shadow_horizontal_length_tablet=\"0px\" menu_text_shadow_vertical_length_tablet=\"0px\" menu_text_shadow_blur_strength_tablet=\"1px\" border_width_bottom_tablet=\"5px\" border_width_bottom_phone=\"5px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" custom_margin=\"0px||||false|false\" /][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" background_color=\"#e02b20\" width=\"1080px\" module_alignment=\"center\" custom_padding=\"10px||0px|||\" prev_background_color=\"#ffffff\"][et_pb_row _builder_version=\"3.26.3\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" background_color=\"#ffffff\" custom_padding=\"10px|10px||10px|false|false\" border_width_bottom=\"5px\" border_color_bottom=\"#e02b20\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image _builder_version=\"3.26.3\" src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/blackcat.jpg\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\" /][et_pb_text _builder_version=\"3.26.3\" z_index_tablet=\"500\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" text_text_shadow_horizontal_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_vertical_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_blur_strength=\"text_text_shadow_style,%91object Object%93\" link_text_shadow_horizontal_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_vertical_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_blur_strength=\"link_text_shadow_style,%91object Object%93\" ul_text_shadow_horizontal_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_vertical_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_blur_strength=\"ul_text_shadow_style,%91object Object%93\" ol_text_shadow_horizontal_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_vertical_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_blur_strength=\"ol_text_shadow_style,%91object Object%93\" quote_text_shadow_horizontal_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_vertical_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_blur_strength=\"quote_text_shadow_style,%91object Object%93\" header_text_shadow_horizontal_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_vertical_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_blur_strength=\"header_text_shadow_style,%91object Object%93\" header_2_text_shadow_horizontal_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_vertical_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_blur_strength=\"header_2_text_shadow_style,%91object Object%93\" header_3_text_shadow_horizontal_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_vertical_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_blur_strength=\"header_3_text_shadow_style,%91object Object%93\" header_4_text_shadow_horizontal_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_vertical_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_blur_strength=\"header_4_text_shadow_style,%91object Object%93\" header_5_text_shadow_horizontal_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_vertical_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_blur_strength=\"header_5_text_shadow_style,%91object Object%93\" header_6_text_shadow_horizontal_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_vertical_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_blur_strength=\"header_6_text_shadow_style,%91object Object%93\"]\r\n\r\n<h3 style=\"text-align: center;\"><strong><em>Masters of Horror: The Black Cat</em> (Stuart Gordon, 2007, 56 min.)</strong></h3><p>Inventive adapter of macabre literature Stuart Gordon\'s earlier <em>Dreams in the Witch-House</em> was already one of the highlights of Showtime\'s acclaimed \"Masters of Horror\" series, but he outdoes himself in this \"adaptation\" of several of Edgar Allan Poe\'s stories, logging one of the two best episodes—the other being Joe Dante\'s <em>Homecoming</em>. It\'s a rousing good time, a treat for Poe fans, and an authentically creative use of the short format imposed by the series. It\'s also completely, utterly historically inaccurate, but that\'s almost part of the fun.</p><p>Edgar A. Poe (Gordon regular Jeffry Combs, uncannily resembling the real thing) would like to be known as a poet, but his poems fetch him pennies from publisher George Graham (Aron Tager), a miser whose cataract-clouded eye makes him resemble the victim of one of Poe\'s most famous stories. Graham wants more gory horror stories, and he gives the author an advance, which Poe promptly converts to booze at a local pub before getting tossed out on his ear. Back at home, his young wife Virginia (Elyse Levesque) is selling her beloved piano to pay the rent—and, incidentally, she\'s dying of tuberculosis, which is revealed in a stomach-churning yet beautiful scene where her song is interrupted by a coughing fit. Her beloved \"Eddie\" has to write a killer story to earn enough to pay a doctor. Complicating things is the fact that his wife\'s black cat, Pluto, seems to be trying to drive him crazy, admittedly a short trip.</p><p>Gordon and co-screenwriter Dennis Paoli borrow liberally from Poe\'s stories—including, but certainly not limited to, \"The Cask of Amontillado,\" \"The Raven,\" \"The Tell-Tale Heart,\" and of course \"The Black Cat,\" although I don\'t claim to have caught all the references—and also from the popular misconception of Poe as a drug-crazed sot who drank away his talent and his life. They weave semi-fact, fiction, and hallucination into a swirling, exceptionally watchable story where neither we nor Poe is ever quite sure whether we\'re seeing things that are actually happening or just Poe\'s delusions. Combs delivers a brilliant portrait of a proud but misunderstood man who attempts to keep his composure under immense pressure but is thwarted at every step by his own weaknesses of mind and heart (and a cat that refuses to die). He reminded me, oddly, of Buster Keaton, who kept his stony exterior even when the world was falling apart around him, except Combs\'s Poe is tested by assaults both physical and mental.</p><p>Unlike many of the entries in the series, this film looks fantastic. Compare cinematographer Jon Joffin\'s work here with the clownish, TV-looking <em>We All Scream for Ice Cream</em>, which immediately preceded this episode in the series\'s original run. This looks cinematic, gothic, and authentic, a shabbily dusty reproduction of Jacksonian-era lower-middle-class life. I can only attribute the fine combination of story, performance, and production to Gordon, whose ability to create atmosphere has sadly been ignored, as he demonstrates most of it in the ghetto of horror films. It\'s a ghetto where I\'m happy to spend a lot of my time; I only wish more people were so inclined.</p>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Masters of Horror: The Black Cat (2007)','','publish','closed','closed','','masters-of-horror-the-black-cat-2007','','','2019-07-26 00:52:43','2019-07-26 00:52:43','',0,'http://itcamefrombeyondpulp.com/?p=271',0,'post','',0),(272,1,'2019-07-26 00:51:53','2019-07-26 00:51:53','','blackcat','','inherit','closed','closed','','blackcat','','','2019-07-26 00:51:53','2019-07-26 00:51:53','',271,'http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/blackcat.jpg',0,'attachment','image/jpeg',0),(273,1,'2019-07-26 00:52:43','2019-07-26 00:52:43','[et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" custom_padding=\"0px|||||\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" custom_margin=\"||11px|||\" next_background_color=\"#000000\" global_module=\"74\"][et_pb_row global_parent=\"74\" custom_padding=\"0px||0px|||\" custom_margin=\"|auto|-66px|auto||\" _builder_version=\"3.26.3\"][et_pb_column type=\"4_4\" global_parent=\"74\" _builder_version=\"3.26.3\"][et_pb_image global_parent=\"74\" src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/header.jpg\" url=\"http://itcamefrombeyondpulp.com\" _builder_version=\"3.26.3\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.26.3\" width=\"1080px\" inner_module_alignment=\"center\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" module_alignment=\"center\" custom_padding=\"0px||0px||false|false\" prev_background_color=\"#000000\" next_background_color=\"#e02b20\" global_module=\"175\"][et_pb_fullwidth_menu global_parent=\"175\" menu_id=\"2\" submenu_direction=\"downwards\" fullwidth_menu=\"off\" dropdown_menu_text_color=\"#ffffff\" _builder_version=\"3.26.3\" menu_font=\"|800||on|||||\" menu_text_color=\"#ffffff\" menu_font_size=\"22px\" menu_letter_spacing=\"5px\" background_color=\"#e02b20\" border_width_bottom=\"5px\" text_orientation=\"center\" background_layout=\"dark\" custom_padding=\"1px||0px||false|false\" z_index_tablet=\"500\" menu_text_shadow_horizontal_length_tablet=\"0px\" menu_text_shadow_vertical_length_tablet=\"0px\" menu_text_shadow_blur_strength_tablet=\"1px\" border_width_bottom_tablet=\"5px\" border_width_bottom_phone=\"5px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" custom_margin=\"0px||||false|false\" /][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" background_color=\"#e02b20\" width=\"1080px\" module_alignment=\"center\" custom_padding=\"10px||0px|||\" prev_background_color=\"#ffffff\"][et_pb_row _builder_version=\"3.26.3\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" background_color=\"#ffffff\" custom_padding=\"10px|10px||10px|false|false\" border_width_bottom=\"5px\" border_color_bottom=\"#e02b20\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image _builder_version=\"3.26.3\" src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/blackcat.jpg\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\" /][et_pb_text _builder_version=\"3.26.3\" z_index_tablet=\"500\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" text_text_shadow_horizontal_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_vertical_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_blur_strength=\"text_text_shadow_style,%91object Object%93\" link_text_shadow_horizontal_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_vertical_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_blur_strength=\"link_text_shadow_style,%91object Object%93\" ul_text_shadow_horizontal_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_vertical_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_blur_strength=\"ul_text_shadow_style,%91object Object%93\" ol_text_shadow_horizontal_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_vertical_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_blur_strength=\"ol_text_shadow_style,%91object Object%93\" quote_text_shadow_horizontal_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_vertical_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_blur_strength=\"quote_text_shadow_style,%91object Object%93\" header_text_shadow_horizontal_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_vertical_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_blur_strength=\"header_text_shadow_style,%91object Object%93\" header_2_text_shadow_horizontal_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_vertical_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_blur_strength=\"header_2_text_shadow_style,%91object Object%93\" header_3_text_shadow_horizontal_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_vertical_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_blur_strength=\"header_3_text_shadow_style,%91object Object%93\" header_4_text_shadow_horizontal_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_vertical_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_blur_strength=\"header_4_text_shadow_style,%91object Object%93\" header_5_text_shadow_horizontal_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_vertical_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_blur_strength=\"header_5_text_shadow_style,%91object Object%93\" header_6_text_shadow_horizontal_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_vertical_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_blur_strength=\"header_6_text_shadow_style,%91object Object%93\"]\r\n\r\n<h3 style=\"text-align: center;\"><strong><em>Masters of Horror: The Black Cat</em> (Stuart Gordon, 2007, 56 min.)</strong></h3><p>Inventive adapter of macabre literature Stuart Gordon\'s earlier <em>Dreams in the Witch-House</em> was already one of the highlights of Showtime\'s acclaimed \"Masters of Horror\" series, but he outdoes himself in this \"adaptation\" of several of Edgar Allan Poe\'s stories, logging one of the two best episodes—the other being Joe Dante\'s <em>Homecoming</em>. It\'s a rousing good time, a treat for Poe fans, and an authentically creative use of the short format imposed by the series. It\'s also completely, utterly historically inaccurate, but that\'s almost part of the fun.</p><p>Edgar A. Poe (Gordon regular Jeffry Combs, uncannily resembling the real thing) would like to be known as a poet, but his poems fetch him pennies from publisher George Graham (Aron Tager), a miser whose cataract-clouded eye makes him resemble the victim of one of Poe\'s most famous stories. Graham wants more gory horror stories, and he gives the author an advance, which Poe promptly converts to booze at a local pub before getting tossed out on his ear. Back at home, his young wife Virginia (Elyse Levesque) is selling her beloved piano to pay the rent—and, incidentally, she\'s dying of tuberculosis, which is revealed in a stomach-churning yet beautiful scene where her song is interrupted by a coughing fit. Her beloved \"Eddie\" has to write a killer story to earn enough to pay a doctor. Complicating things is the fact that his wife\'s black cat, Pluto, seems to be trying to drive him crazy, admittedly a short trip.</p><p>Gordon and co-screenwriter Dennis Paoli borrow liberally from Poe\'s stories—including, but certainly not limited to, \"The Cask of Amontillado,\" \"The Raven,\" \"The Tell-Tale Heart,\" and of course \"The Black Cat,\" although I don\'t claim to have caught all the references—and also from the popular misconception of Poe as a drug-crazed sot who drank away his talent and his life. They weave semi-fact, fiction, and hallucination into a swirling, exceptionally watchable story where neither we nor Poe is ever quite sure whether we\'re seeing things that are actually happening or just Poe\'s delusions. Combs delivers a brilliant portrait of a proud but misunderstood man who attempts to keep his composure under immense pressure but is thwarted at every step by his own weaknesses of mind and heart (and a cat that refuses to die). He reminded me, oddly, of Buster Keaton, who kept his stony exterior even when the world was falling apart around him, except Combs\'s Poe is tested by assaults both physical and mental.</p><p>Unlike many of the entries in the series, this film looks fantastic. Compare cinematographer Jon Joffin\'s work here with the clownish, TV-looking <em>We All Scream for Ice Cream</em>, which immediately preceded this episode in the series\'s original run. This looks cinematic, gothic, and authentic, a shabbily dusty reproduction of Jacksonian-era lower-middle-class life. I can only attribute the fine combination of story, performance, and production to Gordon, whose ability to create atmosphere has sadly been ignored, as he demonstrates most of it in the ghetto of horror films. It\'s a ghetto where I\'m happy to spend a lot of my time; I only wish more people were so inclined.</p>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Masters of Horror: The Black Cat (2007)','','inherit','closed','closed','','271-revision-v1','','','2019-07-26 00:52:43','2019-07-26 00:52:43','',271,'http://itcamefrombeyondpulp.com/uncategorized/271-revision-v1/',0,'revision','',0),(274,1,'2019-07-26 00:57:06','2019-07-26 00:57:06','[et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" custom_padding=\"0px|||||\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" custom_margin=\"||11px|||\" next_background_color=\"#000000\" global_module=\"74\"][et_pb_row global_parent=\"74\" custom_padding=\"0px||0px|||\" custom_margin=\"|auto|-66px|auto||\" _builder_version=\"3.26.3\"][et_pb_column type=\"4_4\" global_parent=\"74\" _builder_version=\"3.26.3\"][et_pb_image global_parent=\"74\" src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/header.jpg\" url=\"http://itcamefrombeyondpulp.com\" _builder_version=\"3.26.3\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.26.3\" width=\"1080px\" inner_module_alignment=\"center\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" module_alignment=\"center\" custom_padding=\"0px||0px||false|false\" prev_background_color=\"#000000\" next_background_color=\"#e02b20\" global_module=\"175\"][et_pb_fullwidth_menu global_parent=\"175\" menu_id=\"2\" submenu_direction=\"downwards\" fullwidth_menu=\"off\" dropdown_menu_text_color=\"#ffffff\" _builder_version=\"3.26.3\" menu_font=\"|800||on|||||\" menu_text_color=\"#ffffff\" menu_font_size=\"22px\" menu_letter_spacing=\"5px\" background_color=\"#e02b20\" border_width_bottom=\"5px\" text_orientation=\"center\" background_layout=\"dark\" custom_padding=\"1px||0px||false|false\" z_index_tablet=\"500\" menu_text_shadow_horizontal_length_tablet=\"0px\" menu_text_shadow_vertical_length_tablet=\"0px\" menu_text_shadow_blur_strength_tablet=\"1px\" border_width_bottom_tablet=\"5px\" border_width_bottom_phone=\"5px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" custom_margin=\"0px||||false|false\" /][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" background_color=\"#e02b20\" width=\"1080px\" module_alignment=\"center\" custom_padding=\"10px||0px|||\" prev_background_color=\"#ffffff\"][et_pb_row _builder_version=\"3.26.3\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" background_color=\"#ffffff\" custom_padding=\"10px|10px||10px|false|false\" border_width_bottom=\"5px\" border_color_bottom=\"#e02b20\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image _builder_version=\"3.26.3\" src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/bloodrayne.jpg\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\" /][et_pb_text _builder_version=\"3.26.3\" z_index_tablet=\"500\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" text_text_shadow_horizontal_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_vertical_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_blur_strength=\"text_text_shadow_style,%91object Object%93\" link_text_shadow_horizontal_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_vertical_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_blur_strength=\"link_text_shadow_style,%91object Object%93\" ul_text_shadow_horizontal_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_vertical_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_blur_strength=\"ul_text_shadow_style,%91object Object%93\" ol_text_shadow_horizontal_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_vertical_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_blur_strength=\"ol_text_shadow_style,%91object Object%93\" quote_text_shadow_horizontal_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_vertical_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_blur_strength=\"quote_text_shadow_style,%91object Object%93\" header_text_shadow_horizontal_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_vertical_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_blur_strength=\"header_text_shadow_style,%91object Object%93\" header_2_text_shadow_horizontal_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_vertical_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_blur_strength=\"header_2_text_shadow_style,%91object Object%93\" header_3_text_shadow_horizontal_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_vertical_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_blur_strength=\"header_3_text_shadow_style,%91object Object%93\" header_4_text_shadow_horizontal_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_vertical_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_blur_strength=\"header_4_text_shadow_style,%91object Object%93\" header_5_text_shadow_horizontal_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_vertical_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_blur_strength=\"header_5_text_shadow_style,%91object Object%93\" header_6_text_shadow_horizontal_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_vertical_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_blur_strength=\"header_6_text_shadow_style,%91object Object%93\"]\r\n\r\n<h3 style=\"text-align: center;\"><strong><em>BloodRayne 2: Deliverance</em> (Uwe Boll, 2007, 99 min.)</strong></h3><p>Instead of a simple angry rant about Uwe Boll\'s <b><i>BloodRayne 2: Deliverance</i></b>, which is about a half-vampire fighting against a vampiric Billy the Kid in the Wild West, I wrote poems: one sonnet (Shakespearean, not Italian), two limericks, a villanelle, and a sestina.</p><p><br /><b>Shall I Compare Thee to an Uwe Boll Film?</b></p><p>The vampire outlaw William Bonney wreaks<br />a trail of carnage spread across the West<br />(but of his Slavic accent we\'ll not speak).<br />But he\'s just <i>BloodRayne 2</i>\'s especial guest:<br />Natassia Malthe is the \"dhamphir\" Rayne;<br />be-sworded, bosomed, clad in leather cloak,<br />she\'s out for vengeance, dealing death and pain<br />to Bill the Kid and his undead cowpokes.<br />Director Uwe Boll is widely booed:<br />\"incompetent\"? Inadequately cruel.<br />Anachronism reigns! Ineptitude<br />of acting, scripting, lensing is the rule.<br />This film\'s a minor cinematic crime<br />entirely unworthy of my rhymes.</p><p><br /><b>The Lass from Oslo</b></p><p>There once was an actress named Malthe.<br />In <i>BloodRayne</i> her presence is paltry.<br />Her waist is quite slim<br />but her acting is grim<br />and quite limited her career shall be.</p><p>She\'s entirely too soft-spoken.<br />She pales next to Kristanna Lokken.<br />She\'s not half as pretty,<br />her accent is shitty,<br />and her ass-kicking skills appear broken.</p><p><br /><b>Do Not Go Gentle Into an Uwe Boll Film</b></p><p>My eyes! God damn that Uwe Boll to hell<br />for bringing forth another <i>BloodRayne</i> flick!<br />Such horrors from my mind I can\'t dispel!</p><p>I\'d rather choose to face armed personnel,<br />or Montresor to wall me up with bricks.<br />My eyes! God damn that Uwe Boll to hell!</p><p>Each line the actors speak is a death knell;<br />the overacting hams lay it on thick.<br />Such horrors from my mind I can\'t dispel.</p><p>Film art is absent, vision, skill as well;<br />technique\'s the very opposite of slick.<br />My eyes! God damn that Uwe Boll to hell!</p><p>I\'d vote to give this film a Prix Nobel<br />but there\'s no prize for cinematic ick.<br />Such horrors from my mind I can\'t dispel!</p><p>At nothing does the cast or crew excel.<br />Just watching left me feeling vaguely sick. <br />My eyes! God damn that Uwe Boll to hell!<br />Such horrors from my mind I can\'t dispel!</p><p><br /><b>There Are No Well-Known Sestina Titles to Infest with Uwe Boll</b></p><p>You\'ll say I\'m too hard on this movie<br />and perhaps you\'re right.<br />It\'s not, after all, trying to be great cinema;<br />it\'s just a straight-to-video sequel<br />that appeals to a certain collection<br />of people who will excuse its flaws.</p><p>But should they excuse those flaws?<br />Did they? It\'s in the bottom 100 movies<br />on the IMDB, an illustrious collection,<br />and while I\'m not sure its placement there is right,<br />it\'s certainly a pointless and unskilled sequel<br />to a film that was itself a blight on the cinema.</p><p>(I don\'t understand the subset of cinema<br />that\'s \"supposed to be bad\"; if the flaws<br />of this <i>BloodRayne</i> sequel<br />are intentional, why is the movie<br />not funny? Because comedy is the only right<br />venue for intentional gaffes; this collection</p><p>of gaffes is unfunny.) So is a growing collection<br />of <i>BloodRayne</i> films inevitable, then? Will the cinema,<br />or at least home video, support Uwe Boll\'s right<br />(backed up by his fists) to slather his directorial flaws<br />on the screen in another half-dressed half-vampire movie?<br />Can he find a distributor for another sequel?</p><p>What a stupid question. Another sequel<br />likely featuring Malthe and a collection<br />of has-beens will bore and annoy movie<br />audiences in 2009. I\'m sure the cinema<br />will survive; it\'s survived more disastrous flaws<br />than Uwe Boll can perpetrate. That\'s right:</p><p>Uwe Boll is harmless. People in their right<br />minds ignore him. Real damage comes from mindless sequels<br />bolstered by kadillion-dollar budgets and a flawed,<br />strictly commercial mindset. The collected<br />films of Brett Ratner, Michael Bay, et al. do more harm to the cinema<br />because studios hold up as triumphs their shitbag movies.</p><p>So let Uwe Boll make movies. Let him do a hundred <i>BloodRayne</i> sequels.<br />It\'s his right (plus he\'ll beat you up if you argue). Cinema\'s<br />real enemies perpetrate worse flaws. Michael Bay is in the Criterion Collection.</p>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','BloodRayne 2: Deliverance (2007)','','publish','closed','closed','','bloodrayne-2-deliverance-2007','','','2019-07-26 00:57:06','2019-07-26 00:57:06','',0,'http://itcamefrombeyondpulp.com/?p=274',0,'post','',0),(275,1,'2019-07-26 00:54:09','2019-07-26 00:54:09','[et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" custom_padding=\"0px|||||\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" custom_margin=\"||11px|||\" next_background_color=\"#000000\" global_module=\"74\"][et_pb_row global_parent=\"74\" custom_padding=\"0px||0px|||\" custom_margin=\"|auto|-66px|auto||\" _builder_version=\"3.26.3\"][et_pb_column type=\"4_4\" global_parent=\"74\" _builder_version=\"3.26.3\"][et_pb_image global_parent=\"74\" src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/header.jpg\" url=\"http://itcamefrombeyondpulp.com\" _builder_version=\"3.26.3\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.26.3\" width=\"1080px\" inner_module_alignment=\"center\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" module_alignment=\"center\" custom_padding=\"0px||0px||false|false\" prev_background_color=\"#000000\" next_background_color=\"#e02b20\" global_module=\"175\"][et_pb_fullwidth_menu global_parent=\"175\" menu_id=\"2\" submenu_direction=\"downwards\" fullwidth_menu=\"off\" dropdown_menu_text_color=\"#ffffff\" _builder_version=\"3.26.3\" menu_font=\"|800||on|||||\" menu_text_color=\"#ffffff\" menu_font_size=\"22px\" menu_letter_spacing=\"5px\" background_color=\"#e02b20\" border_width_bottom=\"5px\" text_orientation=\"center\" background_layout=\"dark\" custom_padding=\"1px||0px||false|false\" z_index_tablet=\"500\" menu_text_shadow_horizontal_length_tablet=\"0px\" menu_text_shadow_vertical_length_tablet=\"0px\" menu_text_shadow_blur_strength_tablet=\"1px\" border_width_bottom_tablet=\"5px\" border_width_bottom_phone=\"5px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" custom_margin=\"0px||||false|false\" /][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" background_color=\"#e02b20\" width=\"1080px\" module_alignment=\"center\" custom_padding=\"10px||0px|||\" prev_background_color=\"#ffffff\"][et_pb_row _builder_version=\"3.26.3\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" background_color=\"#ffffff\" custom_padding=\"10px|10px||10px|false|false\" border_width_bottom=\"5px\" border_color_bottom=\"#e02b20\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image _builder_version=\"3.26.3\" src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/blackcat.jpg\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\" /][et_pb_text _builder_version=\"3.26.3\" z_index_tablet=\"500\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" text_text_shadow_horizontal_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_vertical_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_blur_strength=\"text_text_shadow_style,%91object Object%93\" link_text_shadow_horizontal_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_vertical_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_blur_strength=\"link_text_shadow_style,%91object Object%93\" ul_text_shadow_horizontal_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_vertical_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_blur_strength=\"ul_text_shadow_style,%91object Object%93\" ol_text_shadow_horizontal_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_vertical_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_blur_strength=\"ol_text_shadow_style,%91object Object%93\" quote_text_shadow_horizontal_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_vertical_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_blur_strength=\"quote_text_shadow_style,%91object Object%93\" header_text_shadow_horizontal_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_vertical_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_blur_strength=\"header_text_shadow_style,%91object Object%93\" header_2_text_shadow_horizontal_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_vertical_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_blur_strength=\"header_2_text_shadow_style,%91object Object%93\" header_3_text_shadow_horizontal_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_vertical_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_blur_strength=\"header_3_text_shadow_style,%91object Object%93\" header_4_text_shadow_horizontal_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_vertical_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_blur_strength=\"header_4_text_shadow_style,%91object Object%93\" header_5_text_shadow_horizontal_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_vertical_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_blur_strength=\"header_5_text_shadow_style,%91object Object%93\" header_6_text_shadow_horizontal_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_vertical_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_blur_strength=\"header_6_text_shadow_style,%91object Object%93\"]\n\n<h3 style=\"text-align: center;\"><strong><em>Masters of Horror: The Black Cat</em> (Stuart Gordon, 2007, 56 min.)</strong></h3>\n<p>Inventive adapter of macabre literature Stuart Gordon\'s earlier <em>Dreams in the Witch-House</em> was already one of the highlights of Showtime\'s acclaimed \"Masters of Horror\" series, but he outdoes himself in this \"adaptation\" of several of Edgar Allan Poe\'s stories, logging one of the two best episodes—the other being Joe Dante\'s <em>Homecoming</em>. It\'s a rousing good time, a treat for Poe fans, and an authentically creative use of the short format imposed by the series. It\'s also completely, utterly historically inaccurate, but that\'s almost part of the fun.</p>\n<p>Edgar A. Poe (Gordon regular Jeffry Combs, uncannily resembling the real thing) would like to be known as a poet, but his poems fetch him pennies from publisher George Graham (Aron Tager), a miser whose cataract-clouded eye makes him resemble the victim of one of Poe\'s most famous stories. Graham wants more gory horror stories, and he gives the author an advance, which Poe promptly converts to booze at a local pub before getting tossed out on his ear. Back at home, his young wife Virginia (Elyse Levesque) is selling her beloved piano to pay the rent—and, incidentally, she\'s dying of tuberculosis, which is revealed in a stomach-churning yet beautiful scene where her song is interrupted by a coughing fit. Her beloved \"Eddie\" has to write a killer story to earn enough to pay a doctor. Complicating things is the fact that his wife\'s black cat, Pluto, seems to be trying to drive him crazy, admittedly a short trip.</p>\n<p>Gordon and co-screenwriter Dennis Paoli borrow liberally from Poe\'s stories—including, but certainly not limited to, \"The Cask of Amontillado,\" \"The Raven,\" \"The Tell-Tale Heart,\" and of course \"The Black Cat,\" although I don\'t claim to have caught all the references—and also from the popular misconception of Poe as a drug-crazed sot who drank away his talent and his life. They weave semi-fact, fiction, and hallucination into a swirling, exceptionally watchable story where neither we nor Poe is ever quite sure whether we\'re seeing things that are actually happening or just Poe\'s delusions. Combs delivers a brilliant portrait of a proud but misunderstood man who attempts to keep his composure under immense pressure but is thwarted at every step by his own weaknesses of mind and heart (and a cat that refuses to die). He reminded me, oddly, of Buster Keaton, who kept his stony exterior even when the world was falling apart around him, except Combs\'s Poe is tested by assaults both physical and mental.</p>\n<p>Unlike many of the entries in the series, this film looks fantastic. Compare cinematographer Jon Joffin\'s work here with the clownish, TV-looking <em>We All Scream for Ice Cream</em>, which immediately preceded this episode in the series\'s original run. This looks cinematic, gothic, and authentic, a shabbily dusty reproduction of Jacksonian-era lower-middle-class life. I can only attribute the fine combination of story, performance, and production to Gordon, whose ability to create atmosphere has sadly been ignored, as he demonstrates most of it in the ghetto of horror films. It\'s a ghetto where I\'m happy to spend a lot of my time; I only wish more people were so inclined.</p>\n\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Masters of Horror: The Black Cat (2007)','','inherit','closed','closed','','271-autosave-v1','','','2019-07-26 00:54:09','2019-07-26 00:54:09','',271,'http://itcamefrombeyondpulp.com/uncategorized/271-autosave-v1/',0,'revision','',0),(276,1,'2019-07-26 00:56:44','2019-07-26 00:56:44','','bloodrayne','','inherit','closed','closed','','bloodrayne','','','2019-07-26 00:56:44','2019-07-26 00:56:44','',274,'http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/bloodrayne.jpg',0,'attachment','image/jpeg',0),(277,1,'2019-07-26 00:57:06','2019-07-26 00:57:06','[et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" custom_padding=\"0px|||||\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" custom_margin=\"||11px|||\" next_background_color=\"#000000\" global_module=\"74\"][et_pb_row global_parent=\"74\" custom_padding=\"0px||0px|||\" custom_margin=\"|auto|-66px|auto||\" _builder_version=\"3.26.3\"][et_pb_column type=\"4_4\" global_parent=\"74\" _builder_version=\"3.26.3\"][et_pb_image global_parent=\"74\" src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/header.jpg\" url=\"http://itcamefrombeyondpulp.com\" _builder_version=\"3.26.3\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.26.3\" width=\"1080px\" inner_module_alignment=\"center\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" module_alignment=\"center\" custom_padding=\"0px||0px||false|false\" prev_background_color=\"#000000\" next_background_color=\"#e02b20\" global_module=\"175\"][et_pb_fullwidth_menu global_parent=\"175\" menu_id=\"2\" submenu_direction=\"downwards\" fullwidth_menu=\"off\" dropdown_menu_text_color=\"#ffffff\" _builder_version=\"3.26.3\" menu_font=\"|800||on|||||\" menu_text_color=\"#ffffff\" menu_font_size=\"22px\" menu_letter_spacing=\"5px\" background_color=\"#e02b20\" border_width_bottom=\"5px\" text_orientation=\"center\" background_layout=\"dark\" custom_padding=\"1px||0px||false|false\" z_index_tablet=\"500\" menu_text_shadow_horizontal_length_tablet=\"0px\" menu_text_shadow_vertical_length_tablet=\"0px\" menu_text_shadow_blur_strength_tablet=\"1px\" border_width_bottom_tablet=\"5px\" border_width_bottom_phone=\"5px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" custom_margin=\"0px||||false|false\" /][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" background_color=\"#e02b20\" width=\"1080px\" module_alignment=\"center\" custom_padding=\"10px||0px|||\" prev_background_color=\"#ffffff\"][et_pb_row _builder_version=\"3.26.3\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" background_color=\"#ffffff\" custom_padding=\"10px|10px||10px|false|false\" border_width_bottom=\"5px\" border_color_bottom=\"#e02b20\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image _builder_version=\"3.26.3\" src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/bloodrayne.jpg\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\" /][et_pb_text _builder_version=\"3.26.3\" z_index_tablet=\"500\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" text_text_shadow_horizontal_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_vertical_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_blur_strength=\"text_text_shadow_style,%91object Object%93\" link_text_shadow_horizontal_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_vertical_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_blur_strength=\"link_text_shadow_style,%91object Object%93\" ul_text_shadow_horizontal_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_vertical_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_blur_strength=\"ul_text_shadow_style,%91object Object%93\" ol_text_shadow_horizontal_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_vertical_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_blur_strength=\"ol_text_shadow_style,%91object Object%93\" quote_text_shadow_horizontal_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_vertical_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_blur_strength=\"quote_text_shadow_style,%91object Object%93\" header_text_shadow_horizontal_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_vertical_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_blur_strength=\"header_text_shadow_style,%91object Object%93\" header_2_text_shadow_horizontal_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_vertical_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_blur_strength=\"header_2_text_shadow_style,%91object Object%93\" header_3_text_shadow_horizontal_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_vertical_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_blur_strength=\"header_3_text_shadow_style,%91object Object%93\" header_4_text_shadow_horizontal_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_vertical_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_blur_strength=\"header_4_text_shadow_style,%91object Object%93\" header_5_text_shadow_horizontal_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_vertical_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_blur_strength=\"header_5_text_shadow_style,%91object Object%93\" header_6_text_shadow_horizontal_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_vertical_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_blur_strength=\"header_6_text_shadow_style,%91object Object%93\"]\r\n\r\n<h3 style=\"text-align: center;\"><strong><em>BloodRayne 2: Deliverance</em> (Uwe Boll, 2007, 99 min.)</strong></h3><p>Instead of a simple angry rant about Uwe Boll\'s <b><i>BloodRayne 2: Deliverance</i></b>, which is about a half-vampire fighting against a vampiric Billy the Kid in the Wild West, I wrote poems: one sonnet (Shakespearean, not Italian), two limericks, a villanelle, and a sestina.</p><p><br /><b>Shall I Compare Thee to an Uwe Boll Film?</b></p><p>The vampire outlaw William Bonney wreaks<br />a trail of carnage spread across the West<br />(but of his Slavic accent we\'ll not speak).<br />But he\'s just <i>BloodRayne 2</i>\'s especial guest:<br />Natassia Malthe is the \"dhamphir\" Rayne;<br />be-sworded, bosomed, clad in leather cloak,<br />she\'s out for vengeance, dealing death and pain<br />to Bill the Kid and his undead cowpokes.<br />Director Uwe Boll is widely booed:<br />\"incompetent\"? Inadequately cruel.<br />Anachronism reigns! Ineptitude<br />of acting, scripting, lensing is the rule.<br />This film\'s a minor cinematic crime<br />entirely unworthy of my rhymes.</p><p><br /><b>The Lass from Oslo</b></p><p>There once was an actress named Malthe.<br />In <i>BloodRayne</i> her presence is paltry.<br />Her waist is quite slim<br />but her acting is grim<br />and quite limited her career shall be.</p><p>She\'s entirely too soft-spoken.<br />She pales next to Kristanna Lokken.<br />She\'s not half as pretty,<br />her accent is shitty,<br />and her ass-kicking skills appear broken.</p><p><br /><b>Do Not Go Gentle Into an Uwe Boll Film</b></p><p>My eyes! God damn that Uwe Boll to hell<br />for bringing forth another <i>BloodRayne</i> flick!<br />Such horrors from my mind I can\'t dispel!</p><p>I\'d rather choose to face armed personnel,<br />or Montresor to wall me up with bricks.<br />My eyes! God damn that Uwe Boll to hell!</p><p>Each line the actors speak is a death knell;<br />the overacting hams lay it on thick.<br />Such horrors from my mind I can\'t dispel.</p><p>Film art is absent, vision, skill as well;<br />technique\'s the very opposite of slick.<br />My eyes! God damn that Uwe Boll to hell!</p><p>I\'d vote to give this film a Prix Nobel<br />but there\'s no prize for cinematic ick.<br />Such horrors from my mind I can\'t dispel!</p><p>At nothing does the cast or crew excel.<br />Just watching left me feeling vaguely sick. <br />My eyes! God damn that Uwe Boll to hell!<br />Such horrors from my mind I can\'t dispel!</p><p><br /><b>There Are No Well-Known Sestina Titles to Infest with Uwe Boll</b></p><p>You\'ll say I\'m too hard on this movie<br />and perhaps you\'re right.<br />It\'s not, after all, trying to be great cinema;<br />it\'s just a straight-to-video sequel<br />that appeals to a certain collection<br />of people who will excuse its flaws.</p><p>But should they excuse those flaws?<br />Did they? It\'s in the bottom 100 movies<br />on the IMDB, an illustrious collection,<br />and while I\'m not sure its placement there is right,<br />it\'s certainly a pointless and unskilled sequel<br />to a film that was itself a blight on the cinema.</p><p>(I don\'t understand the subset of cinema<br />that\'s \"supposed to be bad\"; if the flaws<br />of this <i>BloodRayne</i> sequel<br />are intentional, why is the movie<br />not funny? Because comedy is the only right<br />venue for intentional gaffes; this collection</p><p>of gaffes is unfunny.) So is a growing collection<br />of <i>BloodRayne</i> films inevitable, then? Will the cinema,<br />or at least home video, support Uwe Boll\'s right<br />(backed up by his fists) to slather his directorial flaws<br />on the screen in another half-dressed half-vampire movie?<br />Can he find a distributor for another sequel?</p><p>What a stupid question. Another sequel<br />likely featuring Malthe and a collection<br />of has-beens will bore and annoy movie<br />audiences in 2009. I\'m sure the cinema<br />will survive; it\'s survived more disastrous flaws<br />than Uwe Boll can perpetrate. That\'s right:</p><p>Uwe Boll is harmless. People in their right<br />minds ignore him. Real damage comes from mindless sequels<br />bolstered by kadillion-dollar budgets and a flawed,<br />strictly commercial mindset. The collected<br />films of Brett Ratner, Michael Bay, et al. do more harm to the cinema<br />because studios hold up as triumphs their shitbag movies.</p><p>So let Uwe Boll make movies. Let him do a hundred <i>BloodRayne</i> sequels.<br />It\'s his right (plus he\'ll beat you up if you argue). Cinema\'s<br />real enemies perpetrate worse flaws. Michael Bay is in the Criterion Collection.</p>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','BloodRayne 2: Deliverance (2007)','','inherit','closed','closed','','274-revision-v1','','','2019-07-26 00:57:06','2019-07-26 00:57:06','',274,'http://itcamefrombeyondpulp.com/uncategorized/274-revision-v1/',0,'revision','',0),(278,1,'2019-07-26 00:58:48','2019-07-26 00:58:48','[et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" custom_padding=\"0px|||||\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" custom_margin=\"||11px|||\" next_background_color=\"#000000\" global_module=\"74\"][et_pb_row global_parent=\"74\" custom_padding=\"0px||0px|||\" custom_margin=\"|auto|-66px|auto||\" _builder_version=\"3.26.3\"][et_pb_column type=\"4_4\" global_parent=\"74\" _builder_version=\"3.26.3\"][et_pb_image global_parent=\"74\" src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/header.jpg\" url=\"http://itcamefrombeyondpulp.com\" _builder_version=\"3.26.3\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.26.3\" width=\"1080px\" inner_module_alignment=\"center\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" module_alignment=\"center\" custom_padding=\"0px||0px||false|false\" prev_background_color=\"#000000\" next_background_color=\"#e02b20\" global_module=\"175\"][et_pb_fullwidth_menu global_parent=\"175\" menu_id=\"2\" submenu_direction=\"downwards\" fullwidth_menu=\"off\" dropdown_menu_text_color=\"#ffffff\" _builder_version=\"3.26.3\" menu_font=\"|800||on|||||\" menu_text_color=\"#ffffff\" menu_font_size=\"22px\" menu_letter_spacing=\"5px\" background_color=\"#e02b20\" border_width_bottom=\"5px\" text_orientation=\"center\" background_layout=\"dark\" custom_padding=\"1px||0px||false|false\" z_index_tablet=\"500\" menu_text_shadow_horizontal_length_tablet=\"0px\" menu_text_shadow_vertical_length_tablet=\"0px\" menu_text_shadow_blur_strength_tablet=\"1px\" border_width_bottom_tablet=\"5px\" border_width_bottom_phone=\"5px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" custom_margin=\"0px||||false|false\" /][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" background_color=\"#e02b20\" width=\"1080px\" module_alignment=\"center\" custom_padding=\"10px||0px|||\" prev_background_color=\"#ffffff\"][et_pb_row custom_padding=\"10px|10px||\" _builder_version=\"3.26.3\" background_color=\"#ffffff\" border_width_bottom=\"5px\" border_color_bottom=\"#e02b20\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.26.3\" z_index_tablet=\"500\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" text_text_shadow_horizontal_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_vertical_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_blur_strength=\"text_text_shadow_style,%91object Object%93\" link_text_shadow_horizontal_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_vertical_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_blur_strength=\"link_text_shadow_style,%91object Object%93\" ul_text_shadow_horizontal_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_vertical_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_blur_strength=\"ul_text_shadow_style,%91object Object%93\" ol_text_shadow_horizontal_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_vertical_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_blur_strength=\"ol_text_shadow_style,%91object Object%93\" quote_text_shadow_horizontal_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_vertical_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_blur_strength=\"quote_text_shadow_style,%91object Object%93\" header_text_shadow_horizontal_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_vertical_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_blur_strength=\"header_text_shadow_style,%91object Object%93\" header_2_text_shadow_horizontal_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_vertical_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_blur_strength=\"header_2_text_shadow_style,%91object Object%93\" header_3_text_shadow_horizontal_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_vertical_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_blur_strength=\"header_3_text_shadow_style,%91object Object%93\" header_4_text_shadow_horizontal_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_vertical_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_blur_strength=\"header_4_text_shadow_style,%91object Object%93\" header_5_text_shadow_horizontal_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_vertical_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_blur_strength=\"header_5_text_shadow_style,%91object Object%93\" header_6_text_shadow_horizontal_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_vertical_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_blur_strength=\"header_6_text_shadow_style,%91object Object%93\"]\r\n\r\n<h1 style=\"text-align: center;\">Movies &amp; TV Reviews</h1>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.26.3\" background_color=\"#ffffff\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\"][et_pb_column type=\"1_3\" custom_padding__hover=\"|||\" custom_padding=\"|||\"][et_pb_text _builder_version=\"3.26.3\" text_text_shadow_horizontal_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\"]\r\n\r\n<h3 style=\"text-align: center;\">Sci-Fi</h3>\r\n<p style=\"text-align: center;\"><strong><a href=\"http://itcamefrombeyondpulp.com/movies/children-of-men-2006/\">Children of Men (2006)</a><br /></strong><strong><a href=\"http://itcamefrombeyondpulp.com/movies/cloverfield-2008/\">Cloverfield (2008)</a><br /><a href=\"http://itcamefrombeyondpulp.com/movies/the-dark-knight-2008/\">The Dark Knight (2008)</a><br /><a href=\"http://itcamefrombeyondpulp.com/movies/the-fountain-2006/\">The Fountain (2006)</a><br /><a href=\"http://itcamefrombeyondpulp.com/movies/hardware-1990/\">Hardware (1990)</a><br /><a href=\"http://itcamefrombeyondpulp.com/movies/harry-potter-and-the-chamber-of-secrets-2002/\">Harry Potter and the Chamber of Secrets (2002)</a><br /><a href=\"http://itcamefrombeyondpulp.com/movies/harry-potter-and-the-sorcerers-stone-2001/\">Harry Potter and the Sorcerer\'s Stone (2001)</a><br /><a href=\"http://itcamefrombeyondpulp.com/movies/maniac-1934/\">Maniac (1934)</a><br /><a href=\"http://itcamefrombeyondpulp.com/movies/the-phantom-planet-1961/\">The Phantom Planet (1961)</a><br /><a href=\"http://itcamefrombeyondpulp.com/movies/predator-1987/\">Predator (1987)</a><br /></strong><a href=\"http://itcamefrombeyondpulp.com/movies/serenity-2005/\"><strong>Serenity (2005)</strong></a><br /><a href=\"http://itcamefrombeyondpulp.com/movies/x-men-the-last-stand-2006/\"><strong>X-Men: The Last Stand (2006)</strong></a></p>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" custom_padding__hover=\"|||\" custom_padding=\"|||\"][et_pb_text _builder_version=\"3.26.3\" text_text_shadow_horizontal_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\"]\r\n\r\n<h3 style=\"text-align: center;\">Horror</h3><p style=\"text-align: center;\"><a href=\"http://itcamefrombeyondpulp.com/movies/bloodrayne-2-deliverance-2007/\"><strong>BloodRayne 2: Deliverance (2007)</strong></a><br /><a href=\"http://itcamefrombeyondpulp.com/movies/masters-of-horror-the-black-cat-2007/\"><strong>Masters of Horror: The Black Cat (2007)</strong></a></p>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" custom_padding__hover=\"|||\" custom_padding=\"|||\"][et_pb_text _builder_version=\"3.26.3\" text_text_shadow_horizontal_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\"]\r\n\r\n<h3 style=\"text-align: center;\">Whatnot</h3>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Movies','','inherit','closed','closed','','45-revision-v1','','','2019-07-26 00:58:48','2019-07-26 00:58:48','',45,'http://itcamefrombeyondpulp.com/uncategorized/45-revision-v1/',0,'revision','',0),(279,1,'2019-07-26 00:59:58','2019-07-26 00:59:58','[et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" custom_padding=\"0px|||||\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" custom_margin=\"||11px|||\" next_background_color=\"#000000\" global_module=\"74\"][et_pb_row global_parent=\"74\" custom_padding=\"0px||0px|||\" custom_margin=\"|auto|-66px|auto||\" _builder_version=\"3.26.3\"][et_pb_column type=\"4_4\" global_parent=\"74\" _builder_version=\"3.26.3\"][et_pb_image global_parent=\"74\" src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/header.jpg\" url=\"http://itcamefrombeyondpulp.com\" _builder_version=\"3.26.3\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.26.3\" width=\"1080px\" inner_module_alignment=\"center\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" module_alignment=\"center\" custom_padding=\"0px||0px||false|false\" prev_background_color=\"#000000\" next_background_color=\"#e02b20\" global_module=\"175\"][et_pb_fullwidth_menu global_parent=\"175\" menu_id=\"2\" submenu_direction=\"downwards\" fullwidth_menu=\"off\" dropdown_menu_text_color=\"#ffffff\" _builder_version=\"3.26.3\" menu_font=\"|800||on|||||\" menu_text_color=\"#ffffff\" menu_font_size=\"22px\" menu_letter_spacing=\"5px\" background_color=\"#e02b20\" border_width_bottom=\"5px\" text_orientation=\"center\" background_layout=\"dark\" custom_padding=\"1px||0px||false|false\" z_index_tablet=\"500\" menu_text_shadow_horizontal_length_tablet=\"0px\" menu_text_shadow_vertical_length_tablet=\"0px\" menu_text_shadow_blur_strength_tablet=\"1px\" border_width_bottom_tablet=\"5px\" border_width_bottom_phone=\"5px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" custom_margin=\"0px||||false|false\" /][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" background_color=\"#e02b20\" width=\"1080px\" module_alignment=\"center\" custom_padding=\"10px||0px|||\" prev_background_color=\"#ffffff\"][et_pb_row _builder_version=\"3.26.3\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" background_color=\"#ffffff\" custom_padding=\"10px|10px||10px|false|false\" border_width_bottom=\"5px\" border_color_bottom=\"#e02b20\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image _builder_version=\"3.26.3\" src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/bloodrayne.jpg\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\" /][et_pb_text _builder_version=\"3.26.3\" z_index_tablet=\"500\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" text_text_shadow_horizontal_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_vertical_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_blur_strength=\"text_text_shadow_style,%91object Object%93\" link_text_shadow_horizontal_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_vertical_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_blur_strength=\"link_text_shadow_style,%91object Object%93\" ul_text_shadow_horizontal_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_vertical_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_blur_strength=\"ul_text_shadow_style,%91object Object%93\" ol_text_shadow_horizontal_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_vertical_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_blur_strength=\"ol_text_shadow_style,%91object Object%93\" quote_text_shadow_horizontal_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_vertical_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_blur_strength=\"quote_text_shadow_style,%91object Object%93\" header_text_shadow_horizontal_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_vertical_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_blur_strength=\"header_text_shadow_style,%91object Object%93\" header_2_text_shadow_horizontal_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_vertical_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_blur_strength=\"header_2_text_shadow_style,%91object Object%93\" header_3_text_shadow_horizontal_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_vertical_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_blur_strength=\"header_3_text_shadow_style,%91object Object%93\" header_4_text_shadow_horizontal_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_vertical_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_blur_strength=\"header_4_text_shadow_style,%91object Object%93\" header_5_text_shadow_horizontal_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_vertical_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_blur_strength=\"header_5_text_shadow_style,%91object Object%93\" header_6_text_shadow_horizontal_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_vertical_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_blur_strength=\"header_6_text_shadow_style,%91object Object%93\"]\n\n<h3 style=\"text-align: center;\"><strong><em>BloodRayne 2: Deliverance</em> (Uwe Boll, 2007, 99 min.)</strong></h3>\n<p>Instead of a simple angry rant about Uwe Boll\'s <b><i>BloodRayne 2: Deliverance</i></b>, which is about a half-vampire fighting against a vampiric Billy the Kid in the Wild West, I wrote poems: one sonnet (Shakespearean, not Italian), two limericks, a villanelle, and a sestina.</p>\n<p><b>Shall I Compare Thee to an Uwe Boll Film?</b></p>\n<p>The vampire outlaw William Bonney wreaks<br />a trail of carnage spread across the West<br />(but of his Slavic accent we\'ll not speak).<br />But he\'s just <i>BloodRayne 2</i>\'s especial guest:<br />Natassia Malthe is the \"dhamphir\" Rayne;<br />be-sworded, bosomed, clad in leather cloak,<br />she\'s out for vengeance, dealing death and pain<br />to Bill the Kid and his undead cowpokes.<br />Director Uwe Boll is widely booed:<br />\"incompetent\"? Inadequately cruel.<br />Anachronism reigns! Ineptitude<br />of acting, scripting, lensing is the rule.<br />This film\'s a minor cinematic crime<br />entirely unworthy of my rhymes.</p>\n<p><b>The Lass from Oslo</b></p>\n<p>There once was an actress named Malthe.<br />In <i>BloodRayne</i> her presence is paltry.<br />Her waist is quite slim<br />but her acting is grim<br />and quite limited her career shall be.</p>\n<p>She\'s entirely too soft-spoken.<br />She pales next to Kristanna Lokken.<br />She\'s not half as pretty,<br />her accent is shitty,<br />and her ass-kicking skills appear broken.</p>\n<p><b>Do Not Go Gentle Into an Uwe Boll Film</b></p>\n<p>My eyes! God damn that Uwe Boll to hell<br />for bringing forth another <i>BloodRayne</i> flick!<br />Such horrors from my mind I can\'t dispel!</p>\n<p>I\'d rather choose to face armed personnel,<br />or Montresor to wall me up with bricks.<br />My eyes! God damn that Uwe Boll to hell!</p>\n<p>Each line the actors speak is a death knell;<br />the overacting hams lay it on thick.<br />Such horrors from my mind I can\'t dispel.</p>\n<p>Film art is absent, vision, skill as well;<br />technique\'s the very opposite of slick.<br />My eyes! God damn that Uwe Boll to hell!</p>\n<p>I\'d vote to give this film a Prix Nobel<br />but there\'s no prize for cinematic ick.<br />Such horrors from my mind I can\'t dispel!</p>\n<p>At nothing does the cast or crew excel.<br />Just watching left me feeling vaguely sick. <br />My eyes! God damn that Uwe Boll to hell!<br />Such horrors from my mind I can\'t dispel!</p>\n<p><b>There Are No Well-Known Sestina Titles to Infest with Uwe Boll</b></p>\n<p>You\'ll say I\'m too hard on this movie<br />and perhaps you\'re right.<br />It\'s not, after all, trying to be great cinema;<br />it\'s just a straight-to-video sequel<br />that appeals to a certain collection<br />of people who will excuse its flaws.</p>\n<p>But should they excuse those flaws?<br />Did they? It\'s in the bottom 100 movies<br />on the IMDB, an illustrious collection,<br />and while I\'m not sure its placement there is right,<br />it\'s certainly a pointless and unskilled sequel<br />to a film that was itself a blight on the cinema.</p>\n<p>(I don\'t understand the subset of cinema<br />that\'s \"supposed to be bad\"; if the flaws<br />of this <i>BloodRayne</i> sequel<br />are intentional, why is the movie<br />not funny? Because comedy is the only right<br />venue for intentional gaffes; this collection</p>\n<p>of gaffes is unfunny.) So is a growing collection<br />of <i>BloodRayne</i> films inevitable, then? Will the cinema,<br />or at least home video, support Uwe Boll\'s right<br />(backed up by his fists) to slather his directorial flaws<br />on the screen in another half-dressed half-vampire movie?<br />Can he find a distributor for another sequel?</p>\n<p>What a stupid question. Another sequel<br />likely featuring Malthe and a collection<br />of has-beens will bore and annoy movie<br />audiences in 2009. I\'m sure the cinema<br />will survive; it\'s survived more disastrous flaws<br />than Uwe Boll can perpetrate. That\'s right:</p>\n<p>Uwe Boll is harmless. People in their right<br />minds ignore him. Real damage comes from mindless sequels<br />bolstered by kadillion-dollar budgets and a flawed,<br />strictly commercial mindset. The collected<br />films of Brett Ratner, Michael Bay, et al. do more harm to the cinema<br />because studios hold up as triumphs their shitbag movies.</p>\n<p>So let Uwe Boll make movies. Let him do a hundred <i>BloodRayne</i> sequels.<br />It\'s his right (plus he\'ll beat you up if you argue). Cinema\'s<br />real enemies perpetrate worse flaws. Michael Bay is in the Criterion Collection.</p>\n\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','BloodRayne 2: Deliverance (2007)','','inherit','closed','closed','','274-autosave-v1','','','2019-07-26 00:59:58','2019-07-26 00:59:58','',274,'http://itcamefrombeyondpulp.com/uncategorized/274-autosave-v1/',0,'revision','',0);
INSERT INTO `wp6h_posts` VALUES (280,1,'2019-07-26 01:06:53','2019-07-26 01:06:53','[et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" custom_padding=\"0px|||||\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" custom_margin=\"||11px|||\" next_background_color=\"#000000\" global_module=\"74\"][et_pb_row global_parent=\"74\" custom_padding=\"0px||0px|||\" custom_margin=\"|auto|-66px|auto||\" _builder_version=\"3.26.3\"][et_pb_column type=\"4_4\" global_parent=\"74\" _builder_version=\"3.26.3\"][et_pb_image global_parent=\"74\" src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/header.jpg\" url=\"http://itcamefrombeyondpulp.com\" _builder_version=\"3.26.3\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.26.3\" width=\"1080px\" inner_module_alignment=\"center\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" module_alignment=\"center\" custom_padding=\"0px||0px||false|false\" prev_background_color=\"#000000\" next_background_color=\"#e02b20\" global_module=\"175\"][et_pb_fullwidth_menu global_parent=\"175\" menu_id=\"2\" submenu_direction=\"downwards\" fullwidth_menu=\"off\" dropdown_menu_text_color=\"#ffffff\" _builder_version=\"3.26.3\" menu_font=\"|800||on|||||\" menu_text_color=\"#ffffff\" menu_font_size=\"22px\" menu_letter_spacing=\"5px\" background_color=\"#e02b20\" border_width_bottom=\"5px\" text_orientation=\"center\" background_layout=\"dark\" custom_padding=\"1px||0px||false|false\" z_index_tablet=\"500\" menu_text_shadow_horizontal_length_tablet=\"0px\" menu_text_shadow_vertical_length_tablet=\"0px\" menu_text_shadow_blur_strength_tablet=\"1px\" border_width_bottom_tablet=\"5px\" border_width_bottom_phone=\"5px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" custom_margin=\"0px||||false|false\" /][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" background_color=\"#e02b20\" width=\"1080px\" module_alignment=\"center\" custom_padding=\"10px||0px|||\" prev_background_color=\"#ffffff\"][et_pb_row _builder_version=\"3.26.3\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" background_color=\"#ffffff\" custom_padding=\"10px|10px||10px|false|false\" border_width_bottom=\"5px\" border_color_bottom=\"#e02b20\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image _builder_version=\"3.26.3\" src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/canary.jpg\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\" /][et_pb_text _builder_version=\"3.26.3\" z_index_tablet=\"500\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" text_text_shadow_horizontal_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_vertical_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_blur_strength=\"text_text_shadow_style,%91object Object%93\" link_text_shadow_horizontal_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_vertical_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_blur_strength=\"link_text_shadow_style,%91object Object%93\" ul_text_shadow_horizontal_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_vertical_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_blur_strength=\"ul_text_shadow_style,%91object Object%93\" ol_text_shadow_horizontal_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_vertical_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_blur_strength=\"ol_text_shadow_style,%91object Object%93\" quote_text_shadow_horizontal_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_vertical_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_blur_strength=\"quote_text_shadow_style,%91object Object%93\" header_text_shadow_horizontal_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_vertical_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_blur_strength=\"header_text_shadow_style,%91object Object%93\" header_2_text_shadow_horizontal_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_vertical_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_blur_strength=\"header_2_text_shadow_style,%91object Object%93\" header_3_text_shadow_horizontal_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_vertical_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_blur_strength=\"header_3_text_shadow_style,%91object Object%93\" header_4_text_shadow_horizontal_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_vertical_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_blur_strength=\"header_4_text_shadow_style,%91object Object%93\" header_5_text_shadow_horizontal_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_vertical_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_blur_strength=\"header_5_text_shadow_style,%91object Object%93\" header_6_text_shadow_horizontal_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_vertical_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_blur_strength=\"header_6_text_shadow_style,%91object Object%93\"]\r\n\r\n<h3 style=\"text-align: center;\"><strong><em>The Cat and the Canary</em> (Paul Leni, 1927, 82 min.)</strong></h3><p>John Willard\'s play <i>The Cat and the Canary</i> opened on Broadway in 1922 and ran for 148 performances; it was part of a mini-trend of \"old dark house\" melodramas in which unsuspecting innocents (and not-so-innocents) gather in a spooky old mansion replete with monsters and ghosts that turn out in the end to have been human beings in devious disguises. As might be obvious, these plays and their popular film descendents inspired the cartoon <i>Scooby-Doo</i>, whose semi-ridiculous trapdoors, hidden passages, and criminals in elaborate masks don\'t seem so ridiculous after seeing the very same things in this film, one of the most popular \"horror\" films of the silent period.</p><p>If one can call it horror. There are certainly some chilling images in Paul Leni\'s 1927 screen adaptation of the hit play, and I\'m guessing that to a contemporary audience, some of them might have been quite shocking. But even granting the film\'s deliberate efforts to frighten, there\'s more of an effort to reassure the viewer that this is just a silly diversion, that you can scream if you want to—it makes the proceedings more enjoyable—but everything will turn out all right in the end. For starters, nearly a third of the credited cast are there as comic relief, and an inordinate amount of screen time is devoted to their exaggerated reactions to real and imagined shocks. So it\'s not exactly a horror film, at least by any strict definition. But it is a great deal of fun.</p><p>Twenty years ago, Cyrus West, driven insane by his scheming relatives\' obsession with his considerable fortune, wrote a will that was not to be opened until tonight at midnight. His surviving relatives have gathered at his spooky old mansion for the reading. Among them are the milquetoast Paul Jones (Creighton Hale), the brooding Harry (Arthur Edmund Carewe), the handsome Charlie (Forrest Stanley), the highstrung Aunt Sillsby (Flora Finch) and her pretty neice Cecily (Gertrude Astor), and Cyrus\'s beautiful neice Annabelle, played by silent star Laura La Plante. When lawyer Roger Crosby (Tully Marshall) reads the will, it turns out that Annabelle will inherit the riches, but only if she\'s deemed sane by a psychiatrist; if she\'s insane, the person whose name appears in another envelope gets the dough. This sets off a chain of surprising disappearances, shocking appearances, gnarled clawlike hands emerging from hidden compartments in the walls, and related shenanigans as circumstances, an escaped lunatic, and perhaps a relative or two conspire to render Annabelle insane before dawn.</p><p>Leni, already a gifted director and set designer before he came to the United States in 1927, and cinematographer Gilbert Warrenton (whose few triumphs in a career of undistinguished films convince me that his directors did the bulk of the shot setups) use a fluidly moving camera and elaborate, expressionist sets and lighting to achieve some of the most memorable shots in silent film, from the extraordinary opening multiple exposures of Cyrus West trapped in medicine bottles and menaced by cats, to the amazing tracking shots down the curtain-lined main hallway, to the dramatic zooms and pans that accompany the film\'s shocks. These visual creations are ingeniously coupled with a wide palette of tinting to provoke gasps and laughter in equal measure. And unlike many silent films, which relied too much on redundant intertitles, Leni and company not only eschew all but the most important titles, but they often do more than simply provide words on a screen: these titles dance, wiggle, and melt off the screen, happy to be put to more use than simply imparting information.</p><p>In fact, the film is so atmospheric and lively that it makes me doubly sad that its director, Paul Leni, made so few films—including <em>The Man Who Laughs</em> and <em>The Last Warning</em>—before he died in 1929 at the age of 45. Could his career have survived the talkie transition? It\'s tantalizing to wonder whether his version of <em>Dracula</em>, planned but never completed because of his untimely death and the return of his chosen star, Conrad Veidt, to Germany, would have been better than Tod Browning\'s stodgy, unimaginative potboiler, but after viewing this film, the answer is manifestly apparent—of course it would have been better.</p>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','The Cat and the Canary (1927)','','publish','closed','closed','','the-cat-and-the-canary-1927','','','2019-07-26 01:06:53','2019-07-26 01:06:53','',0,'http://itcamefrombeyondpulp.com/?p=280',0,'post','',0),(281,1,'2019-07-26 01:06:34','2019-07-26 01:06:34','','canary','','inherit','closed','closed','','canary','','','2019-07-26 01:06:34','2019-07-26 01:06:34','',280,'http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/canary.jpg',0,'attachment','image/jpeg',0),(282,1,'2019-07-26 01:06:53','2019-07-26 01:06:53','[et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" custom_padding=\"0px|||||\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" custom_margin=\"||11px|||\" next_background_color=\"#000000\" global_module=\"74\"][et_pb_row global_parent=\"74\" custom_padding=\"0px||0px|||\" custom_margin=\"|auto|-66px|auto||\" _builder_version=\"3.26.3\"][et_pb_column type=\"4_4\" global_parent=\"74\" _builder_version=\"3.26.3\"][et_pb_image global_parent=\"74\" src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/header.jpg\" url=\"http://itcamefrombeyondpulp.com\" _builder_version=\"3.26.3\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.26.3\" width=\"1080px\" inner_module_alignment=\"center\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" module_alignment=\"center\" custom_padding=\"0px||0px||false|false\" prev_background_color=\"#000000\" next_background_color=\"#e02b20\" global_module=\"175\"][et_pb_fullwidth_menu global_parent=\"175\" menu_id=\"2\" submenu_direction=\"downwards\" fullwidth_menu=\"off\" dropdown_menu_text_color=\"#ffffff\" _builder_version=\"3.26.3\" menu_font=\"|800||on|||||\" menu_text_color=\"#ffffff\" menu_font_size=\"22px\" menu_letter_spacing=\"5px\" background_color=\"#e02b20\" border_width_bottom=\"5px\" text_orientation=\"center\" background_layout=\"dark\" custom_padding=\"1px||0px||false|false\" z_index_tablet=\"500\" menu_text_shadow_horizontal_length_tablet=\"0px\" menu_text_shadow_vertical_length_tablet=\"0px\" menu_text_shadow_blur_strength_tablet=\"1px\" border_width_bottom_tablet=\"5px\" border_width_bottom_phone=\"5px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" custom_margin=\"0px||||false|false\" /][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" background_color=\"#e02b20\" width=\"1080px\" module_alignment=\"center\" custom_padding=\"10px||0px|||\" prev_background_color=\"#ffffff\"][et_pb_row _builder_version=\"3.26.3\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" background_color=\"#ffffff\" custom_padding=\"10px|10px||10px|false|false\" border_width_bottom=\"5px\" border_color_bottom=\"#e02b20\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image _builder_version=\"3.26.3\" src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/canary.jpg\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\" /][et_pb_text _builder_version=\"3.26.3\" z_index_tablet=\"500\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" text_text_shadow_horizontal_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_vertical_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_blur_strength=\"text_text_shadow_style,%91object Object%93\" link_text_shadow_horizontal_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_vertical_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_blur_strength=\"link_text_shadow_style,%91object Object%93\" ul_text_shadow_horizontal_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_vertical_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_blur_strength=\"ul_text_shadow_style,%91object Object%93\" ol_text_shadow_horizontal_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_vertical_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_blur_strength=\"ol_text_shadow_style,%91object Object%93\" quote_text_shadow_horizontal_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_vertical_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_blur_strength=\"quote_text_shadow_style,%91object Object%93\" header_text_shadow_horizontal_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_vertical_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_blur_strength=\"header_text_shadow_style,%91object Object%93\" header_2_text_shadow_horizontal_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_vertical_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_blur_strength=\"header_2_text_shadow_style,%91object Object%93\" header_3_text_shadow_horizontal_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_vertical_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_blur_strength=\"header_3_text_shadow_style,%91object Object%93\" header_4_text_shadow_horizontal_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_vertical_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_blur_strength=\"header_4_text_shadow_style,%91object Object%93\" header_5_text_shadow_horizontal_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_vertical_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_blur_strength=\"header_5_text_shadow_style,%91object Object%93\" header_6_text_shadow_horizontal_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_vertical_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_blur_strength=\"header_6_text_shadow_style,%91object Object%93\"]\r\n\r\n<h3 style=\"text-align: center;\"><strong><em>The Cat and the Canary</em> (Paul Leni, 1927, 82 min.)</strong></h3><p>John Willard\'s play <i>The Cat and the Canary</i> opened on Broadway in 1922 and ran for 148 performances; it was part of a mini-trend of \"old dark house\" melodramas in which unsuspecting innocents (and not-so-innocents) gather in a spooky old mansion replete with monsters and ghosts that turn out in the end to have been human beings in devious disguises. As might be obvious, these plays and their popular film descendents inspired the cartoon <i>Scooby-Doo</i>, whose semi-ridiculous trapdoors, hidden passages, and criminals in elaborate masks don\'t seem so ridiculous after seeing the very same things in this film, one of the most popular \"horror\" films of the silent period.</p><p>If one can call it horror. There are certainly some chilling images in Paul Leni\'s 1927 screen adaptation of the hit play, and I\'m guessing that to a contemporary audience, some of them might have been quite shocking. But even granting the film\'s deliberate efforts to frighten, there\'s more of an effort to reassure the viewer that this is just a silly diversion, that you can scream if you want to—it makes the proceedings more enjoyable—but everything will turn out all right in the end. For starters, nearly a third of the credited cast are there as comic relief, and an inordinate amount of screen time is devoted to their exaggerated reactions to real and imagined shocks. So it\'s not exactly a horror film, at least by any strict definition. But it is a great deal of fun.</p><p>Twenty years ago, Cyrus West, driven insane by his scheming relatives\' obsession with his considerable fortune, wrote a will that was not to be opened until tonight at midnight. His surviving relatives have gathered at his spooky old mansion for the reading. Among them are the milquetoast Paul Jones (Creighton Hale), the brooding Harry (Arthur Edmund Carewe), the handsome Charlie (Forrest Stanley), the highstrung Aunt Sillsby (Flora Finch) and her pretty neice Cecily (Gertrude Astor), and Cyrus\'s beautiful neice Annabelle, played by silent star Laura La Plante. When lawyer Roger Crosby (Tully Marshall) reads the will, it turns out that Annabelle will inherit the riches, but only if she\'s deemed sane by a psychiatrist; if she\'s insane, the person whose name appears in another envelope gets the dough. This sets off a chain of surprising disappearances, shocking appearances, gnarled clawlike hands emerging from hidden compartments in the walls, and related shenanigans as circumstances, an escaped lunatic, and perhaps a relative or two conspire to render Annabelle insane before dawn.</p><p>Leni, already a gifted director and set designer before he came to the United States in 1927, and cinematographer Gilbert Warrenton (whose few triumphs in a career of undistinguished films convince me that his directors did the bulk of the shot setups) use a fluidly moving camera and elaborate, expressionist sets and lighting to achieve some of the most memorable shots in silent film, from the extraordinary opening multiple exposures of Cyrus West trapped in medicine bottles and menaced by cats, to the amazing tracking shots down the curtain-lined main hallway, to the dramatic zooms and pans that accompany the film\'s shocks. These visual creations are ingeniously coupled with a wide palette of tinting to provoke gasps and laughter in equal measure. And unlike many silent films, which relied too much on redundant intertitles, Leni and company not only eschew all but the most important titles, but they often do more than simply provide words on a screen: these titles dance, wiggle, and melt off the screen, happy to be put to more use than simply imparting information.</p><p>In fact, the film is so atmospheric and lively that it makes me doubly sad that its director, Paul Leni, made so few films—including <em>The Man Who Laughs</em> and <em>The Last Warning</em>—before he died in 1929 at the age of 45. Could his career have survived the talkie transition? It\'s tantalizing to wonder whether his version of <em>Dracula</em>, planned but never completed because of his untimely death and the return of his chosen star, Conrad Veidt, to Germany, would have been better than Tod Browning\'s stodgy, unimaginative potboiler, but after viewing this film, the answer is manifestly apparent—of course it would have been better.</p>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','The Cat and the Canary (1927)','','inherit','closed','closed','','280-revision-v1','','','2019-07-26 01:06:53','2019-07-26 01:06:53','',280,'http://itcamefrombeyondpulp.com/uncategorized/280-revision-v1/',0,'revision','',0),(283,1,'2019-07-26 01:09:16','2019-07-26 01:09:16','[et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" custom_padding=\"0px|||||\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" custom_margin=\"||11px|||\" next_background_color=\"#000000\" global_module=\"74\"][et_pb_row global_parent=\"74\" custom_padding=\"0px||0px|||\" custom_margin=\"|auto|-66px|auto||\" _builder_version=\"3.26.3\"][et_pb_column type=\"4_4\" global_parent=\"74\" _builder_version=\"3.26.3\"][et_pb_image global_parent=\"74\" src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/header.jpg\" url=\"http://itcamefrombeyondpulp.com\" _builder_version=\"3.26.3\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.26.3\" width=\"1080px\" inner_module_alignment=\"center\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" module_alignment=\"center\" custom_padding=\"0px||0px||false|false\" prev_background_color=\"#000000\" next_background_color=\"#e02b20\" global_module=\"175\"][et_pb_fullwidth_menu global_parent=\"175\" menu_id=\"2\" submenu_direction=\"downwards\" fullwidth_menu=\"off\" dropdown_menu_text_color=\"#ffffff\" _builder_version=\"3.26.3\" menu_font=\"|800||on|||||\" menu_text_color=\"#ffffff\" menu_font_size=\"22px\" menu_letter_spacing=\"5px\" background_color=\"#e02b20\" border_width_bottom=\"5px\" text_orientation=\"center\" background_layout=\"dark\" custom_padding=\"1px||0px||false|false\" z_index_tablet=\"500\" menu_text_shadow_horizontal_length_tablet=\"0px\" menu_text_shadow_vertical_length_tablet=\"0px\" menu_text_shadow_blur_strength_tablet=\"1px\" border_width_bottom_tablet=\"5px\" border_width_bottom_phone=\"5px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" custom_margin=\"0px||||false|false\" /][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" background_color=\"#e02b20\" width=\"1080px\" module_alignment=\"center\" custom_padding=\"10px||0px|||\" prev_background_color=\"#ffffff\"][et_pb_row _builder_version=\"3.26.3\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" background_color=\"#ffffff\" custom_padding=\"10px|10px||10px|false|false\" border_width_bottom=\"5px\" border_color_bottom=\"#e02b20\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image _builder_version=\"3.26.3\" src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/canary.jpg\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\" /][et_pb_text _builder_version=\"3.26.3\" z_index_tablet=\"500\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" text_text_shadow_horizontal_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_vertical_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_blur_strength=\"text_text_shadow_style,%91object Object%93\" link_text_shadow_horizontal_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_vertical_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_blur_strength=\"link_text_shadow_style,%91object Object%93\" ul_text_shadow_horizontal_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_vertical_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_blur_strength=\"ul_text_shadow_style,%91object Object%93\" ol_text_shadow_horizontal_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_vertical_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_blur_strength=\"ol_text_shadow_style,%91object Object%93\" quote_text_shadow_horizontal_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_vertical_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_blur_strength=\"quote_text_shadow_style,%91object Object%93\" header_text_shadow_horizontal_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_vertical_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_blur_strength=\"header_text_shadow_style,%91object Object%93\" header_2_text_shadow_horizontal_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_vertical_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_blur_strength=\"header_2_text_shadow_style,%91object Object%93\" header_3_text_shadow_horizontal_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_vertical_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_blur_strength=\"header_3_text_shadow_style,%91object Object%93\" header_4_text_shadow_horizontal_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_vertical_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_blur_strength=\"header_4_text_shadow_style,%91object Object%93\" header_5_text_shadow_horizontal_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_vertical_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_blur_strength=\"header_5_text_shadow_style,%91object Object%93\" header_6_text_shadow_horizontal_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_vertical_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_blur_strength=\"header_6_text_shadow_style,%91object Object%93\"]\n\n<h3 style=\"text-align: center;\"><strong><em>The Cat and the Canary</em> (Paul Leni, 1927, 82 min.)</strong></h3>\n<p>John Willard\'s play <i>The Cat and the Canary</i> opened on Broadway in 1922 and ran for 148 performances; it was part of a mini-trend of \"old dark house\" melodramas in which unsuspecting innocents (and not-so-innocents) gather in a spooky old mansion replete with monsters and ghosts that turn out in the end to have been human beings in devious disguises. As might be obvious, these plays and their popular film descendents inspired the cartoon <i>Scooby-Doo</i>, whose semi-ridiculous trapdoors, hidden passages, and criminals in elaborate masks don\'t seem so ridiculous after seeing the very same things in this film, one of the most popular \"horror\" films of the silent period.</p>\n<p>If one can call it horror. There are certainly some chilling images in Paul Leni\'s 1927 screen adaptation of the hit play, and I\'m guessing that to a contemporary audience, some of them might have been quite shocking. But even granting the film\'s deliberate efforts to frighten, there\'s more of an effort to reassure the viewer that this is just a silly diversion, that you can scream if you want to—it makes the proceedings more enjoyable—but everything will turn out all right in the end. For starters, nearly a third of the credited cast are there as comic relief, and an inordinate amount of screen time is devoted to their exaggerated reactions to real and imagined shocks. So it\'s not exactly a horror film, at least by any strict definition. But it is a great deal of fun.</p>\n<p>Twenty years ago, Cyrus West, driven insane by his scheming relatives\' obsession with his considerable fortune, wrote a will that was not to be opened until tonight at midnight. His surviving relatives have gathered at his spooky old mansion for the reading. Among them are the milquetoast Paul Jones (Creighton Hale), the brooding Harry (Arthur Edmund Carewe), the handsome Charlie (Forrest Stanley), the highstrung Aunt Sillsby (Flora Finch) and her pretty neice Cecily (Gertrude Astor), and Cyrus\'s beautiful neice Annabelle, played by silent star Laura La Plante. When lawyer Roger Crosby (Tully Marshall) reads the will, it turns out that Annabelle will inherit the riches, but only if she\'s deemed sane by a psychiatrist; if she\'s insane, the person whose name appears in another envelope gets the dough. This sets off a chain of surprising disappearances, shocking appearances, gnarled clawlike hands emerging from hidden compartments in the walls, and related shenanigans as circumstances, an escaped lunatic, and perhaps a relative or two conspire to render Annabelle insane before dawn.</p>\n<p>Leni, already a gifted director and set designer before he came to the United States in 1927, and cinematographer Gilbert Warrenton (whose few triumphs in a career of undistinguished films convince me that his directors did the bulk of the shot setups) use a fluidly moving camera and elaborate, expressionist sets and lighting to achieve some of the most memorable shots in silent film, from the extraordinary opening multiple exposures of Cyrus West trapped in medicine bottles and menaced by cats, to the amazing tracking shots down the curtain-lined main hallway, to the dramatic zooms and pans that accompany the film\'s shocks. These visual creations are ingeniously coupled with a wide palette of tinting to provoke gasps and laughter in equal measure. And unlike many silent films, which relied too much on redundant intertitles, Leni and company not only eschew all but the most important titles, but they often do more than simply provide words on a screen: these titles dance, wiggle, and melt off the screen, happy to be put to more use than simply imparting information.</p>\n<p>In fact, the film is so atmospheric and lively that it makes me doubly sad that its director, Paul Leni, made so few films—including <em>The Man Who Laughs</em> and <em>The Last Warning</em>—before he died in 1929 at the age of 45. Could his career have survived the talkie transition? It\'s tantalizing to wonder whether his version of <em>Dracula</em>, planned but never completed because of his untimely death and the return of his chosen star, Conrad Veidt, to Germany, would have been better than Tod Browning\'s stodgy, unimaginative potboiler, but after viewing this film, the answer is manifestly apparent—of course it would have been better.</p>\n\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','The Cat and the Canary (1927)','','inherit','closed','closed','','280-autosave-v1','','','2019-07-26 01:09:16','2019-07-26 01:09:16','',280,'http://itcamefrombeyondpulp.com/uncategorized/280-autosave-v1/',0,'revision','',0),(284,1,'2019-07-26 01:13:06','2019-07-26 01:13:06','[et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" custom_padding=\"0px|||||\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" custom_margin=\"||11px|||\" next_background_color=\"#000000\" global_module=\"74\"][et_pb_row global_parent=\"74\" custom_padding=\"0px||0px|||\" custom_margin=\"|auto|-66px|auto||\" _builder_version=\"3.26.3\"][et_pb_column type=\"4_4\" global_parent=\"74\" _builder_version=\"3.26.3\"][et_pb_image global_parent=\"74\" src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/header.jpg\" url=\"http://itcamefrombeyondpulp.com\" _builder_version=\"3.26.3\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.26.3\" width=\"1080px\" inner_module_alignment=\"center\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" module_alignment=\"center\" custom_padding=\"0px||0px||false|false\" prev_background_color=\"#000000\" next_background_color=\"#e02b20\" global_module=\"175\"][et_pb_fullwidth_menu global_parent=\"175\" menu_id=\"2\" submenu_direction=\"downwards\" fullwidth_menu=\"off\" dropdown_menu_text_color=\"#ffffff\" _builder_version=\"3.26.3\" menu_font=\"|800||on|||||\" menu_text_color=\"#ffffff\" menu_font_size=\"22px\" menu_letter_spacing=\"5px\" background_color=\"#e02b20\" border_width_bottom=\"5px\" text_orientation=\"center\" background_layout=\"dark\" custom_padding=\"1px||0px||false|false\" z_index_tablet=\"500\" menu_text_shadow_horizontal_length_tablet=\"0px\" menu_text_shadow_vertical_length_tablet=\"0px\" menu_text_shadow_blur_strength_tablet=\"1px\" border_width_bottom_tablet=\"5px\" border_width_bottom_phone=\"5px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" custom_margin=\"0px||||false|false\" /][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" background_color=\"#e02b20\" width=\"1080px\" module_alignment=\"center\" custom_padding=\"10px||0px|||\" prev_background_color=\"#ffffff\"][et_pb_row _builder_version=\"3.26.3\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" background_color=\"#ffffff\" custom_padding=\"10px|10px||10px|false|false\" border_width_bottom=\"5px\" border_color_bottom=\"#e02b20\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image _builder_version=\"3.26.3\" src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/children.jpg\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\" /][et_pb_text _builder_version=\"3.26.3\" z_index_tablet=\"500\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" text_text_shadow_horizontal_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_vertical_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_blur_strength=\"text_text_shadow_style,%91object Object%93\" link_text_shadow_horizontal_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_vertical_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_blur_strength=\"link_text_shadow_style,%91object Object%93\" ul_text_shadow_horizontal_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_vertical_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_blur_strength=\"ul_text_shadow_style,%91object Object%93\" ol_text_shadow_horizontal_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_vertical_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_blur_strength=\"ol_text_shadow_style,%91object Object%93\" quote_text_shadow_horizontal_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_vertical_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_blur_strength=\"quote_text_shadow_style,%91object Object%93\" header_text_shadow_horizontal_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_vertical_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_blur_strength=\"header_text_shadow_style,%91object Object%93\" header_2_text_shadow_horizontal_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_vertical_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_blur_strength=\"header_2_text_shadow_style,%91object Object%93\" header_3_text_shadow_horizontal_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_vertical_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_blur_strength=\"header_3_text_shadow_style,%91object Object%93\" header_4_text_shadow_horizontal_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_vertical_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_blur_strength=\"header_4_text_shadow_style,%91object Object%93\" header_5_text_shadow_horizontal_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_vertical_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_blur_strength=\"header_5_text_shadow_style,%91object Object%93\" header_6_text_shadow_horizontal_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_vertical_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_blur_strength=\"header_6_text_shadow_style,%91object Object%93\"]\r\n\r\n<h3 style=\"text-align: center;\"><strong><em>The Children</em> (Max Kalmanowicz, 1980, 93 min.)</strong></h3><p>One can only imagine what awful child-related experience prompted Carlton Albright and Edward Terry to write a screenplay as horrific as <i>The Children</i>; perhaps he suspects his kids of being the mailman\'s progeny. The \"scary little kid\" subgenre has never been scarier or more nihilistic than this incredibly effective and incredibly nasty bargain-basement shockfest. Its premise is simple: a busload of kids drives through a toxic fog and turns into... into what? They still look like apple-cheeked, sweet-faced munchkins, except their fingernails are black, and if they touch you, they melt the flesh from your bones. To paraphrase the song, I believe the children are our future, and there ain\'t no future here.</p><p>After a prologue that establishes the source of the toxic fog, we follow the sheriff (Gil Rogers) as he tries to figure out why the school bus would be sitting empty on the side of the road. After he finds the first victim (the bus driver), his immediate concern is again with the children: who will protect them from whatever did this to the driver? It takes everyone concerned an inordinately long time to decide, finally, that the kids are the reason behind the rapidly accumulating bodies. But that\'s natural: we know we\'re watching a horror film called <i>The Children</i>, but it\'s almost against our instincts to suspect children of being capable of killing.</p><p>The acting and dialogue are standard for the horror genre, meaning that they\'re basically sub-par, but that fact doesn\'t detract from the movie\'s effectiveness a whit. Director Max Kalmanowicz\'s staging of scenes is nothing special during the first two acts, when it\'s still daylight and the adults are still trying to figure out what\'s going on. But once night falls, his true gifts come into play. Under cover of near-darkness, he exhibits an almost supernatural mastery of simple, evocative, and scary-as-hell shot framing, shock reveals, and pacing. He doesn\'t make the mistake, common in the slasher genre, of overlighting his shots: the lighting here is the familiar blindness-inducing pitch black of a moonless night, in which headlights, flashlights, and candles illuminate just enough to remind you of how cavern-dark everything else is. It\'s here, in the dark, where he uses his scary kids brilliantly. Smiling, arms outstretched, calling \"mommy, mommy\" in their piping voices, they loom out of the blackness like pretty little angels of death: this is the single scariest image I can remember from any horror film.</p><p>And if the soul-destroying horror of children turned into monsters weren\'t enough, the film bravely (if that\'s the right word; \"sadistically\" would fit too) follows through on its premise by making the destruction of the children necessary (i.e., there\'s no cure) and even more awful than the children themselves: only chopping off their hands will stop them. Both hands. That the camera pulls away from the scene of greatest carnage is no salve: the camera tracks slowly, sinuously out of a barn, into the yard, through a house, through the woods, as unearthly screams prompt our imaginations to supply pictures more nauseating than any makeup artist could create. And that\'s not even the most disturbing, or nihilistic, of the film\'s little horrors—it saves its biggest kick for last.</p><p>The unfair 5.1 rating on IMDB could reflect any number of things: disgust with <i>The Children</i>\'s awful nihilism, or failure to look past the low-budget aesthetics to the brilliant way Kalmanowicz and company embrace and twist the genre\'s conventions and limitations. It\'s certainly not for everybody. It\'s probably not for most people. You know who you are.</p>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','The Children (1980)','','publish','closed','closed','','the-children-1980','','','2019-07-26 01:13:06','2019-07-26 01:13:06','',0,'http://itcamefrombeyondpulp.com/?p=284',0,'post','',0),(285,1,'2019-07-26 01:11:51','2019-07-26 01:11:51','','children','','inherit','closed','closed','','children','','','2019-07-26 01:11:51','2019-07-26 01:11:51','',284,'http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/children.jpeg',0,'attachment','image/jpeg',0),(286,1,'2019-07-26 01:12:50','2019-07-26 01:12:50','','children','','inherit','closed','closed','','children-2','','','2019-07-26 01:12:50','2019-07-26 01:12:50','',284,'http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/children.jpg',0,'attachment','image/jpeg',0),(287,1,'2019-07-26 01:13:06','2019-07-26 01:13:06','[et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" custom_padding=\"0px|||||\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" custom_margin=\"||11px|||\" next_background_color=\"#000000\" global_module=\"74\"][et_pb_row global_parent=\"74\" custom_padding=\"0px||0px|||\" custom_margin=\"|auto|-66px|auto||\" _builder_version=\"3.26.3\"][et_pb_column type=\"4_4\" global_parent=\"74\" _builder_version=\"3.26.3\"][et_pb_image global_parent=\"74\" src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/header.jpg\" url=\"http://itcamefrombeyondpulp.com\" _builder_version=\"3.26.3\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.26.3\" width=\"1080px\" inner_module_alignment=\"center\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" module_alignment=\"center\" custom_padding=\"0px||0px||false|false\" prev_background_color=\"#000000\" next_background_color=\"#e02b20\" global_module=\"175\"][et_pb_fullwidth_menu global_parent=\"175\" menu_id=\"2\" submenu_direction=\"downwards\" fullwidth_menu=\"off\" dropdown_menu_text_color=\"#ffffff\" _builder_version=\"3.26.3\" menu_font=\"|800||on|||||\" menu_text_color=\"#ffffff\" menu_font_size=\"22px\" menu_letter_spacing=\"5px\" background_color=\"#e02b20\" border_width_bottom=\"5px\" text_orientation=\"center\" background_layout=\"dark\" custom_padding=\"1px||0px||false|false\" z_index_tablet=\"500\" menu_text_shadow_horizontal_length_tablet=\"0px\" menu_text_shadow_vertical_length_tablet=\"0px\" menu_text_shadow_blur_strength_tablet=\"1px\" border_width_bottom_tablet=\"5px\" border_width_bottom_phone=\"5px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" custom_margin=\"0px||||false|false\" /][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" background_color=\"#e02b20\" width=\"1080px\" module_alignment=\"center\" custom_padding=\"10px||0px|||\" prev_background_color=\"#ffffff\"][et_pb_row _builder_version=\"3.26.3\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" background_color=\"#ffffff\" custom_padding=\"10px|10px||10px|false|false\" border_width_bottom=\"5px\" border_color_bottom=\"#e02b20\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image _builder_version=\"3.26.3\" src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/children.jpg\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\" /][et_pb_text _builder_version=\"3.26.3\" z_index_tablet=\"500\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" text_text_shadow_horizontal_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_vertical_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_blur_strength=\"text_text_shadow_style,%91object Object%93\" link_text_shadow_horizontal_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_vertical_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_blur_strength=\"link_text_shadow_style,%91object Object%93\" ul_text_shadow_horizontal_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_vertical_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_blur_strength=\"ul_text_shadow_style,%91object Object%93\" ol_text_shadow_horizontal_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_vertical_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_blur_strength=\"ol_text_shadow_style,%91object Object%93\" quote_text_shadow_horizontal_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_vertical_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_blur_strength=\"quote_text_shadow_style,%91object Object%93\" header_text_shadow_horizontal_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_vertical_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_blur_strength=\"header_text_shadow_style,%91object Object%93\" header_2_text_shadow_horizontal_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_vertical_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_blur_strength=\"header_2_text_shadow_style,%91object Object%93\" header_3_text_shadow_horizontal_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_vertical_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_blur_strength=\"header_3_text_shadow_style,%91object Object%93\" header_4_text_shadow_horizontal_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_vertical_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_blur_strength=\"header_4_text_shadow_style,%91object Object%93\" header_5_text_shadow_horizontal_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_vertical_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_blur_strength=\"header_5_text_shadow_style,%91object Object%93\" header_6_text_shadow_horizontal_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_vertical_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_blur_strength=\"header_6_text_shadow_style,%91object Object%93\"]\r\n\r\n<h3 style=\"text-align: center;\"><strong><em>The Children</em> (Max Kalmanowicz, 1980, 93 min.)</strong></h3><p>One can only imagine what awful child-related experience prompted Carlton Albright and Edward Terry to write a screenplay as horrific as <i>The Children</i>; perhaps he suspects his kids of being the mailman\'s progeny. The \"scary little kid\" subgenre has never been scarier or more nihilistic than this incredibly effective and incredibly nasty bargain-basement shockfest. Its premise is simple: a busload of kids drives through a toxic fog and turns into... into what? They still look like apple-cheeked, sweet-faced munchkins, except their fingernails are black, and if they touch you, they melt the flesh from your bones. To paraphrase the song, I believe the children are our future, and there ain\'t no future here.</p><p>After a prologue that establishes the source of the toxic fog, we follow the sheriff (Gil Rogers) as he tries to figure out why the school bus would be sitting empty on the side of the road. After he finds the first victim (the bus driver), his immediate concern is again with the children: who will protect them from whatever did this to the driver? It takes everyone concerned an inordinately long time to decide, finally, that the kids are the reason behind the rapidly accumulating bodies. But that\'s natural: we know we\'re watching a horror film called <i>The Children</i>, but it\'s almost against our instincts to suspect children of being capable of killing.</p><p>The acting and dialogue are standard for the horror genre, meaning that they\'re basically sub-par, but that fact doesn\'t detract from the movie\'s effectiveness a whit. Director Max Kalmanowicz\'s staging of scenes is nothing special during the first two acts, when it\'s still daylight and the adults are still trying to figure out what\'s going on. But once night falls, his true gifts come into play. Under cover of near-darkness, he exhibits an almost supernatural mastery of simple, evocative, and scary-as-hell shot framing, shock reveals, and pacing. He doesn\'t make the mistake, common in the slasher genre, of overlighting his shots: the lighting here is the familiar blindness-inducing pitch black of a moonless night, in which headlights, flashlights, and candles illuminate just enough to remind you of how cavern-dark everything else is. It\'s here, in the dark, where he uses his scary kids brilliantly. Smiling, arms outstretched, calling \"mommy, mommy\" in their piping voices, they loom out of the blackness like pretty little angels of death: this is the single scariest image I can remember from any horror film.</p><p>And if the soul-destroying horror of children turned into monsters weren\'t enough, the film bravely (if that\'s the right word; \"sadistically\" would fit too) follows through on its premise by making the destruction of the children necessary (i.e., there\'s no cure) and even more awful than the children themselves: only chopping off their hands will stop them. Both hands. That the camera pulls away from the scene of greatest carnage is no salve: the camera tracks slowly, sinuously out of a barn, into the yard, through a house, through the woods, as unearthly screams prompt our imaginations to supply pictures more nauseating than any makeup artist could create. And that\'s not even the most disturbing, or nihilistic, of the film\'s little horrors—it saves its biggest kick for last.</p><p>The unfair 5.1 rating on IMDB could reflect any number of things: disgust with <i>The Children</i>\'s awful nihilism, or failure to look past the low-budget aesthetics to the brilliant way Kalmanowicz and company embrace and twist the genre\'s conventions and limitations. It\'s certainly not for everybody. It\'s probably not for most people. You know who you are.</p>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','The Children (1980)','','inherit','closed','closed','','284-revision-v1','','','2019-07-26 01:13:06','2019-07-26 01:13:06','',284,'http://itcamefrombeyondpulp.com/uncategorized/284-revision-v1/',0,'revision','',0),(292,1,'2019-07-26 02:06:43','2019-07-26 02:06:43','[et_pb_section fb_built=\"1\" _builder_version=\"3.26.3\" custom_margin=\"||11px|||\" custom_padding=\"0px|||||\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" global_module=\"74\"][et_pb_row custom_padding=\"0px||0px|||\" custom_margin=\"|auto|-66px|auto||\" _builder_version=\"3.26.3\"][et_pb_column type=\"4_4\" _builder_version=\"3.26.3\"][et_pb_image src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/header.jpg\" url=\"http://itcamefrombeyondpulp.com\" _builder_version=\"3.26.3\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.26.3\" width=\"1080px\" module_alignment=\"center\" inner_module_alignment=\"center\" custom_padding=\"0px||0px||false|false\" z_index_tablet=\"500\" hover_enabled=\"0\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" global_module=\"175\" width_last_edited=\"on|tablet\" width_phone=\"100%\" width_tablet=\"100%\"][et_pb_fullwidth_menu menu_id=\"2\" submenu_direction=\"downwards\" fullwidth_menu=\"off\" dropdown_menu_text_color=\"#ffffff\" _builder_version=\"3.26.3\" menu_font=\"|800||on|||||\" menu_text_color=\"#ffffff\" menu_font_size=\"22px\" menu_letter_spacing=\"5px\" background_color=\"#e02b20\" border_width_bottom=\"5px\" text_orientation=\"center\" background_layout=\"dark\" custom_margin=\"0px||||false|false\" custom_padding=\"1px||0px||false|false\" z_index_tablet=\"500\" menu_text_shadow_horizontal_length_tablet=\"0px\" menu_text_shadow_vertical_length_tablet=\"0px\" menu_text_shadow_blur_strength_tablet=\"1px\" border_width_bottom_tablet=\"5px\" border_width_bottom_phone=\"5px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\"][/et_pb_fullwidth_menu][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.26.3\" background_color=\"#e02b20\" width=\"1080px\" module_alignment=\"center\" custom_padding=\"10px||0px|||\" hover_enabled=\"0\" width_last_edited=\"on|tablet\" width_phone=\"100%\" width_tablet=\"100%\"][et_pb_row custom_padding=\"10px|10px||\" _builder_version=\"3.26.3\" background_color=\"#ffffff\" border_width_bottom=\"5px\" border_color_bottom=\"#e02b20\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.26.3\" z_index_tablet=\"500\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\"]<h1 style=\"text-align: center;\">Movies &amp; TV Reviews</h1>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.26.3\" background_color=\"#ffffff\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" column_structure=\"1_3,1_3,1_3\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.26.3\" z_index_tablet=\"500\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\"]<h3 style=\"text-align: center;\">Sci-Fi</h3>\r\n<p style=\"text-align: center;\"><strong><a href=\"http://itcamefrombeyondpulp.com/movies/children-of-men-2006/\">Children of Men (2006)</a><br /></strong><strong><a href=\"http://itcamefrombeyondpulp.com/movies/cloverfield-2008/\">Cloverfield (2008)</a><br /><a href=\"http://itcamefrombeyondpulp.com/movies/the-dark-knight-2008/\">The Dark Knight (2008)</a><br /><a href=\"http://itcamefrombeyondpulp.com/movies/the-fountain-2006/\">The Fountain (2006)</a><br /><a href=\"http://itcamefrombeyondpulp.com/movies/hardware-1990/\">Hardware (1990)</a><br /><a href=\"http://itcamefrombeyondpulp.com/movies/harry-potter-and-the-chamber-of-secrets-2002/\">Harry Potter and the Chamber of Secrets (2002)</a><br /><a href=\"http://itcamefrombeyondpulp.com/movies/harry-potter-and-the-sorcerers-stone-2001/\">Harry Potter and the Sorcerer\'s Stone (2001)</a><br /><a href=\"http://itcamefrombeyondpulp.com/movies/maniac-1934/\">Maniac (1934)</a><br /><a href=\"http://itcamefrombeyondpulp.com/movies/the-phantom-planet-1961/\">The Phantom Planet (1961)</a><br /><a href=\"http://itcamefrombeyondpulp.com/movies/predator-1987/\">Predator (1987)</a><br /></strong><a href=\"http://itcamefrombeyondpulp.com/movies/serenity-2005/\"><strong>Serenity (2005)</strong></a><br /><a href=\"http://itcamefrombeyondpulp.com/movies/x-men-the-last-stand-2006/\"><strong>X-Men: The Last Stand (2006)</strong></a></p>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.26.3\" z_index_tablet=\"500\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\"]<h3 style=\"text-align: center;\">Horror</h3><p style=\"text-align: center;\"><a href=\"http://itcamefrombeyondpulp.com/movies/bloodrayne-2-deliverance-2007/\"><strong>BloodRayne 2: Deliverance (2007)</strong></a><br /><a href=\"http://itcamefrombeyondpulp.com/movies/the-cat-and-the-canary-1927/\"><strong>The Cat and the Canary (1927)</strong></a><br /><a href=\"http://itcamefrombeyondpulp.com/movies/the-children-1980/\"><strong>The Children (1980)</strong></a><br /><a href=\"http://itcamefrombeyondpulp.com/movies/masters-of-horror-the-black-cat-2007/\"><strong>Masters of Horror: The Black Cat (2007)</strong></a></p>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.26.3\" z_index_tablet=\"500\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\"]<h3 style=\"text-align: center;\">Whatnot</h3>\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Movies','','inherit','closed','closed','','45-revision-v1','','','2019-07-26 02:06:43','2019-07-26 02:06:43','',45,'http://itcamefrombeyondpulp.com/uncategorized/45-revision-v1/',0,'revision','',0),(288,1,'2019-07-26 01:13:43','2019-07-26 01:13:43','[et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" custom_padding=\"0px|||||\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" custom_margin=\"||11px|||\" next_background_color=\"#000000\" global_module=\"74\"][et_pb_row global_parent=\"74\" custom_padding=\"0px||0px|||\" custom_margin=\"|auto|-66px|auto||\" _builder_version=\"3.26.3\"][et_pb_column type=\"4_4\" global_parent=\"74\" _builder_version=\"3.26.3\"][et_pb_image global_parent=\"74\" src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/header.jpg\" url=\"http://itcamefrombeyondpulp.com\" _builder_version=\"3.26.3\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.26.3\" width=\"1080px\" inner_module_alignment=\"center\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" module_alignment=\"center\" custom_padding=\"0px||0px||false|false\" prev_background_color=\"#000000\" next_background_color=\"#e02b20\" global_module=\"175\"][et_pb_fullwidth_menu global_parent=\"175\" menu_id=\"2\" submenu_direction=\"downwards\" fullwidth_menu=\"off\" dropdown_menu_text_color=\"#ffffff\" _builder_version=\"3.26.3\" menu_font=\"|800||on|||||\" menu_text_color=\"#ffffff\" menu_font_size=\"22px\" menu_letter_spacing=\"5px\" background_color=\"#e02b20\" border_width_bottom=\"5px\" text_orientation=\"center\" background_layout=\"dark\" custom_padding=\"1px||0px||false|false\" z_index_tablet=\"500\" menu_text_shadow_horizontal_length_tablet=\"0px\" menu_text_shadow_vertical_length_tablet=\"0px\" menu_text_shadow_blur_strength_tablet=\"1px\" border_width_bottom_tablet=\"5px\" border_width_bottom_phone=\"5px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" custom_margin=\"0px||||false|false\" /][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" background_color=\"#e02b20\" width=\"1080px\" module_alignment=\"center\" custom_padding=\"10px||0px|||\" prev_background_color=\"#ffffff\"][et_pb_row custom_padding=\"10px|10px||\" _builder_version=\"3.26.3\" background_color=\"#ffffff\" border_width_bottom=\"5px\" border_color_bottom=\"#e02b20\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.26.3\" z_index_tablet=\"500\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" text_text_shadow_horizontal_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_vertical_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_blur_strength=\"text_text_shadow_style,%91object Object%93\" link_text_shadow_horizontal_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_vertical_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_blur_strength=\"link_text_shadow_style,%91object Object%93\" ul_text_shadow_horizontal_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_vertical_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_blur_strength=\"ul_text_shadow_style,%91object Object%93\" ol_text_shadow_horizontal_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_vertical_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_blur_strength=\"ol_text_shadow_style,%91object Object%93\" quote_text_shadow_horizontal_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_vertical_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_blur_strength=\"quote_text_shadow_style,%91object Object%93\" header_text_shadow_horizontal_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_vertical_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_blur_strength=\"header_text_shadow_style,%91object Object%93\" header_2_text_shadow_horizontal_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_vertical_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_blur_strength=\"header_2_text_shadow_style,%91object Object%93\" header_3_text_shadow_horizontal_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_vertical_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_blur_strength=\"header_3_text_shadow_style,%91object Object%93\" header_4_text_shadow_horizontal_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_vertical_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_blur_strength=\"header_4_text_shadow_style,%91object Object%93\" header_5_text_shadow_horizontal_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_vertical_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_blur_strength=\"header_5_text_shadow_style,%91object Object%93\" header_6_text_shadow_horizontal_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_vertical_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_blur_strength=\"header_6_text_shadow_style,%91object Object%93\"]\r\n\r\n<h1 style=\"text-align: center;\">Movies &amp; TV Reviews</h1>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.26.3\" background_color=\"#ffffff\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\"][et_pb_column type=\"1_3\" custom_padding__hover=\"|||\" custom_padding=\"|||\"][et_pb_text _builder_version=\"3.26.3\" text_text_shadow_horizontal_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\"]\r\n\r\n<h3 style=\"text-align: center;\">Sci-Fi</h3>\r\n<p style=\"text-align: center;\"><strong><a href=\"http://itcamefrombeyondpulp.com/movies/children-of-men-2006/\">Children of Men (2006)</a><br /></strong><strong><a href=\"http://itcamefrombeyondpulp.com/movies/cloverfield-2008/\">Cloverfield (2008)</a><br /><a href=\"http://itcamefrombeyondpulp.com/movies/the-dark-knight-2008/\">The Dark Knight (2008)</a><br /><a href=\"http://itcamefrombeyondpulp.com/movies/the-fountain-2006/\">The Fountain (2006)</a><br /><a href=\"http://itcamefrombeyondpulp.com/movies/hardware-1990/\">Hardware (1990)</a><br /><a href=\"http://itcamefrombeyondpulp.com/movies/harry-potter-and-the-chamber-of-secrets-2002/\">Harry Potter and the Chamber of Secrets (2002)</a><br /><a href=\"http://itcamefrombeyondpulp.com/movies/harry-potter-and-the-sorcerers-stone-2001/\">Harry Potter and the Sorcerer\'s Stone (2001)</a><br /><a href=\"http://itcamefrombeyondpulp.com/movies/maniac-1934/\">Maniac (1934)</a><br /><a href=\"http://itcamefrombeyondpulp.com/movies/the-phantom-planet-1961/\">The Phantom Planet (1961)</a><br /><a href=\"http://itcamefrombeyondpulp.com/movies/predator-1987/\">Predator (1987)</a><br /></strong><a href=\"http://itcamefrombeyondpulp.com/movies/serenity-2005/\"><strong>Serenity (2005)</strong></a><br /><a href=\"http://itcamefrombeyondpulp.com/movies/x-men-the-last-stand-2006/\"><strong>X-Men: The Last Stand (2006)</strong></a></p>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" custom_padding__hover=\"|||\" custom_padding=\"|||\"][et_pb_text _builder_version=\"3.26.3\" text_text_shadow_horizontal_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\"]\r\n\r\n<h3 style=\"text-align: center;\">Horror</h3><p style=\"text-align: center;\"><a href=\"http://itcamefrombeyondpulp.com/movies/bloodrayne-2-deliverance-2007/\"><strong>BloodRayne 2: Deliverance (2007)</strong></a><br /><a href=\"http://itcamefrombeyondpulp.com/movies/the-cat-and-the-canary-1927/\"><strong>The Cat and the Canary (1927)</strong></a><br /><a href=\"http://itcamefrombeyondpulp.com/movies/the-children-1980/\"><strong>The Children (1980)</strong></a><br /><a href=\"http://itcamefrombeyondpulp.com/movies/masters-of-horror-the-black-cat-2007/\"><strong>Masters of Horror: The Black Cat (2007)</strong></a></p>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" custom_padding__hover=\"|||\" custom_padding=\"|||\"][et_pb_text _builder_version=\"3.26.3\" text_text_shadow_horizontal_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\"]\r\n\r\n<h3 style=\"text-align: center;\">Whatnot</h3>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Movies','','inherit','closed','closed','','45-revision-v1','','','2019-07-26 01:13:43','2019-07-26 01:13:43','',45,'http://itcamefrombeyondpulp.com/uncategorized/45-revision-v1/',0,'revision','',0),(299,1,'2019-07-26 03:11:48','2019-07-26 03:11:48','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.26.3\" width=\"1080px\" width_tablet=\"100%\" width_last_edited=\"on|phone\" module_alignment=\"center\" inner_module_alignment=\"center\" custom_padding=\"0px||0px||false|false\" z_index_tablet=\"500\" hover_enabled=\"0\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" template_type=\"section\"][et_pb_fullwidth_menu menu_id=\"2\" submenu_direction=\"downwards\" fullwidth_menu=\"off\" dropdown_menu_text_color=\"#ffffff\" _builder_version=\"3.26.3\" menu_font=\"|800||on|||||\" menu_text_color=\"#ffffff\" menu_font_size=\"22px\" menu_letter_spacing=\"5px\" background_color=\"#e02b20\" border_width_bottom=\"5px\" text_orientation=\"center\" background_layout=\"dark\" custom_margin=\"0px||||false|false\" custom_padding=\"1px||0px||false|false\" z_index_tablet=\"500\" menu_text_shadow_horizontal_length_tablet=\"0px\" menu_text_shadow_vertical_length_tablet=\"0px\" menu_text_shadow_blur_strength_tablet=\"1px\" border_width_bottom_tablet=\"5px\" border_width_bottom_phone=\"5px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\"][/et_pb_fullwidth_menu][/et_pb_section]','nav bar','','inherit','closed','closed','','175-revision-v1','','','2019-07-26 03:11:48','2019-07-26 03:11:48','',175,'http://itcamefrombeyondpulp.com/uncategorized/175-revision-v1/',0,'revision','',0),(300,1,'2019-07-26 03:12:59','2019-07-26 03:12:59','[et_pb_section fb_built=\"1\" _builder_version=\"3.26.3\" custom_margin=\"||11px|||\" custom_padding=\"0px|||||\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" global_module=\"74\"][et_pb_row custom_padding=\"0px||0px|||\" custom_margin=\"|auto|-66px|auto||\" _builder_version=\"3.26.3\"][et_pb_column type=\"4_4\" _builder_version=\"3.26.3\"][et_pb_image src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/header.jpg\" url=\"http://itcamefrombeyondpulp.com\" _builder_version=\"3.26.3\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.26.3\" width=\"1080px\" width_tablet=\"100%\" width_last_edited=\"on|phone\" module_alignment=\"center\" inner_module_alignment=\"center\" custom_padding=\"0px||0px||false|false\" z_index_tablet=\"500\" hover_enabled=\"0\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" global_module=\"175\"][et_pb_fullwidth_menu menu_id=\"2\" submenu_direction=\"downwards\" fullwidth_menu=\"off\" dropdown_menu_text_color=\"#ffffff\" _builder_version=\"3.26.3\" menu_font=\"|800||on|||||\" menu_text_color=\"#ffffff\" menu_font_size=\"22px\" menu_letter_spacing=\"5px\" background_color=\"#e02b20\" border_width_bottom=\"5px\" text_orientation=\"center\" background_layout=\"dark\" custom_margin=\"0px||||false|false\" custom_padding=\"1px||0px||false|false\" z_index_tablet=\"500\" menu_text_shadow_horizontal_length_tablet=\"0px\" menu_text_shadow_vertical_length_tablet=\"0px\" menu_text_shadow_blur_strength_tablet=\"1px\" border_width_bottom_tablet=\"5px\" border_width_bottom_phone=\"5px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\"][/et_pb_fullwidth_menu][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.26.3\" background_color=\"#e02b20\" width=\"1080px\" module_alignment=\"center\" custom_padding=\"10px||0px|||\" width_last_edited=\"on|desktop\" width_phone=\"100%\"][et_pb_row custom_padding=\"10px|10px||10px|false|false\" _builder_version=\"3.26.3\" background_color=\"#ffffff\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" border_width_bottom=\"5px\" border_color_bottom=\"#e02b20\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/children-of-men.png\" _builder_version=\"3.26.3\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\"][/et_pb_image][et_pb_text _builder_version=\"3.26.3\" z_index_tablet=\"500\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\"]<h3 style=\"text-align: center;\"><strong><em>Children of Men</em> (Alfonso Cuaron, 2006, 109 min.)</strong></h3>\r\n<p>Every day, <i>Children of Men</i> looks not only more possible, but more probable, at least in its vision of a future that has its roots in the present. But Alfonso Cuaron\'s chilling vision of the future goes one step beyond those things we can already see growing today; it\'s 2027, and it\'s been 18 years since the last human gave birth. It\'s a hell of a setup, and for the most part Cuaron and company deliver on that promise.</p>\r\n<p>Although the cast features such names as Clive Owen and Julianne Moore, the main attraction is Cuaron\'s direction, favoring restless handheld cameras and amazing, nearly impossibly choreographed tracking shots. Cuaron\'s genius for movement is one of the things that made <i>Y Tu Mama Tambien</i> so entrancing, and the main thing that made <i>Harry Potter and the Prisoner of Azkaban</i> so much more watchable than the first two installments. He has a knack for rushing things along without making them feel rushed; we feel swept along with the narrative or within a scene without feeling out of control. The highlights are surely the magnificent tracking shots, especially the ones in the film-closing sequence in the refugee camps, where Cuaron\'s camera takes us through battles in progress, the lens becoming spattered with blood in the controlled mayhem.</p>\r\n<p>On the day of the death of the youngest person in the world, Theo (Owen) is kidnapped by the Fish, a revolutionary group headed by his ex-wife Julian (Moore), who wants Theo to use his connections to secure safe passage to the coast for a young refugee named Kee (Claire-Hope Ashitey). After Julian is killing by a seemingly random attack by thugs, co-leader Luke (Chiwetel Ejiofor) and the matronly Miriam (Pam Ferris) take Theo and Kee to a Fish hideout, where Theo learns that Kee is pregnant and that Luke has his own plans for the baby that don\'t necessarily include leaving it with Kee. Theo, Kee, and Miriam flee in hopes that they can get Kee and her unborn child to the Human Project (a shadowy sort of leftist collective), with Luke and the rest of the Fish in hot pursuit. Along they way they seek aid from Theo\'s friend Jasper (Michael Caine) and a corrupt and probably insane cop named Syd (Peter Mullan), until they end up in a walled-in refugee city, caught in the middle of a battle between the army and the revolutionaries.</p>\r\n<p>Owen is the classic anti-hero, the reluctant savior whose gruff and resigned exterior conceals a big heart. Up until the very end, his heroics are of the decidedly average kind; he\'s presented as being able to help not because he\'s particularly adept, but because he\'s lucky. But then he\'s shot, and unlike every single other character in the film who is shot (they all drop, well, like they\'ve been shot), he\'s able to persevere to the end, apparently unmindful of a hole in his stomach until his sacred duty is performed. It\'s one of the film\'s few lapses of internal logic. Another comes during the attack in which Julian is killed; we learn later that one of the Fish used the attack as cover to assassinate Julian, which seems more than foolhardy—they knew Kee was in the car, and with all the shooting and fire-bombing, weren\'t they worried that maybe she or her baby would be harmed? But for the most part the film is well constructed and acted; its limitations are apparent on a different level. It\'s a very good film, but there are many things about it that keep me from joining in the ecstatic praise that has greeted it.</p>\r\n<p>Although the film\'s politics are mostly in the right place, there\'s ample room to criticize many of its underlying assumptions. A scholar friend sighed, saying that <i>Children of Men</i> seemed like the story of a white man saving a brown baby from the government, a sort of white man\'s burden for the left. There\'s something to that, and although I don\'t think it was intentional, it\'s obvious that Cuaron and company didn\'t think it through. And I\'ll add to that by pointing out that it\'s not just about a white man saving a brown baby, but about a white man saving a brown baby from, among others, a brown man. I\'m only halfheartedly advancing this theory; I don\'t for a minute think that Cuaron and company meant any of this. I\'d like to believe that the principle of colorblind casting was at work here: that Chiwetel Ejiofor is such a marvelous actor, and the role of Luke such a rich role, that they deserved to go together. I don\'t think Cuaron and company considered any alternate readings, which is a disappointment from a film that\'s so smart about other things.</p>\r\n<p>It fails again in its sexual politics. There\'s a kind of casual and distressingly typical misogyny at work. Women are the root cause of the infertility (of course men wouldn\'t have become infertile). There are only three types of women here, the helpless, the nurturers, and the ones who end up dead. And then there\'s that word in the title, \"men,\" which I\'m sure we\'re supposed to read in a more universal \"all mankind\" way, but which is actually a good description of the film\'s attitude about women. The entire film is about men fighting over a woman\'s child: over its existence, over its meaning, even over its sex. One of the finest moments comes when Ejiofor, spouting off about how important \"he\" will be, falls into dumbfounded silence when he learns that the baby is a girl; his face relaxes from anger to wonder, and he says, \"A girl? I had a sister.\" But in the end, it\'s really about the children of men, and women don\'t factor in except as carriers of those children. (And I\'m coming around to another friend\'s notion that the song over the end credits, \"Running the World\" by Jarvis Cocker, is another example of the filmmakers failing to think things through. The chorus, \"the cunts are still running the world,\" initially seemed to me to be a sort of wry admission that, even if the ending is a happy one, its happiness is muted by the fact that the government is still engaged in its slash-and-burn policies, and that maybe things won\'t be any better if the Human Project wins out. But there\'s that word, \"cunt,\" which was probably intended as a tossed-off British slang term devoid of sexual connotations, but given the weight of the film\'s sexual politics, is simply an unconscionable gaffe.)</p>\r\n<p>And then there\'s the utopian ending, which, although it worked for me sitting there in the theater—indeed, I would have been furious had it ended any other way—now strikes me as naive. Maybe the film\'s desperate hope for a better world clouded its filmmakers\' vision, a reading that\'s perfectly compatible with the resolution. Throughout, Owen is protecting the baby against the oppressive government, which would misuse the baby as a symbol, and the revolutionaries, who also want to misuse the baby as a symbol (they even call her a \"flag,\" something to rally behind). I\'d love to agree with the film\'s utopian hope that the members of the Human Project will be above such things, that \"society\'s greatest minds\" won\'t use the mother as a lab rat, that they wouldn\'t dream of separating the baby from her mother, but the entire history of scientific research advises against such hopes. I didn\'t think so at the time, but maybe the film would have ended better with Owen and the mother waiting in the fog for a boat that might never come. Uncertainty strikes me as a more honest ending to this story than does blind hope.</p>\r\n<div> </div>\r\n<div>Note that I wrote this shortly after seeing the film in the theater on its opening weekend. In the years since then, over repeated viewings, it has grown in my estimation, and I think it\'s one of the great films of the 21st century.</div>\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Children of Men (2006)','','inherit','closed','closed','','117-revision-v1','','','2019-07-26 03:12:59','2019-07-26 03:12:59','',117,'http://itcamefrombeyondpulp.com/uncategorized/117-revision-v1/',0,'revision','',0),(305,1,'2019-07-26 14:31:09','2019-07-26 14:31:09','[et_pb_section bb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.26.3\" width=\"1080px\" width_tablet=\"100%\" width_last_edited=\"on|phone\" module_alignment=\"center\" inner_module_alignment=\"center\" custom_padding=\"0px||0px||false|false\" z_index_tablet=\"500\" hover_enabled=\"0\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" prev_background_color=\"#000000\" next_background_color=\"#e02b20\" template_type=\"section\"][et_pb_fullwidth_menu menu_id=\"2\" submenu_direction=\"downwards\" fullwidth_menu=\"off\" dropdown_menu_text_color=\"#ffffff\" _builder_version=\"3.26.3\" menu_font=\"|800||on|||||\" menu_text_color=\"#ffffff\" menu_font_size=\"22px\" menu_letter_spacing=\"5px\" background_color=\"#e02b20\" border_width_bottom=\"5px\" text_orientation=\"center\" background_layout=\"dark\" custom_margin=\"0px||||false|false\" custom_padding=\"1px||0px||false|false\" z_index_tablet=\"500\" menu_text_shadow_horizontal_length_tablet=\"0px\" menu_text_shadow_vertical_length_tablet=\"0px\" menu_text_shadow_blur_strength_tablet=\"1px\" border_width_bottom_tablet=\"5px\" border_width_bottom_phone=\"5px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" /][/et_pb_section]','nav bar','','inherit','closed','closed','','175-revision-v1','','','2019-07-26 14:31:09','2019-07-26 14:31:09','',175,'http://itcamefrombeyondpulp.com/uncategorized/175-revision-v1/',0,'revision','',0),(306,1,'2019-07-26 14:34:07','2019-07-26 14:34:07','','colin','','inherit','closed','closed','','colin','','','2019-07-26 14:34:07','2019-07-26 14:34:07','',304,'http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/colin.jpg',0,'attachment','image/jpeg',0),(307,1,'2019-07-26 14:34:33','2019-07-26 14:34:33','[et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" custom_padding=\"0px|||||\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" custom_margin=\"||11px|||\" next_background_color=\"#000000\" global_module=\"74\"][et_pb_row global_parent=\"74\" custom_padding=\"0px||0px|||\" custom_margin=\"|auto|-66px|auto||\" _builder_version=\"3.26.3\"][et_pb_column type=\"4_4\" global_parent=\"74\" _builder_version=\"3.26.3\"][et_pb_image global_parent=\"74\" src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/header.jpg\" url=\"http://itcamefrombeyondpulp.com\" _builder_version=\"3.26.3\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.26.3\" width=\"1080px\" width_tablet=\"100%\" width_last_edited=\"on|phone\" module_alignment=\"center\" inner_module_alignment=\"center\" custom_padding=\"0px||0px||false|false\" z_index_tablet=\"500\" hover_enabled=\"0\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" global_module=\"175\" prev_background_color=\"#000000\" next_background_color=\"#e02b20\"][et_pb_fullwidth_menu global_parent=\"175\" menu_id=\"2\" submenu_direction=\"downwards\" fullwidth_menu=\"off\" dropdown_menu_text_color=\"#ffffff\" _builder_version=\"3.26.3\" menu_font=\"|800||on|||||\" menu_text_color=\"#ffffff\" menu_font_size=\"22px\" menu_letter_spacing=\"5px\" background_color=\"#e02b20\" border_width_bottom=\"5px\" text_orientation=\"center\" background_layout=\"dark\" custom_margin=\"0px||||false|false\" custom_padding=\"1px||0px||false|false\" z_index_tablet=\"500\" menu_text_shadow_horizontal_length_tablet=\"0px\" menu_text_shadow_vertical_length_tablet=\"0px\" menu_text_shadow_blur_strength_tablet=\"1px\" border_width_bottom_tablet=\"5px\" border_width_bottom_phone=\"5px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" /][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" background_color=\"#e02b20\" width=\"1080px\" module_alignment=\"center\" custom_padding=\"10px||0px|||\" prev_background_color=\"#ffffff\"][et_pb_row _builder_version=\"3.26.3\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" background_color=\"#ffffff\" custom_padding=\"10px|10px||10px|false|false\" border_width_bottom=\"5px\" border_color_bottom=\"#e02b20\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image _builder_version=\"3.26.3\" src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/colin.jpg\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\" /][et_pb_text _builder_version=\"3.26.3\" z_index_tablet=\"500\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" text_text_shadow_horizontal_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_vertical_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_blur_strength=\"text_text_shadow_style,%91object Object%93\" link_text_shadow_horizontal_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_vertical_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_blur_strength=\"link_text_shadow_style,%91object Object%93\" ul_text_shadow_horizontal_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_vertical_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_blur_strength=\"ul_text_shadow_style,%91object Object%93\" ol_text_shadow_horizontal_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_vertical_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_blur_strength=\"ol_text_shadow_style,%91object Object%93\" quote_text_shadow_horizontal_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_vertical_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_blur_strength=\"quote_text_shadow_style,%91object Object%93\" header_text_shadow_horizontal_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_vertical_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_blur_strength=\"header_text_shadow_style,%91object Object%93\" header_2_text_shadow_horizontal_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_vertical_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_blur_strength=\"header_2_text_shadow_style,%91object Object%93\" header_3_text_shadow_horizontal_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_vertical_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_blur_strength=\"header_3_text_shadow_style,%91object Object%93\" header_4_text_shadow_horizontal_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_vertical_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_blur_strength=\"header_4_text_shadow_style,%91object Object%93\" header_5_text_shadow_horizontal_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_vertical_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_blur_strength=\"header_5_text_shadow_style,%91object Object%93\" header_6_text_shadow_horizontal_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_vertical_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_blur_strength=\"header_6_text_shadow_style,%91object Object%93\"]\r\n\r\n<h3 style=\"text-align: center;\"><strong><em>Colin</em> (Marc Price, 2008, 97 min.)</strong></h3><p>Struggling filmmaker manages to create a wildly popular, word-of-mouth triumph using only his ingenuity, his friends\' willingness to help for nothing, and about $75 for food and tea. It\'s a great story, even if it\'s mostly fiction—even if we factor in the in-kind donations, you also have to consider tape cost, etc. But that doesn\'t really matter: that\'s just the hook to get you in the door. The real question is whether the film manages to be any good, either because of or in spite of its micro-budget. The answer is, sort of.</p><p>It certainly has an interesting premise, a zombie\'s-eye view of becoming and being a zombie... mostly. We meet Colin (Alastair Kirton) as he enters an apartment, looking for a friend who quickly appears, zombified, and tries to eat our hero. After a thrilling closed-space battle in the kitchen, Colin wins, but then we realize that he\'s been bitten. It\'s zombie time for Colin, and we accompany him on his shambolic way (once he manages to escape the house) as he tries to make it in the big, cruel, competitive zombie world.</p><p>The film works best when it flirts with comedy: Colin\'s inability to work a door handle, his clumsiness, his basic suckiness at feeding off fleet-footed humans, and the idea of a couple of chavs robbing zombies for their tennis shoes. It\'s acceptable when it\'s providing gruesome gut-munching setpieces—leftover makeup and improvised effects, according to the press kit. But too much of the film is occupied by tiresome lurching and moaning, as we follow Colin on his perambulations. A plot inserts itself when Colin is captured by a girl who turns out to be his sister (Daisy Aitkens); she\'s determined to reawaken her beloved brother\'s memory, or at least his conscience, but we know that\'s impossible (or is it?), and other films and books (the superb comic series <i>The Walking Dead</i>, for example) have dealt with familial grief to better effect.</p><p>There are unnecessary subplots that do little but pad the running time and the body count, such as an ill-fated attempt by some random strangers to make a documentary about the undead (you can imagine how that turns out) and a completely inexplicable setpiece that apparently details a sadistic guy who traps girls in his basement, blinds them, and then lets the zombies get at them (although I might have the order mixed up). These sequences only serve to raise more questions than they answer, such as \"why do we care about these people, as our narrator-zombie Colin is nowhere to be found?\" and \"Would it have killed the filmmakers to use some freaking lights?\"</p><p>This is not a slam on the field of ultra-low-budget filmmaking, as I\'m a dabbler in that myself. Instead, it\'s a slam on cinematic laziness: as I\'ve said elsewhere, just because you don\'t have to use lights doesn\'t mean you shouldn\'t, and just because you can do everything handheld doesn\'t mean you should. The former, I suppose, is excused a bit by the premise: we\'re seeing things basically from Colin\'s point of view, even if it\'s not strictly second-person, and if the picture is muddy, washed out, and generally indecipherable, well, that\'s a zombie for you. Still, come on: plug in a lamp. The latter, however, is inexcusable: much better to turn on the stabilizer and achieve somewhat smoother movements, because these zombies aren\'t exactly moving fast. I think the distracting shaky-cam effects have more to do with other recent zombie movies than with the needs of the story.</p><p>The entire project feels like a decent short film blown up to feature length. At one point it comes to an absolutely perfect ending, one that would go a long way toward excusing some of the weaknesses early on—and then it continues for at least fifteen more minutes. Yes, it answers some questions, and it develops one of the plot points raised earlier, but it deprives the film of a truly memorable ending, and of a place in the zombie-movie canon. A place, that is, that has nothing to do with how much it ostensibly cost to make.</p>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Colin (2008)','','inherit','closed','closed','','304-revision-v1','','','2019-07-26 14:34:33','2019-07-26 14:34:33','',304,'http://itcamefrombeyondpulp.com/uncategorized/304-revision-v1/',0,'revision','',0),(394,1,'2019-08-03 21:28:22','2019-08-03 21:28:22','[et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" custom_padding=\"0px|||||\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" custom_margin=\"||11px|||\" next_background_color=\"#000000\" global_module=\"74\"][et_pb_row global_parent=\"74\" custom_padding=\"0px||0px|||\" custom_margin=\"|auto|-66px|auto||\" _builder_version=\"3.26.3\"][et_pb_column type=\"4_4\" global_parent=\"74\" _builder_version=\"3.26.3\"][et_pb_image global_parent=\"74\" src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/header.jpg\" url=\"http://itcamefrombeyondpulp.com\" _builder_version=\"3.26.3\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.26.3\" width=\"1080px\" width_tablet=\"100%\" width_last_edited=\"on|phone\" module_alignment=\"center\" inner_module_alignment=\"center\" custom_padding=\"0px||0px||false|false\" z_index_tablet=\"500\" hover_enabled=\"0\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" prev_background_color=\"#000000\" next_background_color=\"#e02b20\" global_module=\"175\"][et_pb_fullwidth_menu global_parent=\"175\" menu_id=\"2\" submenu_direction=\"downwards\" fullwidth_menu=\"off\" dropdown_menu_text_color=\"#ffffff\" _builder_version=\"3.26.3\" menu_font=\"|800||on|||||\" menu_text_color=\"#ffffff\" menu_font_size=\"22px\" menu_letter_spacing=\"5px\" background_color=\"#e02b20\" border_width_bottom=\"5px\" text_orientation=\"center\" background_layout=\"dark\" custom_margin=\"0px||||false|false\" custom_padding=\"1px||0px||false|false\" z_index_tablet=\"500\" menu_text_shadow_horizontal_length_tablet=\"0px\" menu_text_shadow_vertical_length_tablet=\"0px\" menu_text_shadow_blur_strength_tablet=\"1px\" border_width_bottom_tablet=\"5px\" border_width_bottom_phone=\"5px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" /][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" background_color=\"#e02b20\" width=\"1080px\" module_alignment=\"center\" custom_padding=\"10px||0px|||\" prev_background_color=\"#ffffff\"][et_pb_row _builder_version=\"3.26.3\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" background_color=\"#ffffff\" custom_padding=\"10px|10px||10px|false|false\" border_width_bottom=\"5px\" border_color_bottom=\"#e02b20\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image _builder_version=\"3.26.3\" src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/08/disturbia.jpg\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\" /][et_pb_text _builder_version=\"3.26.3\" z_index_tablet=\"500\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" text_text_shadow_horizontal_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_vertical_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_blur_strength=\"text_text_shadow_style,%91object Object%93\" link_text_shadow_horizontal_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_vertical_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_blur_strength=\"link_text_shadow_style,%91object Object%93\" ul_text_shadow_horizontal_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_vertical_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_blur_strength=\"ul_text_shadow_style,%91object Object%93\" ol_text_shadow_horizontal_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_vertical_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_blur_strength=\"ol_text_shadow_style,%91object Object%93\" quote_text_shadow_horizontal_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_vertical_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_blur_strength=\"quote_text_shadow_style,%91object Object%93\" header_text_shadow_horizontal_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_vertical_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_blur_strength=\"header_text_shadow_style,%91object Object%93\" header_2_text_shadow_horizontal_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_vertical_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_blur_strength=\"header_2_text_shadow_style,%91object Object%93\" header_3_text_shadow_horizontal_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_vertical_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_blur_strength=\"header_3_text_shadow_style,%91object Object%93\" header_4_text_shadow_horizontal_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_vertical_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_blur_strength=\"header_4_text_shadow_style,%91object Object%93\" header_5_text_shadow_horizontal_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_vertical_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_blur_strength=\"header_5_text_shadow_style,%91object Object%93\" header_6_text_shadow_horizontal_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_vertical_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_blur_strength=\"header_6_text_shadow_style,%91object Object%93\"]\r\n\r\n<h3 style=\"text-align: center;\"><strong><em>Disturbia</em> (D.J. Caruso, 2007, 104 min.)</strong></h3><p>The great American pastime of snooping on one\'s neighbors gets a high-tech DIY upgrade in <i>Disturbia</i>, and it\'s about time. Hearkening back to the 1950s and <em>Rear Window</em>, Alfred Hitchcock\'s paean to aiming telescopes not at the stars, but at the bedroom window of the house across the street, this film rephrases Tom Waits\'s immortal question, \"what\'s he building in there?\" as \"who\'s he killing in there?\" The end result is a surprisingly enjoyable film, efficiently made and featuring a strong young cast and some clever references to its cinematic forefathers. The most obvious influence is the aforementioned <em>Rear Window</em>, but to call it a \"remake\" is to miss the more contemporary influence of Tom Holland\'s brilliant 1985 scarefest <em>Fright Night</em>, which is one of the best vampire movies ever made (and which itself owes a lot to Hitchcock\'s film). The premise—a guy stuck in his house thinks his neighbor is a murderer—is straight out of the Hitchcock film, but the details are borrowed heavily from the Holland film.</p><p>A year after his father\'s tragic death in a horrific opening-scene car accident, sullen Kale (Shia LaBeouf) punches his Spanish teacher (one might argue that the teacher deserved it, but it\'s probably not a good idea to act on these impulses) and is sentenced to house arrest. He can\'t go farther than 100 feet from the kitchen, where the transmitter is located, and after his mom (Carrie-Anne Moss, looking sad to be so far from Trinity) cuts off his Xbox and iTunes accounts, his world is as constrained as James Stewart\'s was in <i>Rear Window</i>. But he\'s got the advantage of living in the early 21st century, so he has dozens of technological gewgaws that help him spy on his neighbors, including videocameras with night-vision lenses and fancy binoculars. One neighbor cheats on his wife with the maid; a trio of preadolescents play ding-dong-ditch and watch porn when their mom isn\'t around; his pretty new neighbor Ashley (Sarah Roemer) undresses with the lights on and her shades up; and his quiet neighbor Turner (David Morse) just might be a serial killer. Of course, nobody will believe him, so Kale, his annoying sidekick Ronnie (Aaron Yoo), and Ashley decide to do some investigating of their own, eventually establishing that Turner is not just a serial killer, he\'s a serial killer who knows they\'ve been watching. Cue the Bernard Hermann-influenced horror-movie music.</p><p>A lot of the film\'s success is due to Shia LaBeouf, who used to be a potentially great actor. He\'s got loads of affable, stammery charm, which director D.J. Caruso smartly lets him display; he\'s best in a scene where he has to explain to Ashley that his pseudo-stalking behavior is in fact charming and kiss-worthy, a point she acknowledges when she observes that he\'s either incredibly sweet or incredibly creepy (but why can\'t he be both?). If there\'s one thing he can\'t sell, it\'s the MO: he\'s supposed to turn to voyeurism out of desperated boredom, but he seems too well-adjusted to convince us. Thankfully the film mostly eschews clunky psychological motivations. The cast\'s biggest letdown is David Morse as Turner, the friendly neighborhood serial killer. Maybe it\'s because I was stuck on the <i>Fright Night</i> comparisons, but he just didn\'t bring the necessary levels of charm and dangerous attractiveness. Because I was comparing him to Chris Sarandon, who was never again as good as he was as the bisexual vampire Jerry Dandridge, Morse just wasn\'t convincing. He\'s imposing, yes, and he manages to ramp up the creepiness during the scene when he obliquely threatens Ashley, but for the most part he\'s just a stock baddie, his menace depending on the ominous soundtrack more than on anything in him.</p><p>Let me expound on my <i>Fright Night</i> theory. Both main characters have an annoying sidekick and a pretty girlfriend who\'s menaced by the bad guy. The murderer is a serial killer whom the protagonist links to a series of disappearances. There\'s a scene where the sidekick pretends to be dead to frighten the main character; later, the sidekick is the first one of the trio the bad guy attacks. There\'s an ominous visit by the murderer to flirt with the main character\'s mother; the dialogue even sounded the same, although it\'s been a while since I saw <i>Fright Night</i>. The protagonist\'s concrete proof comes as an unwelcome interruption to a makeout session with his girlfriend. Maybe I should make a table comparing the influences. Maybe you should run out and rent the film.</p><p>Cinematic progenitors aside, <i>Disturbia</i> is a smart, efficient little thriller that wears its heredity proudly; I was especially charmed by Geoff Zanelli\'s score, which inserts clever shades of Bernard Hermann compositions into the scary scenes—I couldn\'t identify specific influences, but the <i>feel</i> was spot-on. The film fades a bit toward the end into overly excitable horror-movie tropes and an emphasis on gore that was absent during the rest of the film, and Morse proves unable to rise above the inexorable laws of cinema that force him to stalk around, stonefaced, with a butcher knife. Still, for most of its running time it was a solid entry in the genre.</p>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Disturbia (2007)','','publish','closed','closed','','disturbia-2007','','','2019-08-03 21:28:22','2019-08-03 21:28:22','',0,'http://itcamefrombeyondpulp.com/?p=394',0,'post','',0),(304,1,'2019-07-26 14:34:33','2019-07-26 14:34:33','[et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" custom_padding=\"0px|||||\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" custom_margin=\"||11px|||\" next_background_color=\"#000000\" global_module=\"74\"][et_pb_row global_parent=\"74\" custom_padding=\"0px||0px|||\" custom_margin=\"|auto|-66px|auto||\" _builder_version=\"3.26.3\"][et_pb_column type=\"4_4\" global_parent=\"74\" _builder_version=\"3.26.3\"][et_pb_image global_parent=\"74\" src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/header.jpg\" url=\"http://itcamefrombeyondpulp.com\" _builder_version=\"3.26.3\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.26.3\" width=\"1080px\" width_tablet=\"100%\" width_last_edited=\"on|phone\" module_alignment=\"center\" inner_module_alignment=\"center\" custom_padding=\"0px||0px||false|false\" z_index_tablet=\"500\" hover_enabled=\"0\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" global_module=\"175\" prev_background_color=\"#000000\" next_background_color=\"#e02b20\"][et_pb_fullwidth_menu global_parent=\"175\" menu_id=\"2\" submenu_direction=\"downwards\" fullwidth_menu=\"off\" dropdown_menu_text_color=\"#ffffff\" _builder_version=\"3.26.3\" menu_font=\"|800||on|||||\" menu_text_color=\"#ffffff\" menu_font_size=\"22px\" menu_letter_spacing=\"5px\" background_color=\"#e02b20\" border_width_bottom=\"5px\" text_orientation=\"center\" background_layout=\"dark\" custom_margin=\"0px||||false|false\" custom_padding=\"1px||0px||false|false\" z_index_tablet=\"500\" menu_text_shadow_horizontal_length_tablet=\"0px\" menu_text_shadow_vertical_length_tablet=\"0px\" menu_text_shadow_blur_strength_tablet=\"1px\" border_width_bottom_tablet=\"5px\" border_width_bottom_phone=\"5px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" /][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" background_color=\"#e02b20\" width=\"1080px\" module_alignment=\"center\" custom_padding=\"10px||0px|||\" prev_background_color=\"#ffffff\"][et_pb_row _builder_version=\"3.26.3\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" background_color=\"#ffffff\" custom_padding=\"10px|10px||10px|false|false\" border_width_bottom=\"5px\" border_color_bottom=\"#e02b20\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image _builder_version=\"3.26.3\" src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/colin.jpg\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\" /][et_pb_text _builder_version=\"3.26.3\" z_index_tablet=\"500\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" text_text_shadow_horizontal_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_vertical_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_blur_strength=\"text_text_shadow_style,%91object Object%93\" link_text_shadow_horizontal_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_vertical_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_blur_strength=\"link_text_shadow_style,%91object Object%93\" ul_text_shadow_horizontal_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_vertical_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_blur_strength=\"ul_text_shadow_style,%91object Object%93\" ol_text_shadow_horizontal_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_vertical_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_blur_strength=\"ol_text_shadow_style,%91object Object%93\" quote_text_shadow_horizontal_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_vertical_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_blur_strength=\"quote_text_shadow_style,%91object Object%93\" header_text_shadow_horizontal_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_vertical_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_blur_strength=\"header_text_shadow_style,%91object Object%93\" header_2_text_shadow_horizontal_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_vertical_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_blur_strength=\"header_2_text_shadow_style,%91object Object%93\" header_3_text_shadow_horizontal_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_vertical_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_blur_strength=\"header_3_text_shadow_style,%91object Object%93\" header_4_text_shadow_horizontal_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_vertical_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_blur_strength=\"header_4_text_shadow_style,%91object Object%93\" header_5_text_shadow_horizontal_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_vertical_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_blur_strength=\"header_5_text_shadow_style,%91object Object%93\" header_6_text_shadow_horizontal_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_vertical_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_blur_strength=\"header_6_text_shadow_style,%91object Object%93\"]\r\n\r\n<h3 style=\"text-align: center;\"><strong><em>Colin</em> (Marc Price, 2008, 97 min.)</strong></h3><p>Struggling filmmaker manages to create a wildly popular, word-of-mouth triumph using only his ingenuity, his friends\' willingness to help for nothing, and about $75 for food and tea. It\'s a great story, even if it\'s mostly fiction—even if we factor in the in-kind donations, you also have to consider tape cost, etc. But that doesn\'t really matter: that\'s just the hook to get you in the door. The real question is whether the film manages to be any good, either because of or in spite of its micro-budget. The answer is, sort of.</p><p>It certainly has an interesting premise, a zombie\'s-eye view of becoming and being a zombie... mostly. We meet Colin (Alastair Kirton) as he enters an apartment, looking for a friend who quickly appears, zombified, and tries to eat our hero. After a thrilling closed-space battle in the kitchen, Colin wins, but then we realize that he\'s been bitten. It\'s zombie time for Colin, and we accompany him on his shambolic way (once he manages to escape the house) as he tries to make it in the big, cruel, competitive zombie world.</p><p>The film works best when it flirts with comedy: Colin\'s inability to work a door handle, his clumsiness, his basic suckiness at feeding off fleet-footed humans, and the idea of a couple of chavs robbing zombies for their tennis shoes. It\'s acceptable when it\'s providing gruesome gut-munching setpieces—leftover makeup and improvised effects, according to the press kit. But too much of the film is occupied by tiresome lurching and moaning, as we follow Colin on his perambulations. A plot inserts itself when Colin is captured by a girl who turns out to be his sister (Daisy Aitkens); she\'s determined to reawaken her beloved brother\'s memory, or at least his conscience, but we know that\'s impossible (or is it?), and other films and books (the superb comic series <i>The Walking Dead</i>, for example) have dealt with familial grief to better effect.</p><p>There are unnecessary subplots that do little but pad the running time and the body count, such as an ill-fated attempt by some random strangers to make a documentary about the undead (you can imagine how that turns out) and a completely inexplicable setpiece that apparently details a sadistic guy who traps girls in his basement, blinds them, and then lets the zombies get at them (although I might have the order mixed up). These sequences only serve to raise more questions than they answer, such as \"why do we care about these people, as our narrator-zombie Colin is nowhere to be found?\" and \"Would it have killed the filmmakers to use some freaking lights?\"</p><p>This is not a slam on the field of ultra-low-budget filmmaking, as I\'m a dabbler in that myself. Instead, it\'s a slam on cinematic laziness: as I\'ve said elsewhere, just because you don\'t have to use lights doesn\'t mean you shouldn\'t, and just because you can do everything handheld doesn\'t mean you should. The former, I suppose, is excused a bit by the premise: we\'re seeing things basically from Colin\'s point of view, even if it\'s not strictly second-person, and if the picture is muddy, washed out, and generally indecipherable, well, that\'s a zombie for you. Still, come on: plug in a lamp. The latter, however, is inexcusable: much better to turn on the stabilizer and achieve somewhat smoother movements, because these zombies aren\'t exactly moving fast. I think the distracting shaky-cam effects have more to do with other recent zombie movies than with the needs of the story.</p><p>The entire project feels like a decent short film blown up to feature length. At one point it comes to an absolutely perfect ending, one that would go a long way toward excusing some of the weaknesses early on—and then it continues for at least fifteen more minutes. Yes, it answers some questions, and it develops one of the plot points raised earlier, but it deprives the film of a truly memorable ending, and of a place in the zombie-movie canon. A place, that is, that has nothing to do with how much it ostensibly cost to make.</p>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Colin (2008)','','publish','closed','closed','','colin-2008','','','2019-07-26 14:34:33','2019-07-26 14:34:33','',0,'http://itcamefrombeyondpulp.com/?p=304',0,'post','',0),(308,1,'2019-07-26 14:38:07','2019-07-26 14:38:07','[et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" custom_padding=\"0px|||||\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" custom_margin=\"||11px|||\" next_background_color=\"#000000\" global_module=\"74\"][et_pb_row global_parent=\"74\" custom_padding=\"0px||0px|||\" custom_margin=\"|auto|-66px|auto||\" _builder_version=\"3.26.3\"][et_pb_column type=\"4_4\" global_parent=\"74\" _builder_version=\"3.26.3\"][et_pb_image global_parent=\"74\" src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/header.jpg\" url=\"http://itcamefrombeyondpulp.com\" _builder_version=\"3.26.3\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.26.3\" width=\"1080px\" width_tablet=\"100%\" width_last_edited=\"on|phone\" module_alignment=\"center\" inner_module_alignment=\"center\" custom_padding=\"0px||0px||false|false\" z_index_tablet=\"500\" hover_enabled=\"0\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" prev_background_color=\"#000000\" next_background_color=\"#e02b20\" global_module=\"175\"][et_pb_fullwidth_menu global_parent=\"175\" menu_id=\"2\" submenu_direction=\"downwards\" fullwidth_menu=\"off\" dropdown_menu_text_color=\"#ffffff\" _builder_version=\"3.26.3\" menu_font=\"|800||on|||||\" menu_text_color=\"#ffffff\" menu_font_size=\"22px\" menu_letter_spacing=\"5px\" background_color=\"#e02b20\" border_width_bottom=\"5px\" text_orientation=\"center\" background_layout=\"dark\" custom_margin=\"0px||||false|false\" custom_padding=\"1px||0px||false|false\" z_index_tablet=\"500\" menu_text_shadow_horizontal_length_tablet=\"0px\" menu_text_shadow_vertical_length_tablet=\"0px\" menu_text_shadow_blur_strength_tablet=\"1px\" border_width_bottom_tablet=\"5px\" border_width_bottom_phone=\"5px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" /][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" background_color=\"#e02b20\" width=\"1080px\" module_alignment=\"center\" custom_padding=\"10px||0px|||\" prev_background_color=\"#ffffff\"][et_pb_row _builder_version=\"3.26.3\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" background_color=\"#ffffff\" custom_padding=\"10px|10px||10px|false|false\" border_width_bottom=\"5px\" border_color_bottom=\"#e02b20\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image _builder_version=\"3.26.3\" src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/colin.jpg\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\" /][et_pb_text _builder_version=\"3.26.3\" z_index_tablet=\"500\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" text_text_shadow_horizontal_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_vertical_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_blur_strength=\"text_text_shadow_style,%91object Object%93\" link_text_shadow_horizontal_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_vertical_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_blur_strength=\"link_text_shadow_style,%91object Object%93\" ul_text_shadow_horizontal_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_vertical_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_blur_strength=\"ul_text_shadow_style,%91object Object%93\" ol_text_shadow_horizontal_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_vertical_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_blur_strength=\"ol_text_shadow_style,%91object Object%93\" quote_text_shadow_horizontal_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_vertical_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_blur_strength=\"quote_text_shadow_style,%91object Object%93\" header_text_shadow_horizontal_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_vertical_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_blur_strength=\"header_text_shadow_style,%91object Object%93\" header_2_text_shadow_horizontal_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_vertical_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_blur_strength=\"header_2_text_shadow_style,%91object Object%93\" header_3_text_shadow_horizontal_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_vertical_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_blur_strength=\"header_3_text_shadow_style,%91object Object%93\" header_4_text_shadow_horizontal_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_vertical_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_blur_strength=\"header_4_text_shadow_style,%91object Object%93\" header_5_text_shadow_horizontal_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_vertical_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_blur_strength=\"header_5_text_shadow_style,%91object Object%93\" header_6_text_shadow_horizontal_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_vertical_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_blur_strength=\"header_6_text_shadow_style,%91object Object%93\"]\n\n<h3 style=\"text-align: center;\"><strong><em>Colin</em> (Marc Price, 2008, 97 min.)</strong></h3>\n<p>Struggling filmmaker manages to create a wildly popular, word-of-mouth triumph using only his ingenuity, his friends\' willingness to help for nothing, and about $75 for food and tea. It\'s a great story, even if it\'s mostly fiction—even if we factor in the in-kind donations, you also have to consider tape cost, etc. But that doesn\'t really matter: that\'s just the hook to get you in the door. The real question is whether the film manages to be any good, either because of or in spite of its micro-budget. The answer is, sort of.</p>\n<p>It certainly has an interesting premise, a zombie\'s-eye view of becoming and being a zombie... mostly. We meet Colin (Alastair Kirton) as he enters an apartment, looking for a friend who quickly appears, zombified, and tries to eat our hero. After a thrilling closed-space battle in the kitchen, Colin wins, but then we realize that he\'s been bitten. It\'s zombie time for Colin, and we accompany him on his shambolic way (once he manages to escape the house) as he tries to make it in the big, cruel, competitive zombie world.</p>\n<p>The film works best when it flirts with comedy: Colin\'s inability to work a door handle, his clumsiness, his basic suckiness at feeding off fleet-footed humans, and the idea of a couple of chavs robbing zombies for their tennis shoes. It\'s acceptable when it\'s providing gruesome gut-munching setpieces—leftover makeup and improvised effects, according to the press kit. But too much of the film is occupied by tiresome lurching and moaning, as we follow Colin on his perambulations. A plot inserts itself when Colin is captured by a girl who turns out to be his sister (Daisy Aitkens); she\'s determined to reawaken her beloved brother\'s memory, or at least his conscience, but we know that\'s impossible (or is it?), and other films and books (the superb comic series <i>The Walking Dead</i>, for example) have dealt with familial grief to better effect.</p>\n<p>There are unnecessary subplots that do little but pad the running time and the body count, such as an ill-fated attempt by some random strangers to make a documentary about the undead (you can imagine how that turns out) and a completely inexplicable setpiece that apparently details a sadistic guy who traps girls in his basement, blinds them, and then lets the zombies get at them (although I might have the order mixed up). These sequences only serve to raise more questions than they answer, such as \"why do we care about these people, as our narrator-zombie Colin is nowhere to be found?\" and \"Would it have killed the filmmakers to use some freaking lights?\"</p>\n<p>This is not a slam on the field of ultra-low-budget filmmaking, as I\'m a dabbler in that myself. Instead, it\'s a slam on cinematic laziness: as I\'ve said elsewhere, just because you don\'t have to use lights doesn\'t mean you shouldn\'t, and just because you can do everything handheld doesn\'t mean you should. The former, I suppose, is excused a bit by the premise: we\'re seeing things basically from Colin\'s point of view, even if it\'s not strictly second-person, and if the picture is muddy, washed out, and generally indecipherable, well, that\'s a zombie for you. Still, come on: plug in a lamp. The latter, however, is inexcusable: much better to turn on the stabilizer and achieve somewhat smoother movements, because these zombies aren\'t exactly moving fast. I think the distracting shaky-cam effects have more to do with other recent zombie movies than with the needs of the story.</p>\n<p>The entire project feels like a decent short film blown up to feature length. At one point it comes to an absolutely perfect ending, one that would go a long way toward excusing some of the weaknesses early on—and then it continues for at least fifteen more minutes. Yes, it answers some questions, and it develops one of the plot points raised earlier, but it deprives the film of a truly memorable ending, and of a place in the zombie-movie canon. A place, that is, that has nothing to do with how much it ostensibly cost to make.</p>\n\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Colin (2008)','','inherit','closed','closed','','304-autosave-v1','','','2019-07-26 14:38:07','2019-07-26 14:38:07','',304,'http://itcamefrombeyondpulp.com/uncategorized/304-autosave-v1/',0,'revision','',0),(309,1,'2019-07-26 14:41:16','2019-07-26 14:41:16','[et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" custom_padding=\"0px|||||\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" custom_margin=\"||11px|||\" next_background_color=\"#000000\" global_module=\"74\"][et_pb_row global_parent=\"74\" custom_padding=\"0px||0px|||\" custom_margin=\"|auto|-66px|auto||\" _builder_version=\"3.26.3\"][et_pb_column type=\"4_4\" global_parent=\"74\" _builder_version=\"3.26.3\"][et_pb_image global_parent=\"74\" src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/header.jpg\" url=\"http://itcamefrombeyondpulp.com\" _builder_version=\"3.26.3\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.26.3\" width=\"1080px\" width_tablet=\"100%\" width_last_edited=\"on|phone\" module_alignment=\"center\" inner_module_alignment=\"center\" custom_padding=\"0px||0px||false|false\" z_index_tablet=\"500\" hover_enabled=\"0\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" prev_background_color=\"#000000\" next_background_color=\"#e02b20\" global_module=\"175\"][et_pb_fullwidth_menu global_parent=\"175\" menu_id=\"2\" submenu_direction=\"downwards\" fullwidth_menu=\"off\" dropdown_menu_text_color=\"#ffffff\" _builder_version=\"3.26.3\" menu_font=\"|800||on|||||\" menu_text_color=\"#ffffff\" menu_font_size=\"22px\" menu_letter_spacing=\"5px\" background_color=\"#e02b20\" border_width_bottom=\"5px\" text_orientation=\"center\" background_layout=\"dark\" custom_margin=\"0px||||false|false\" custom_padding=\"1px||0px||false|false\" z_index_tablet=\"500\" menu_text_shadow_horizontal_length_tablet=\"0px\" menu_text_shadow_vertical_length_tablet=\"0px\" menu_text_shadow_blur_strength_tablet=\"1px\" border_width_bottom_tablet=\"5px\" border_width_bottom_phone=\"5px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" /][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" background_color=\"#e02b20\" width=\"1080px\" module_alignment=\"center\" custom_padding=\"10px||0px|||\" prev_background_color=\"#ffffff\"][et_pb_row _builder_version=\"3.26.3\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" background_color=\"#ffffff\" custom_padding=\"10px|10px||10px|false|false\" border_width_bottom=\"5px\" border_color_bottom=\"#e02b20\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image _builder_version=\"3.26.3\" src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/dark-water.jpg\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\" /][et_pb_text _builder_version=\"3.26.3\" z_index_tablet=\"500\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" text_text_shadow_horizontal_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_vertical_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_blur_strength=\"text_text_shadow_style,%91object Object%93\" link_text_shadow_horizontal_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_vertical_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_blur_strength=\"link_text_shadow_style,%91object Object%93\" ul_text_shadow_horizontal_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_vertical_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_blur_strength=\"ul_text_shadow_style,%91object Object%93\" ol_text_shadow_horizontal_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_vertical_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_blur_strength=\"ol_text_shadow_style,%91object Object%93\" quote_text_shadow_horizontal_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_vertical_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_blur_strength=\"quote_text_shadow_style,%91object Object%93\" header_text_shadow_horizontal_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_vertical_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_blur_strength=\"header_text_shadow_style,%91object Object%93\" header_2_text_shadow_horizontal_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_vertical_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_blur_strength=\"header_2_text_shadow_style,%91object Object%93\" header_3_text_shadow_horizontal_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_vertical_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_blur_strength=\"header_3_text_shadow_style,%91object Object%93\" header_4_text_shadow_horizontal_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_vertical_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_blur_strength=\"header_4_text_shadow_style,%91object Object%93\" header_5_text_shadow_horizontal_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_vertical_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_blur_strength=\"header_5_text_shadow_style,%91object Object%93\" header_6_text_shadow_horizontal_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_vertical_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_blur_strength=\"header_6_text_shadow_style,%91object Object%93\"]\r\n\r\n<h3 style=\"text-align: center;\"><strong><em>Dark Water</em> (Walter Salles, 2005, 105 min.)</strong></h3><p>Is there really such a place as Roosevelt Island in the real New York City, or is this a place created by the filmmakers? Here, it\'s a place where it rains all the time, except for when it\'s merely overcast; the buildings, constructed \"in the Brutalist style,\" as John C. Reilly helpfully explains, are all oppressive remnants of failed social-engineering schemes—the best intentions, gone to seed and slowly crumbling because everybody agrees that they were a bad idea. Dahlia (Jennifer Connelly), in the middle of a divorce from her husband (Dougray Scott), needs a cheap apartment in the city, and she and her daughter Ceci (Ariel Gade) have come to Roosevelt Island because the rent is cheap and the local school is good. \"It\'s not the city,\" young Ceci informs her mother, and an ordinarily taciturn New Yorker on the tram breaks the silent public-transportation covenant to agree with her.</p><p>\"It\'s yucky,\" says Ceci about the apartment building, and we agree with her. It\'s a dismal, impersonal building, poorly lit, and painted in that horror-movie/urban-angst palette somewhere between <em>Seven</em> and <em>Fight Club</em>. As the sleazy building manager, Mr. Murray, Reilly is a prototypical used car salesman: he promises patch-ups and explains obvious faults as bits of personality. In addition to the horror-taupe paint, the low ceilings, and the lack of illumination, the building features the scariest elevator this side of <em>Angel Heart</em>, a creepy handyman named Veeck who refuses to be handy (Pete Postlethwaite), and a nasty leak in one corner of what will be Ceci\'s bedroom. Ceci hates the place, and Dahlia isn\'t impressed either, but she changes her mind after Ceci finds a Hello Kitty backpack on the roof and decides she really likes it after all.</p><p>At first, the horrors seem run-of-the-mill. Dahlia is plagued by migraines, and they seem to occur more often in the new apartment. Of course, it doesn\'t help that her soon-to-be-ex sues her for custody of Ceci, claiming that Dahlia is unbalanced. At first, we don\'t believe him: she\'s a little vague, yes, and her frequent silences speak of a propensity for distraction, but she seems normal enough when she\'s interacting with Ceci. There are problems with the apartment that will make any city-dweller nostalgic: nobody seems to have the authority or the will to fix that leak in the ceiling, the neighbors upstairs are too noisy, and the elevator keeps wanting to take her to the floor above hers. The faucets spurt brackish water more often than not, and there are aggressively insolent teenagers about. Typical city living, until Ceci meets a new imaginary friend named Natasha, Dahlia learns that the people who lived upstairs disappeared, and Veeck\'s explanation that teenage vandals are causing the ever-increasing leak and noise seems less and less believable. Under pressure from her spiteful husband and an increasingly bizarre array of phenomena, Dahlia starts to lose her grip on herself.</p><p>Because it\'s not a festival of horrors, there\'s time for viewers to notice how well-made it is. Walter Salles, the director of such high-minded fare as <em>The Motorcycle Diaries</em> and <em>Central Station</em>, might seem to be an odd pick for a genre film, but he uses the genre well. The cinematography, by longtime Pedro Almodovar collaborator Affonso Beato, is Oscar-caliber, a beautiful and oppressive blend of light and shadow, murky colors and fuzzy edges. Rafael Yglesias\'s screenplay avoids the horror-movie-cliche overdose that scuttled the awful <em>The Ring</em>: this film seems stripped bare, to its essential parts, without a lot of unnecessary exposition. Perhaps he understood that he could entrust volumes of exposition to a single shot of Jennifer Connelly, who is riveting here, as she has been in everything she\'s appeared in since 2000, or even before. When did she become so good, and how did she sneak up on us like that? She\'s got all-star support, too: John C. Reilly, Pete Postlethwaite, and Tim Roth (as Dahlia\'s lawyer, who focuses on her case to avoid thinking about his own) are all perfect, and Ariel Gade is pretty darned good for a child actor. She doesn\'t seem like a miniaturized adult; she\'s not disturbingly precocious like, say, that distubing cherub Dakota Fanning.</p><p>The other main character, which Salles and Beato use brilliantly, is the building. The central storyline—basically, about a little girl whom everyone forgot—is externalized by the setting. The building in which the film takes place, and indeed the entirety of Roosevelt Island we\'re allowed to see, is part of 1970s urban renewal, and can be seen as a sort of favored child of the city planners, but now it\'s sitting, forgotten, rotting. Aerial views of the building confirm its isolation: it\'s in a huge E-shape with its back to the city, the courtyards facing inward, so residents see only other, similar buildings. Reilly grudgingly admits that the entire project was a failure of planning. Even the film\'s major surprise—when the discovery of the little girl\'s body doesn\'t appease the ghost; that is, doesn\'t solve the essential problem—finds a parallel in the modern city. In the 1990s and today, city planners, realizing that enormous high-rise housing projects were an utter failure, \"solved\" them by tearing the buildings down, burying the problem like one would bury a dead child. But it doesn\'t address the essential issues—the crime, the poverty, the hopelessness—and in the film, burying the body doesn\'t solve the basic issue, which is the abandonment. I haven\'t seen the original Japanese film of which this is a remake, but I wouldn\'t be surprised if the modernist architecture of the setting is a major factor.</p><p>Viewers familiar with Japanese horror films will not be too surprised that the combination of a single mom, brackish water, and little girls with long, dark hair turns out badly. There\'s a trend in films like this of the sins of past generations being visited on the current generation, but it\'s not really as easy as that: the vengeance, if you want to call it that, doesn\'t follow bloodlines, because anyone who happens to be present will do just fine. It doesn\'t always make sense, because it places a higher premium on dread than on logic. The film has to do a tricky balancing act: lacking major, grisly horrors, it has to build slowly, relishing its surprises as it increases the tension to the breaking point. If I have a major complaint about it, it\'s that the buildup is too mild, the payoff too slight—it\'s the stuff of slightly scary campfire stories, not of screams and nightmares.</p>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Dark Water (2005)','','publish','closed','closed','','dark-water-2005','','','2019-07-26 14:41:16','2019-07-26 14:41:16','',0,'http://itcamefrombeyondpulp.com/?p=309',0,'post','',0),(310,1,'2019-07-26 14:40:39','2019-07-26 14:40:39','','dark water','','inherit','closed','closed','','dark-water','','','2019-07-26 14:40:39','2019-07-26 14:40:39','',309,'http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/dark-water.jpg',0,'attachment','image/jpeg',0),(311,1,'2019-07-26 14:41:16','2019-07-26 14:41:16','[et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" custom_padding=\"0px|||||\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" custom_margin=\"||11px|||\" next_background_color=\"#000000\" global_module=\"74\"][et_pb_row global_parent=\"74\" custom_padding=\"0px||0px|||\" custom_margin=\"|auto|-66px|auto||\" _builder_version=\"3.26.3\"][et_pb_column type=\"4_4\" global_parent=\"74\" _builder_version=\"3.26.3\"][et_pb_image global_parent=\"74\" src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/header.jpg\" url=\"http://itcamefrombeyondpulp.com\" _builder_version=\"3.26.3\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.26.3\" width=\"1080px\" width_tablet=\"100%\" width_last_edited=\"on|phone\" module_alignment=\"center\" inner_module_alignment=\"center\" custom_padding=\"0px||0px||false|false\" z_index_tablet=\"500\" hover_enabled=\"0\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" prev_background_color=\"#000000\" next_background_color=\"#e02b20\" global_module=\"175\"][et_pb_fullwidth_menu global_parent=\"175\" menu_id=\"2\" submenu_direction=\"downwards\" fullwidth_menu=\"off\" dropdown_menu_text_color=\"#ffffff\" _builder_version=\"3.26.3\" menu_font=\"|800||on|||||\" menu_text_color=\"#ffffff\" menu_font_size=\"22px\" menu_letter_spacing=\"5px\" background_color=\"#e02b20\" border_width_bottom=\"5px\" text_orientation=\"center\" background_layout=\"dark\" custom_margin=\"0px||||false|false\" custom_padding=\"1px||0px||false|false\" z_index_tablet=\"500\" menu_text_shadow_horizontal_length_tablet=\"0px\" menu_text_shadow_vertical_length_tablet=\"0px\" menu_text_shadow_blur_strength_tablet=\"1px\" border_width_bottom_tablet=\"5px\" border_width_bottom_phone=\"5px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" /][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" background_color=\"#e02b20\" width=\"1080px\" module_alignment=\"center\" custom_padding=\"10px||0px|||\" prev_background_color=\"#ffffff\"][et_pb_row _builder_version=\"3.26.3\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" background_color=\"#ffffff\" custom_padding=\"10px|10px||10px|false|false\" border_width_bottom=\"5px\" border_color_bottom=\"#e02b20\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image _builder_version=\"3.26.3\" src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/dark-water.jpg\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\" /][et_pb_text _builder_version=\"3.26.3\" z_index_tablet=\"500\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" text_text_shadow_horizontal_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_vertical_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_blur_strength=\"text_text_shadow_style,%91object Object%93\" link_text_shadow_horizontal_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_vertical_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_blur_strength=\"link_text_shadow_style,%91object Object%93\" ul_text_shadow_horizontal_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_vertical_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_blur_strength=\"ul_text_shadow_style,%91object Object%93\" ol_text_shadow_horizontal_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_vertical_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_blur_strength=\"ol_text_shadow_style,%91object Object%93\" quote_text_shadow_horizontal_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_vertical_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_blur_strength=\"quote_text_shadow_style,%91object Object%93\" header_text_shadow_horizontal_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_vertical_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_blur_strength=\"header_text_shadow_style,%91object Object%93\" header_2_text_shadow_horizontal_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_vertical_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_blur_strength=\"header_2_text_shadow_style,%91object Object%93\" header_3_text_shadow_horizontal_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_vertical_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_blur_strength=\"header_3_text_shadow_style,%91object Object%93\" header_4_text_shadow_horizontal_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_vertical_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_blur_strength=\"header_4_text_shadow_style,%91object Object%93\" header_5_text_shadow_horizontal_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_vertical_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_blur_strength=\"header_5_text_shadow_style,%91object Object%93\" header_6_text_shadow_horizontal_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_vertical_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_blur_strength=\"header_6_text_shadow_style,%91object Object%93\"]\r\n\r\n<h3 style=\"text-align: center;\"><strong><em>Dark Water</em> (Walter Salles, 2005, 105 min.)</strong></h3><p>Is there really such a place as Roosevelt Island in the real New York City, or is this a place created by the filmmakers? Here, it\'s a place where it rains all the time, except for when it\'s merely overcast; the buildings, constructed \"in the Brutalist style,\" as John C. Reilly helpfully explains, are all oppressive remnants of failed social-engineering schemes—the best intentions, gone to seed and slowly crumbling because everybody agrees that they were a bad idea. Dahlia (Jennifer Connelly), in the middle of a divorce from her husband (Dougray Scott), needs a cheap apartment in the city, and she and her daughter Ceci (Ariel Gade) have come to Roosevelt Island because the rent is cheap and the local school is good. \"It\'s not the city,\" young Ceci informs her mother, and an ordinarily taciturn New Yorker on the tram breaks the silent public-transportation covenant to agree with her.</p><p>\"It\'s yucky,\" says Ceci about the apartment building, and we agree with her. It\'s a dismal, impersonal building, poorly lit, and painted in that horror-movie/urban-angst palette somewhere between <em>Seven</em> and <em>Fight Club</em>. As the sleazy building manager, Mr. Murray, Reilly is a prototypical used car salesman: he promises patch-ups and explains obvious faults as bits of personality. In addition to the horror-taupe paint, the low ceilings, and the lack of illumination, the building features the scariest elevator this side of <em>Angel Heart</em>, a creepy handyman named Veeck who refuses to be handy (Pete Postlethwaite), and a nasty leak in one corner of what will be Ceci\'s bedroom. Ceci hates the place, and Dahlia isn\'t impressed either, but she changes her mind after Ceci finds a Hello Kitty backpack on the roof and decides she really likes it after all.</p><p>At first, the horrors seem run-of-the-mill. Dahlia is plagued by migraines, and they seem to occur more often in the new apartment. Of course, it doesn\'t help that her soon-to-be-ex sues her for custody of Ceci, claiming that Dahlia is unbalanced. At first, we don\'t believe him: she\'s a little vague, yes, and her frequent silences speak of a propensity for distraction, but she seems normal enough when she\'s interacting with Ceci. There are problems with the apartment that will make any city-dweller nostalgic: nobody seems to have the authority or the will to fix that leak in the ceiling, the neighbors upstairs are too noisy, and the elevator keeps wanting to take her to the floor above hers. The faucets spurt brackish water more often than not, and there are aggressively insolent teenagers about. Typical city living, until Ceci meets a new imaginary friend named Natasha, Dahlia learns that the people who lived upstairs disappeared, and Veeck\'s explanation that teenage vandals are causing the ever-increasing leak and noise seems less and less believable. Under pressure from her spiteful husband and an increasingly bizarre array of phenomena, Dahlia starts to lose her grip on herself.</p><p>Because it\'s not a festival of horrors, there\'s time for viewers to notice how well-made it is. Walter Salles, the director of such high-minded fare as <em>The Motorcycle Diaries</em> and <em>Central Station</em>, might seem to be an odd pick for a genre film, but he uses the genre well. The cinematography, by longtime Pedro Almodovar collaborator Affonso Beato, is Oscar-caliber, a beautiful and oppressive blend of light and shadow, murky colors and fuzzy edges. Rafael Yglesias\'s screenplay avoids the horror-movie-cliche overdose that scuttled the awful <em>The Ring</em>: this film seems stripped bare, to its essential parts, without a lot of unnecessary exposition. Perhaps he understood that he could entrust volumes of exposition to a single shot of Jennifer Connelly, who is riveting here, as she has been in everything she\'s appeared in since 2000, or even before. When did she become so good, and how did she sneak up on us like that? She\'s got all-star support, too: John C. Reilly, Pete Postlethwaite, and Tim Roth (as Dahlia\'s lawyer, who focuses on her case to avoid thinking about his own) are all perfect, and Ariel Gade is pretty darned good for a child actor. She doesn\'t seem like a miniaturized adult; she\'s not disturbingly precocious like, say, that distubing cherub Dakota Fanning.</p><p>The other main character, which Salles and Beato use brilliantly, is the building. The central storyline—basically, about a little girl whom everyone forgot—is externalized by the setting. The building in which the film takes place, and indeed the entirety of Roosevelt Island we\'re allowed to see, is part of 1970s urban renewal, and can be seen as a sort of favored child of the city planners, but now it\'s sitting, forgotten, rotting. Aerial views of the building confirm its isolation: it\'s in a huge E-shape with its back to the city, the courtyards facing inward, so residents see only other, similar buildings. Reilly grudgingly admits that the entire project was a failure of planning. Even the film\'s major surprise—when the discovery of the little girl\'s body doesn\'t appease the ghost; that is, doesn\'t solve the essential problem—finds a parallel in the modern city. In the 1990s and today, city planners, realizing that enormous high-rise housing projects were an utter failure, \"solved\" them by tearing the buildings down, burying the problem like one would bury a dead child. But it doesn\'t address the essential issues—the crime, the poverty, the hopelessness—and in the film, burying the body doesn\'t solve the basic issue, which is the abandonment. I haven\'t seen the original Japanese film of which this is a remake, but I wouldn\'t be surprised if the modernist architecture of the setting is a major factor.</p><p>Viewers familiar with Japanese horror films will not be too surprised that the combination of a single mom, brackish water, and little girls with long, dark hair turns out badly. There\'s a trend in films like this of the sins of past generations being visited on the current generation, but it\'s not really as easy as that: the vengeance, if you want to call it that, doesn\'t follow bloodlines, because anyone who happens to be present will do just fine. It doesn\'t always make sense, because it places a higher premium on dread than on logic. The film has to do a tricky balancing act: lacking major, grisly horrors, it has to build slowly, relishing its surprises as it increases the tension to the breaking point. If I have a major complaint about it, it\'s that the buildup is too mild, the payoff too slight—it\'s the stuff of slightly scary campfire stories, not of screams and nightmares.</p>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Dark Water (2005)','','inherit','closed','closed','','309-revision-v1','','','2019-07-26 14:41:16','2019-07-26 14:41:16','',309,'http://itcamefrombeyondpulp.com/uncategorized/309-revision-v1/',0,'revision','',0),(312,1,'2019-07-26 14:41:42','2019-07-26 14:41:42','[et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" custom_padding=\"0px|||||\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" custom_margin=\"||11px|||\" next_background_color=\"#000000\" global_module=\"74\"][et_pb_row global_parent=\"74\" custom_padding=\"0px||0px|||\" custom_margin=\"|auto|-66px|auto||\" _builder_version=\"3.26.3\"][et_pb_column type=\"4_4\" global_parent=\"74\" _builder_version=\"3.26.3\"][et_pb_image global_parent=\"74\" src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/header.jpg\" url=\"http://itcamefrombeyondpulp.com\" _builder_version=\"3.26.3\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.26.3\" width=\"1080px\" width_tablet=\"100%\" width_last_edited=\"on|phone\" module_alignment=\"center\" inner_module_alignment=\"center\" custom_padding=\"0px||0px||false|false\" z_index_tablet=\"500\" hover_enabled=\"0\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" prev_background_color=\"#000000\" next_background_color=\"#e02b20\" global_module=\"175\"][et_pb_fullwidth_menu global_parent=\"175\" menu_id=\"2\" submenu_direction=\"downwards\" fullwidth_menu=\"off\" dropdown_menu_text_color=\"#ffffff\" _builder_version=\"3.26.3\" menu_font=\"|800||on|||||\" menu_text_color=\"#ffffff\" menu_font_size=\"22px\" menu_letter_spacing=\"5px\" background_color=\"#e02b20\" border_width_bottom=\"5px\" text_orientation=\"center\" background_layout=\"dark\" custom_margin=\"0px||||false|false\" custom_padding=\"1px||0px||false|false\" z_index_tablet=\"500\" menu_text_shadow_horizontal_length_tablet=\"0px\" menu_text_shadow_vertical_length_tablet=\"0px\" menu_text_shadow_blur_strength_tablet=\"1px\" border_width_bottom_tablet=\"5px\" border_width_bottom_phone=\"5px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" /][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" background_color=\"#e02b20\" width=\"1080px\" module_alignment=\"center\" custom_padding=\"10px||0px|||\" prev_background_color=\"#ffffff\"][et_pb_row _builder_version=\"3.26.3\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" background_color=\"#ffffff\" custom_padding=\"10px|10px||10px|false|false\" border_width_bottom=\"5px\" border_color_bottom=\"#e02b20\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image _builder_version=\"3.26.3\" src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/dark-water.jpg\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\" /][et_pb_text _builder_version=\"3.26.3\" z_index_tablet=\"500\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" text_text_shadow_horizontal_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_vertical_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_blur_strength=\"text_text_shadow_style,%91object Object%93\" link_text_shadow_horizontal_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_vertical_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_blur_strength=\"link_text_shadow_style,%91object Object%93\" ul_text_shadow_horizontal_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_vertical_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_blur_strength=\"ul_text_shadow_style,%91object Object%93\" ol_text_shadow_horizontal_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_vertical_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_blur_strength=\"ol_text_shadow_style,%91object Object%93\" quote_text_shadow_horizontal_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_vertical_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_blur_strength=\"quote_text_shadow_style,%91object Object%93\" header_text_shadow_horizontal_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_vertical_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_blur_strength=\"header_text_shadow_style,%91object Object%93\" header_2_text_shadow_horizontal_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_vertical_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_blur_strength=\"header_2_text_shadow_style,%91object Object%93\" header_3_text_shadow_horizontal_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_vertical_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_blur_strength=\"header_3_text_shadow_style,%91object Object%93\" header_4_text_shadow_horizontal_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_vertical_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_blur_strength=\"header_4_text_shadow_style,%91object Object%93\" header_5_text_shadow_horizontal_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_vertical_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_blur_strength=\"header_5_text_shadow_style,%91object Object%93\" header_6_text_shadow_horizontal_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_vertical_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_blur_strength=\"header_6_text_shadow_style,%91object Object%93\"]\n\n<h3 style=\"text-align: center;\"><strong><em>Dark Water</em> (Walter Salles, 2005, 105 min.)</strong></h3>\n<p>Is there really such a place as Roosevelt Island in the real New York City, or is this a place created by the filmmakers? Here, it\'s a place where it rains all the time, except for when it\'s merely overcast; the buildings, constructed \"in the Brutalist style,\" as John C. Reilly helpfully explains, are all oppressive remnants of failed social-engineering schemes—the best intentions, gone to seed and slowly crumbling because everybody agrees that they were a bad idea. Dahlia (Jennifer Connelly), in the middle of a divorce from her husband (Dougray Scott), needs a cheap apartment in the city, and she and her daughter Ceci (Ariel Gade) have come to Roosevelt Island because the rent is cheap and the local school is good. \"It\'s not the city,\" young Ceci informs her mother, and an ordinarily taciturn New Yorker on the tram breaks the silent public-transportation covenant to agree with her.</p>\n<p>\"It\'s yucky,\" says Ceci about the apartment building, and we agree with her. It\'s a dismal, impersonal building, poorly lit, and painted in that horror-movie/urban-angst palette somewhere between <em>Seven</em> and <em>Fight Club</em>. As the sleazy building manager, Mr. Murray, Reilly is a prototypical used car salesman: he promises patch-ups and explains obvious faults as bits of personality. In addition to the horror-taupe paint, the low ceilings, and the lack of illumination, the building features the scariest elevator this side of <em>Angel Heart</em>, a creepy handyman named Veeck who refuses to be handy (Pete Postlethwaite), and a nasty leak in one corner of what will be Ceci\'s bedroom. Ceci hates the place, and Dahlia isn\'t impressed either, but she changes her mind after Ceci finds a Hello Kitty backpack on the roof and decides she really likes it after all.</p>\n<p>At first, the horrors seem run-of-the-mill. Dahlia is plagued by migraines, and they seem to occur more often in the new apartment. Of course, it doesn\'t help that her soon-to-be-ex sues her for custody of Ceci, claiming that Dahlia is unbalanced. At first, we don\'t believe him: she\'s a little vague, yes, and her frequent silences speak of a propensity for distraction, but she seems normal enough when she\'s interacting with Ceci. There are problems with the apartment that will make any city-dweller nostalgic: nobody seems to have the authority or the will to fix that leak in the ceiling, the neighbors upstairs are too noisy, and the elevator keeps wanting to take her to the floor above hers. The faucets spurt brackish water more often than not, and there are aggressively insolent teenagers about. Typical city living, until Ceci meets a new imaginary friend named Natasha, Dahlia learns that the people who lived upstairs disappeared, and Veeck\'s explanation that teenage vandals are causing the ever-increasing leak and noise seems less and less believable. Under pressure from her spiteful husband and an increasingly bizarre array of phenomena, Dahlia starts to lose her grip on herself.</p>\n<p>Because it\'s not a festival of horrors, there\'s time for viewers to notice how well-made it is. Walter Salles, the director of such high-minded fare as <em>The Motorcycle Diaries</em> and <em>Central Station</em>, might seem to be an odd pick for a genre film, but he uses the genre well. The cinematography, by longtime Pedro Almodovar collaborator Affonso Beato, is Oscar-caliber, a beautiful and oppressive blend of light and shadow, murky colors and fuzzy edges. Rafael Yglesias\'s screenplay avoids the horror-movie-cliche overdose that scuttled the awful <em>The Ring</em>: this film seems stripped bare, to its essential parts, without a lot of unnecessary exposition. Perhaps he understood that he could entrust volumes of exposition to a single shot of Jennifer Connelly, who is riveting here, as she has been in everything she\'s appeared in since 2000, or even before. When did she become so good, and how did she sneak up on us like that? She\'s got all-star support, too: John C. Reilly, Pete Postlethwaite, and Tim Roth (as Dahlia\'s lawyer, who focuses on her case to avoid thinking about his own) are all perfect, and Ariel Gade is pretty darned good for a child actor. She doesn\'t seem like a miniaturized adult; she\'s not disturbingly precocious like, say, that distubing cherub Dakota Fanning.</p>\n<p>The other main character, which Salles and Beato use brilliantly, is the building. The central storyline—basically, about a little girl whom everyone forgot—is externalized by the setting. The building in which the film takes place, and indeed the entirety of Roosevelt Island we\'re allowed to see, is part of 1970s urban renewal, and can be seen as a sort of favored child of the city planners, but now it\'s sitting, forgotten, rotting. Aerial views of the building confirm its isolation: it\'s in a huge E-shape with its back to the city, the courtyards facing inward, so residents see only other, similar buildings. Reilly grudgingly admits that the entire project was a failure of planning. Even the film\'s major surprise—when the discovery of the little girl\'s body doesn\'t appease the ghost; that is, doesn\'t solve the essential problem—finds a parallel in the modern city. In the 1990s and today, city planners, realizing that enormous high-rise housing projects were an utter failure, \"solved\" them by tearing the buildings down, burying the problem like one would bury a dead child. But it doesn\'t address the essential issues—the crime, the poverty, the hopelessness—and in the film, burying the body doesn\'t solve the basic issue, which is the abandonment. I haven\'t seen the original Japanese film of which this is a remake, but I wouldn\'t be surprised if the modernist architecture of the setting is a major factor.</p>\n<p>Viewers familiar with Japanese horror films will not be too surprised that the combination of a single mom, brackish water, and little girls with long, dark hair turns out badly. There\'s a trend in films like this of the sins of past generations being visited on the current generation, but it\'s not really as easy as that: the vengeance, if you want to call it that, doesn\'t follow bloodlines, because anyone who happens to be present will do just fine. It doesn\'t always make sense, because it places a higher premium on dread than on logic. The film has to do a tricky balancing act: lacking major, grisly horrors, it has to build slowly, relishing its surprises as it increases the tension to the breaking point. If I have a major complaint about it, it\'s that the buildup is too mild, the payoff too slight—it\'s the stuff of slightly scary campfire stories, not of screams and nightmares.</p>\n\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Dark Water (2005)','','inherit','closed','closed','','309-autosave-v1','','','2019-07-26 14:41:42','2019-07-26 14:41:42','',309,'http://itcamefrombeyondpulp.com/uncategorized/309-autosave-v1/',0,'revision','',0),(313,1,'2019-07-26 14:47:16','2019-07-26 14:47:16','[et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" custom_padding=\"0px|||||\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" custom_margin=\"||11px|||\" next_background_color=\"#000000\" global_module=\"74\"][et_pb_row global_parent=\"74\" custom_padding=\"0px||0px|||\" custom_margin=\"|auto|-66px|auto||\" _builder_version=\"3.26.3\"][et_pb_column type=\"4_4\" global_parent=\"74\" _builder_version=\"3.26.3\"][et_pb_image global_parent=\"74\" src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/header.jpg\" url=\"http://itcamefrombeyondpulp.com\" _builder_version=\"3.26.3\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.26.3\" width=\"1080px\" width_tablet=\"100%\" width_last_edited=\"on|phone\" module_alignment=\"center\" inner_module_alignment=\"center\" custom_padding=\"0px||0px||false|false\" z_index_tablet=\"500\" hover_enabled=\"0\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" prev_background_color=\"#000000\" next_background_color=\"#e02b20\" global_module=\"175\"][et_pb_fullwidth_menu global_parent=\"175\" menu_id=\"2\" submenu_direction=\"downwards\" fullwidth_menu=\"off\" dropdown_menu_text_color=\"#ffffff\" _builder_version=\"3.26.3\" menu_font=\"|800||on|||||\" menu_text_color=\"#ffffff\" menu_font_size=\"22px\" menu_letter_spacing=\"5px\" background_color=\"#e02b20\" border_width_bottom=\"5px\" text_orientation=\"center\" background_layout=\"dark\" custom_margin=\"0px||||false|false\" custom_padding=\"1px||0px||false|false\" z_index_tablet=\"500\" menu_text_shadow_horizontal_length_tablet=\"0px\" menu_text_shadow_vertical_length_tablet=\"0px\" menu_text_shadow_blur_strength_tablet=\"1px\" border_width_bottom_tablet=\"5px\" border_width_bottom_phone=\"5px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" /][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" background_color=\"#e02b20\" width=\"1080px\" module_alignment=\"center\" custom_padding=\"10px||0px|||\" prev_background_color=\"#ffffff\"][et_pb_row _builder_version=\"3.26.3\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" background_color=\"#ffffff\" custom_padding=\"10px|10px||10px|false|false\" border_width_bottom=\"5px\" border_color_bottom=\"#e02b20\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image _builder_version=\"3.26.3\" src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/Devils-Daughter.jpg\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\" /][et_pb_text _builder_version=\"3.26.3\" z_index_tablet=\"500\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" text_text_shadow_horizontal_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_vertical_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_blur_strength=\"text_text_shadow_style,%91object Object%93\" link_text_shadow_horizontal_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_vertical_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_blur_strength=\"link_text_shadow_style,%91object Object%93\" ul_text_shadow_horizontal_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_vertical_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_blur_strength=\"ul_text_shadow_style,%91object Object%93\" ol_text_shadow_horizontal_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_vertical_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_blur_strength=\"ol_text_shadow_style,%91object Object%93\" quote_text_shadow_horizontal_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_vertical_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_blur_strength=\"quote_text_shadow_style,%91object Object%93\" header_text_shadow_horizontal_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_vertical_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_blur_strength=\"header_text_shadow_style,%91object Object%93\" header_2_text_shadow_horizontal_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_vertical_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_blur_strength=\"header_2_text_shadow_style,%91object Object%93\" header_3_text_shadow_horizontal_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_vertical_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_blur_strength=\"header_3_text_shadow_style,%91object Object%93\" header_4_text_shadow_horizontal_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_vertical_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_blur_strength=\"header_4_text_shadow_style,%91object Object%93\" header_5_text_shadow_horizontal_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_vertical_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_blur_strength=\"header_5_text_shadow_style,%91object Object%93\" header_6_text_shadow_horizontal_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_vertical_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_blur_strength=\"header_6_text_shadow_style,%91object Object%93\"]\r\n\r\n<h3 style=\"text-align: center;\"><strong><em>The Devil\'s Daughter</em> (Jeannot Szwarc, 1973, 74 min.)</strong></h3><p>Early in this made-for-TV horror film, a kindly old priest tells the distraught Alice Shaw, \"Nothing\'s so bad that God won\'t forgive it.\" She knows better, and we know better, because we\'ve seen enough horror films to know that not only the sinner, but the sinner\'s progeny, are punished for transgressions. Especially in a movie called <i>The Devil\'s Daughter</i>.</p><p>It opens with a bang: the devil\'s henchmen corner Alice (Diane Ladd), demanding that she deliver on the promise she made 20 years before: the soul of her daughter, whose father we already know (hint: it\'s there in the title). When she tries to renege, the devil himself comes to collect, and it\'s here that we realize there\'s something special about this low-budget shocker: the devil, whose face we don\'t see, comes shuffling into her room supporting himself on two of those metal canes you can buy at your local Walgreens. It\'s a nice, original touch, showing that the filmmakers are using their heads, realizing that they\'re working within a genre with firmly established conventions but able to carve out a little niche for themselves.</p><p>At the funeral, we meet our two principals: there\'s Diane Shaw (Belinda Montgomery), who doesn\'t yet know who her daddy is, and Lilith (Shelly Winters), who was mom\'s friend back in the day. Soon, Diane is living at Lilith\'s, where she begins to demonstrate that trait that is indispensible in a horror-movie heroine: she remains blissfully ignorant of mounting evidence of supernatural chicanery, unable to draw the conclusions that would be obvious to a child. Take her mother\'s ring, which Lilith gives to her and which just so happens to bear the same insignia as the one on the staff in <i>the huge painting of the devil that hangs over the fireplace</i>. Even after this insignia shows up on Lilith\'s favored brand of cigarettes, and on the cover of a demonic baby book—which is concealed in a secret compartment—that contains an extremely detailed record of her childhood, it\'s not enough to do more than put a slight furrow in her brow. Where most people would have been in Federal Witness Protection by the 20-minute mark of the film, she, like other horror movie protagonists, gamely sticks it out, because otherwise we wouldn\'t have feature-length horror films.</p><p>Maybe the problem is that Montgomery isn\'t a very good actress (her time on <i>Doogie Howser, MD</i> notwithstanding—that was years later); perhaps there was something going on inside (like, you know, fear or suspicion) that she was unable to communicate. Even after she discovers that her mom\'s ring gives her the power to hynotize children and send them into traffic, her face registers only mild alarm, not \"Oh my god my mom\'s ring grants me Satan\'s evil power to destroy.\" She\'s certainly surrounded by heavy hitters: the high-profile supporting cast\'s trophy shelf contains two Oscars from eight nominations, but once you get away from Ladd (unrecognizable), Joseph Cotten (really great as a kindly, helpful judge), and Winters (enjoyably bonkers), the pickings get slim. The filmmaking prowess is lacking, too: cinematographer J.J. Jones has obviously seen Dutch (tilted) angles in other horror films, but he hasn\'t figured out exactly <i>why</i> those shots work sometimes and not at others, so he sprinkles them through the film at random, sometimes switching to one in the middle of a shot.</p><p>Overall, though, this is a fine, often inventive diversion. The filmmakers have seen enough horror films to know which ones are worth stealing from, and their primary influence is the uneasy horror/comedy blend of Roman Polanski\'s <em>Rosemary\'s Baby</em>; this film could be seen as a continuation of that deliciously nihilistic cornerstone of the genre. But there are creative borrowings from other notable films (I detect a bit of Aldo Lada\'s giallo <em>Short Night of Glass Dolls</em>, for example), along with enough originality to make me surprised this never saw a theatrical run.</p>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','The Devil\'s Daughter (1973)','','publish','closed','closed','','the-devils-daughter-1973','','','2019-07-26 14:47:16','2019-07-26 14:47:16','',0,'http://itcamefrombeyondpulp.com/?p=313',0,'post','',0),(314,1,'2019-07-26 14:46:44','2019-07-26 14:46:44','','Devils-Daughter','','inherit','closed','closed','','devils-daughter','','','2019-07-26 14:46:44','2019-07-26 14:46:44','',313,'http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/Devils-Daughter.jpg',0,'attachment','image/jpeg',0),(315,1,'2019-07-26 14:47:07','2019-07-26 14:47:07','','Devils-Daughter','','inherit','closed','closed','','devils-daughter-2','','','2019-07-26 14:47:07','2019-07-26 14:47:07','',313,'http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/Devils-Daughter-1.jpg',0,'attachment','image/jpeg',0),(316,1,'2019-07-26 14:47:16','2019-07-26 14:47:16','[et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" custom_padding=\"0px|||||\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" custom_margin=\"||11px|||\" next_background_color=\"#000000\" global_module=\"74\"][et_pb_row global_parent=\"74\" custom_padding=\"0px||0px|||\" custom_margin=\"|auto|-66px|auto||\" _builder_version=\"3.26.3\"][et_pb_column type=\"4_4\" global_parent=\"74\" _builder_version=\"3.26.3\"][et_pb_image global_parent=\"74\" src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/header.jpg\" url=\"http://itcamefrombeyondpulp.com\" _builder_version=\"3.26.3\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.26.3\" width=\"1080px\" width_tablet=\"100%\" width_last_edited=\"on|phone\" module_alignment=\"center\" inner_module_alignment=\"center\" custom_padding=\"0px||0px||false|false\" z_index_tablet=\"500\" hover_enabled=\"0\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" prev_background_color=\"#000000\" next_background_color=\"#e02b20\" global_module=\"175\"][et_pb_fullwidth_menu global_parent=\"175\" menu_id=\"2\" submenu_direction=\"downwards\" fullwidth_menu=\"off\" dropdown_menu_text_color=\"#ffffff\" _builder_version=\"3.26.3\" menu_font=\"|800||on|||||\" menu_text_color=\"#ffffff\" menu_font_size=\"22px\" menu_letter_spacing=\"5px\" background_color=\"#e02b20\" border_width_bottom=\"5px\" text_orientation=\"center\" background_layout=\"dark\" custom_margin=\"0px||||false|false\" custom_padding=\"1px||0px||false|false\" z_index_tablet=\"500\" menu_text_shadow_horizontal_length_tablet=\"0px\" menu_text_shadow_vertical_length_tablet=\"0px\" menu_text_shadow_blur_strength_tablet=\"1px\" border_width_bottom_tablet=\"5px\" border_width_bottom_phone=\"5px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" /][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" background_color=\"#e02b20\" width=\"1080px\" module_alignment=\"center\" custom_padding=\"10px||0px|||\" prev_background_color=\"#ffffff\"][et_pb_row _builder_version=\"3.26.3\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" background_color=\"#ffffff\" custom_padding=\"10px|10px||10px|false|false\" border_width_bottom=\"5px\" border_color_bottom=\"#e02b20\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image _builder_version=\"3.26.3\" src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/Devils-Daughter.jpg\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\" /][et_pb_text _builder_version=\"3.26.3\" z_index_tablet=\"500\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" text_text_shadow_horizontal_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_vertical_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_blur_strength=\"text_text_shadow_style,%91object Object%93\" link_text_shadow_horizontal_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_vertical_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_blur_strength=\"link_text_shadow_style,%91object Object%93\" ul_text_shadow_horizontal_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_vertical_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_blur_strength=\"ul_text_shadow_style,%91object Object%93\" ol_text_shadow_horizontal_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_vertical_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_blur_strength=\"ol_text_shadow_style,%91object Object%93\" quote_text_shadow_horizontal_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_vertical_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_blur_strength=\"quote_text_shadow_style,%91object Object%93\" header_text_shadow_horizontal_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_vertical_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_blur_strength=\"header_text_shadow_style,%91object Object%93\" header_2_text_shadow_horizontal_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_vertical_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_blur_strength=\"header_2_text_shadow_style,%91object Object%93\" header_3_text_shadow_horizontal_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_vertical_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_blur_strength=\"header_3_text_shadow_style,%91object Object%93\" header_4_text_shadow_horizontal_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_vertical_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_blur_strength=\"header_4_text_shadow_style,%91object Object%93\" header_5_text_shadow_horizontal_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_vertical_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_blur_strength=\"header_5_text_shadow_style,%91object Object%93\" header_6_text_shadow_horizontal_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_vertical_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_blur_strength=\"header_6_text_shadow_style,%91object Object%93\"]\r\n\r\n<h3 style=\"text-align: center;\"><strong><em>The Devil\'s Daughter</em> (Jeannot Szwarc, 1973, 74 min.)</strong></h3><p>Early in this made-for-TV horror film, a kindly old priest tells the distraught Alice Shaw, \"Nothing\'s so bad that God won\'t forgive it.\" She knows better, and we know better, because we\'ve seen enough horror films to know that not only the sinner, but the sinner\'s progeny, are punished for transgressions. Especially in a movie called <i>The Devil\'s Daughter</i>.</p><p>It opens with a bang: the devil\'s henchmen corner Alice (Diane Ladd), demanding that she deliver on the promise she made 20 years before: the soul of her daughter, whose father we already know (hint: it\'s there in the title). When she tries to renege, the devil himself comes to collect, and it\'s here that we realize there\'s something special about this low-budget shocker: the devil, whose face we don\'t see, comes shuffling into her room supporting himself on two of those metal canes you can buy at your local Walgreens. It\'s a nice, original touch, showing that the filmmakers are using their heads, realizing that they\'re working within a genre with firmly established conventions but able to carve out a little niche for themselves.</p><p>At the funeral, we meet our two principals: there\'s Diane Shaw (Belinda Montgomery), who doesn\'t yet know who her daddy is, and Lilith (Shelly Winters), who was mom\'s friend back in the day. Soon, Diane is living at Lilith\'s, where she begins to demonstrate that trait that is indispensible in a horror-movie heroine: she remains blissfully ignorant of mounting evidence of supernatural chicanery, unable to draw the conclusions that would be obvious to a child. Take her mother\'s ring, which Lilith gives to her and which just so happens to bear the same insignia as the one on the staff in <i>the huge painting of the devil that hangs over the fireplace</i>. Even after this insignia shows up on Lilith\'s favored brand of cigarettes, and on the cover of a demonic baby book—which is concealed in a secret compartment—that contains an extremely detailed record of her childhood, it\'s not enough to do more than put a slight furrow in her brow. Where most people would have been in Federal Witness Protection by the 20-minute mark of the film, she, like other horror movie protagonists, gamely sticks it out, because otherwise we wouldn\'t have feature-length horror films.</p><p>Maybe the problem is that Montgomery isn\'t a very good actress (her time on <i>Doogie Howser, MD</i> notwithstanding—that was years later); perhaps there was something going on inside (like, you know, fear or suspicion) that she was unable to communicate. Even after she discovers that her mom\'s ring gives her the power to hynotize children and send them into traffic, her face registers only mild alarm, not \"Oh my god my mom\'s ring grants me Satan\'s evil power to destroy.\" She\'s certainly surrounded by heavy hitters: the high-profile supporting cast\'s trophy shelf contains two Oscars from eight nominations, but once you get away from Ladd (unrecognizable), Joseph Cotten (really great as a kindly, helpful judge), and Winters (enjoyably bonkers), the pickings get slim. The filmmaking prowess is lacking, too: cinematographer J.J. Jones has obviously seen Dutch (tilted) angles in other horror films, but he hasn\'t figured out exactly <i>why</i> those shots work sometimes and not at others, so he sprinkles them through the film at random, sometimes switching to one in the middle of a shot.</p><p>Overall, though, this is a fine, often inventive diversion. The filmmakers have seen enough horror films to know which ones are worth stealing from, and their primary influence is the uneasy horror/comedy blend of Roman Polanski\'s <em>Rosemary\'s Baby</em>; this film could be seen as a continuation of that deliciously nihilistic cornerstone of the genre. But there are creative borrowings from other notable films (I detect a bit of Aldo Lada\'s giallo <em>Short Night of Glass Dolls</em>, for example), along with enough originality to make me surprised this never saw a theatrical run.</p>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','The Devil\'s Daughter (1973)','','inherit','closed','closed','','313-revision-v1','','','2019-07-26 14:47:16','2019-07-26 14:47:16','',313,'http://itcamefrombeyondpulp.com/uncategorized/313-revision-v1/',0,'revision','',0),(317,1,'2019-07-26 14:48:09','2019-07-26 14:48:09','[et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" custom_padding=\"0px|||||\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" custom_margin=\"||11px|||\" next_background_color=\"#000000\" global_module=\"74\"][et_pb_row global_parent=\"74\" custom_padding=\"0px||0px|||\" custom_margin=\"|auto|-66px|auto||\" _builder_version=\"3.26.3\"][et_pb_column type=\"4_4\" global_parent=\"74\" _builder_version=\"3.26.3\"][et_pb_image global_parent=\"74\" src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/header.jpg\" url=\"http://itcamefrombeyondpulp.com\" _builder_version=\"3.26.3\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.26.3\" width=\"1080px\" width_tablet=\"100%\" width_last_edited=\"on|phone\" module_alignment=\"center\" inner_module_alignment=\"center\" custom_padding=\"0px||0px||false|false\" z_index_tablet=\"500\" hover_enabled=\"0\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" prev_background_color=\"#000000\" next_background_color=\"#e02b20\" global_module=\"175\"][et_pb_fullwidth_menu global_parent=\"175\" menu_id=\"2\" submenu_direction=\"downwards\" fullwidth_menu=\"off\" dropdown_menu_text_color=\"#ffffff\" _builder_version=\"3.26.3\" menu_font=\"|800||on|||||\" menu_text_color=\"#ffffff\" menu_font_size=\"22px\" menu_letter_spacing=\"5px\" background_color=\"#e02b20\" border_width_bottom=\"5px\" text_orientation=\"center\" background_layout=\"dark\" custom_margin=\"0px||||false|false\" custom_padding=\"1px||0px||false|false\" z_index_tablet=\"500\" menu_text_shadow_horizontal_length_tablet=\"0px\" menu_text_shadow_vertical_length_tablet=\"0px\" menu_text_shadow_blur_strength_tablet=\"1px\" border_width_bottom_tablet=\"5px\" border_width_bottom_phone=\"5px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" /][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" background_color=\"#e02b20\" width=\"1080px\" module_alignment=\"center\" custom_padding=\"10px||0px|||\" prev_background_color=\"#ffffff\"][et_pb_row _builder_version=\"3.26.3\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" background_color=\"#ffffff\" custom_padding=\"10px|10px||10px|false|false\" border_width_bottom=\"5px\" border_color_bottom=\"#e02b20\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image _builder_version=\"3.26.3\" src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/Devils-Daughter.jpg\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\" /][et_pb_text _builder_version=\"3.26.3\" z_index_tablet=\"500\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" text_text_shadow_horizontal_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_vertical_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_blur_strength=\"text_text_shadow_style,%91object Object%93\" link_text_shadow_horizontal_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_vertical_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_blur_strength=\"link_text_shadow_style,%91object Object%93\" ul_text_shadow_horizontal_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_vertical_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_blur_strength=\"ul_text_shadow_style,%91object Object%93\" ol_text_shadow_horizontal_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_vertical_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_blur_strength=\"ol_text_shadow_style,%91object Object%93\" quote_text_shadow_horizontal_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_vertical_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_blur_strength=\"quote_text_shadow_style,%91object Object%93\" header_text_shadow_horizontal_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_vertical_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_blur_strength=\"header_text_shadow_style,%91object Object%93\" header_2_text_shadow_horizontal_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_vertical_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_blur_strength=\"header_2_text_shadow_style,%91object Object%93\" header_3_text_shadow_horizontal_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_vertical_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_blur_strength=\"header_3_text_shadow_style,%91object Object%93\" header_4_text_shadow_horizontal_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_vertical_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_blur_strength=\"header_4_text_shadow_style,%91object Object%93\" header_5_text_shadow_horizontal_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_vertical_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_blur_strength=\"header_5_text_shadow_style,%91object Object%93\" header_6_text_shadow_horizontal_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_vertical_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_blur_strength=\"header_6_text_shadow_style,%91object Object%93\"]\n\n<h3 style=\"text-align: center;\"><strong><em>The Devil\'s Daughter</em> (Jeannot Szwarc, 1973, 74 min.)</strong></h3>\n<p>Early in this made-for-TV horror film, a kindly old priest tells the distraught Alice Shaw, \"Nothing\'s so bad that God won\'t forgive it.\" She knows better, and we know better, because we\'ve seen enough horror films to know that not only the sinner, but the sinner\'s progeny, are punished for transgressions. Especially in a movie called <i>The Devil\'s Daughter</i>.</p>\n<p>It opens with a bang: the devil\'s henchmen corner Alice (Diane Ladd), demanding that she deliver on the promise she made 20 years before: the soul of her daughter, whose father we already know (hint: it\'s there in the title). When she tries to renege, the devil himself comes to collect, and it\'s here that we realize there\'s something special about this low-budget shocker: the devil, whose face we don\'t see, comes shuffling into her room supporting himself on two of those metal canes you can buy at your local Walgreens. It\'s a nice, original touch, showing that the filmmakers are using their heads, realizing that they\'re working within a genre with firmly established conventions but able to carve out a little niche for themselves.</p>\n<p>At the funeral, we meet our two principals: there\'s Diane Shaw (Belinda Montgomery), who doesn\'t yet know who her daddy is, and Lilith (Shelly Winters), who was mom\'s friend back in the day. Soon, Diane is living at Lilith\'s, where she begins to demonstrate that trait that is indispensible in a horror-movie heroine: she remains blissfully ignorant of mounting evidence of supernatural chicanery, unable to draw the conclusions that would be obvious to a child. Take her mother\'s ring, which Lilith gives to her and which just so happens to bear the same insignia as the one on the staff in <i>the huge painting of the devil that hangs over the fireplace</i>. Even after this insignia shows up on Lilith\'s favored brand of cigarettes, and on the cover of a demonic baby book—which is concealed in a secret compartment—that contains an extremely detailed record of her childhood, it\'s not enough to do more than put a slight furrow in her brow. Where most people would have been in Federal Witness Protection by the 20-minute mark of the film, she, like other horror movie protagonists, gamely sticks it out, because otherwise we wouldn\'t have feature-length horror films.</p>\n<p>Maybe the problem is that Montgomery isn\'t a very good actress (her time on <i>Doogie Howser, MD</i> notwithstanding—that was years later); perhaps there was something going on inside (like, you know, fear or suspicion) that she was unable to communicate. Even after she discovers that her mom\'s ring gives her the power to hynotize children and send them into traffic, her face registers only mild alarm, not \"Oh my god my mom\'s ring grants me Satan\'s evil power to destroy.\" She\'s certainly surrounded by heavy hitters: the high-profile supporting cast\'s trophy shelf contains two Oscars from eight nominations, but once you get away from Ladd (unrecognizable), Joseph Cotten (really great as a kindly, helpful judge), and Winters (enjoyably bonkers), the pickings get slim. The filmmaking prowess is lacking, too: cinematographer J.J. Jones has obviously seen Dutch (tilted) angles in other horror films, but he hasn\'t figured out exactly <i>why</i> those shots work sometimes and not at others, so he sprinkles them through the film at random, sometimes switching to one in the middle of a shot.</p>\n<p>Overall, though, this is a fine, often inventive diversion. The filmmakers have seen enough horror films to know which ones are worth stealing from, and their primary influence is the uneasy horror/comedy blend of Roman Polanski\'s <em>Rosemary\'s Baby</em>; this film could be seen as a continuation of that deliciously nihilistic cornerstone of the genre. But there are creative borrowings from other notable films (I detect a bit of Aldo Lada\'s giallo <em>Short Night of Glass Dolls</em>, for example), along with enough originality to make me surprised this never saw a theatrical run.</p>\n\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','The Devil\'s Daughter (1973)','','inherit','closed','closed','','313-autosave-v1','','','2019-07-26 14:48:09','2019-07-26 14:48:09','',313,'http://itcamefrombeyondpulp.com/uncategorized/313-autosave-v1/',0,'revision','',0),(319,1,'2019-07-26 14:52:31','2019-07-26 14:52:31','[et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" custom_padding=\"0px|||||\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" custom_margin=\"||11px|||\" next_background_color=\"#000000\" global_module=\"74\"][et_pb_row global_parent=\"74\" custom_padding=\"0px||0px|||\" custom_margin=\"|auto|-66px|auto||\" _builder_version=\"3.26.3\"][et_pb_column type=\"4_4\" global_parent=\"74\" _builder_version=\"3.26.3\"][et_pb_image global_parent=\"74\" src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/header.jpg\" url=\"http://itcamefrombeyondpulp.com\" _builder_version=\"3.26.3\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.26.3\" width=\"1080px\" width_tablet=\"100%\" width_last_edited=\"on|phone\" module_alignment=\"center\" inner_module_alignment=\"center\" custom_padding=\"0px||0px||false|false\" z_index_tablet=\"500\" hover_enabled=\"0\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" prev_background_color=\"#000000\" next_background_color=\"#e02b20\" global_module=\"175\"][et_pb_fullwidth_menu global_parent=\"175\" menu_id=\"2\" submenu_direction=\"downwards\" fullwidth_menu=\"off\" dropdown_menu_text_color=\"#ffffff\" _builder_version=\"3.26.3\" menu_font=\"|800||on|||||\" menu_text_color=\"#ffffff\" menu_font_size=\"22px\" menu_letter_spacing=\"5px\" background_color=\"#e02b20\" border_width_bottom=\"5px\" text_orientation=\"center\" background_layout=\"dark\" custom_margin=\"0px||||false|false\" custom_padding=\"1px||0px||false|false\" z_index_tablet=\"500\" menu_text_shadow_horizontal_length_tablet=\"0px\" menu_text_shadow_vertical_length_tablet=\"0px\" menu_text_shadow_blur_strength_tablet=\"1px\" border_width_bottom_tablet=\"5px\" border_width_bottom_phone=\"5px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" /][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" background_color=\"#e02b20\" width=\"1080px\" module_alignment=\"center\" custom_padding=\"10px||0px|||\" hover_enabled=\"0\" width_last_edited=\"on|tablet\" width_phone=\"100%\" width_tablet=\"100%\" prev_background_color=\"#ffffff\"][et_pb_row custom_padding=\"10px|10px||\" _builder_version=\"3.26.3\" background_color=\"#ffffff\" border_width_bottom=\"5px\" border_color_bottom=\"#e02b20\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.26.3\" z_index_tablet=\"500\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\"]\r\n\r\n<h1 style=\"text-align: center;\">Movies &amp; TV Reviews</h1>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.26.3\" background_color=\"#ffffff\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" column_structure=\"1_3,1_3,1_3\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.26.3\" z_index_tablet=\"500\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\"]\r\n\r\n<h3 style=\"text-align: center;\">Sci-Fi</h3>\r\n<p style=\"text-align: center;\"><strong><a href=\"http://itcamefrombeyondpulp.com/movies/children-of-men-2006/\">Children of Men (2006)</a><br /></strong><strong><a href=\"http://itcamefrombeyondpulp.com/movies/cloverfield-2008/\">Cloverfield (2008)</a><br /><a href=\"http://itcamefrombeyondpulp.com/movies/the-dark-knight-2008/\">The Dark Knight (2008)</a><br /><a href=\"http://itcamefrombeyondpulp.com/movies/the-fountain-2006/\">The Fountain (2006)</a><br /><a href=\"http://itcamefrombeyondpulp.com/movies/hardware-1990/\">Hardware (1990)</a><br /><a href=\"http://itcamefrombeyondpulp.com/movies/harry-potter-and-the-chamber-of-secrets-2002/\">Harry Potter and the Chamber of Secrets (2002)</a><br /><a href=\"http://itcamefrombeyondpulp.com/movies/harry-potter-and-the-sorcerers-stone-2001/\">Harry Potter and the Sorcerer\'s Stone (2001)</a><br /><a href=\"http://itcamefrombeyondpulp.com/movies/maniac-1934/\">Maniac (1934)</a><br /><a href=\"http://itcamefrombeyondpulp.com/movies/the-phantom-planet-1961/\">The Phantom Planet (1961)</a><br /><a href=\"http://itcamefrombeyondpulp.com/movies/predator-1987/\">Predator (1987)</a><br /></strong><a href=\"http://itcamefrombeyondpulp.com/movies/serenity-2005/\"><strong>Serenity (2005)</strong></a><br /><a href=\"http://itcamefrombeyondpulp.com/movies/x-men-the-last-stand-2006/\"><strong>X-Men: The Last Stand (2006)</strong></a></p>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.26.3\" z_index_tablet=\"500\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" text_text_shadow_horizontal_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_vertical_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_blur_strength=\"text_text_shadow_style,%91object Object%93\" link_text_shadow_horizontal_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_vertical_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_blur_strength=\"link_text_shadow_style,%91object Object%93\" ul_text_shadow_horizontal_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_vertical_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_blur_strength=\"ul_text_shadow_style,%91object Object%93\" ol_text_shadow_horizontal_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_vertical_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_blur_strength=\"ol_text_shadow_style,%91object Object%93\" quote_text_shadow_horizontal_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_vertical_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_blur_strength=\"quote_text_shadow_style,%91object Object%93\" header_text_shadow_horizontal_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_vertical_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_blur_strength=\"header_text_shadow_style,%91object Object%93\" header_2_text_shadow_horizontal_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_vertical_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_blur_strength=\"header_2_text_shadow_style,%91object Object%93\" header_3_text_shadow_horizontal_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_vertical_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_blur_strength=\"header_3_text_shadow_style,%91object Object%93\" header_4_text_shadow_horizontal_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_vertical_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_blur_strength=\"header_4_text_shadow_style,%91object Object%93\" header_5_text_shadow_horizontal_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_vertical_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_blur_strength=\"header_5_text_shadow_style,%91object Object%93\" header_6_text_shadow_horizontal_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_vertical_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_blur_strength=\"header_6_text_shadow_style,%91object Object%93\"]\r\n\r\n<h3 style=\"text-align: center;\">Horror</h3><p style=\"text-align: center;\"><a href=\"http://itcamefrombeyondpulp.com/movies/bloodrayne-2-deliverance-2007/\"><strong>BloodRayne 2: Deliverance (2007)</strong></a><br /><a href=\"http://itcamefrombeyondpulp.com/movies/the-cat-and-the-canary-1927/\"><strong>The Cat and the Canary (1927)</strong></a><br /><a href=\"http://itcamefrombeyondpulp.com/movies/the-children-1980/\"><strong>The Children (1980)</strong></a><br /><strong><a href=\"http://itcamefrombeyondpulp.com/movies/colin-2008/\">Colin (2008)</a></strong><br /><strong><a href=\"http://itcamefrombeyondpulp.com/movies/dark-water-2005/\">Dark Water (2005)</a></strong><br /><strong><a href=\"http://itcamefrombeyondpulp.com/movies/the-devils-daughter-1973/\">The Devil\'s Daughter (1973)</a></strong><br /><a href=\"http://itcamefrombeyondpulp.com/movies/masters-of-horror-the-black-cat-2007/\"><strong>Masters of Horror: The Black Cat (2007)</strong></a></p>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.26.3\" z_index_tablet=\"500\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\"]\r\n\r\n<h3 style=\"text-align: center;\">Whatnot</h3>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Movies','','inherit','closed','closed','','45-revision-v1','','','2019-07-26 14:52:31','2019-07-26 14:52:31','',45,'http://itcamefrombeyondpulp.com/uncategorized/45-revision-v1/',0,'revision','',0),(320,1,'2019-07-26 14:59:40','2019-07-26 14:59:40','[et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" custom_padding=\"0px|||||\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" custom_margin=\"||11px|||\" next_background_color=\"#000000\" global_module=\"74\"][et_pb_row global_parent=\"74\" custom_padding=\"0px||0px|||\" custom_margin=\"|auto|-66px|auto||\" _builder_version=\"3.26.3\"][et_pb_column type=\"4_4\" global_parent=\"74\" _builder_version=\"3.26.3\"][et_pb_image global_parent=\"74\" src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/header.jpg\" url=\"http://itcamefrombeyondpulp.com\" _builder_version=\"3.26.3\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.26.3\" width=\"1080px\" width_tablet=\"100%\" width_last_edited=\"on|phone\" module_alignment=\"center\" inner_module_alignment=\"center\" custom_padding=\"0px||0px||false|false\" z_index_tablet=\"500\" hover_enabled=\"0\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" prev_background_color=\"#000000\" next_background_color=\"#e02b20\" global_module=\"175\"][et_pb_fullwidth_menu global_parent=\"175\" menu_id=\"2\" submenu_direction=\"downwards\" fullwidth_menu=\"off\" dropdown_menu_text_color=\"#ffffff\" _builder_version=\"3.26.3\" menu_font=\"|800||on|||||\" menu_text_color=\"#ffffff\" menu_font_size=\"22px\" menu_letter_spacing=\"5px\" background_color=\"#e02b20\" border_width_bottom=\"5px\" text_orientation=\"center\" background_layout=\"dark\" custom_margin=\"0px||||false|false\" custom_padding=\"1px||0px||false|false\" z_index_tablet=\"500\" menu_text_shadow_horizontal_length_tablet=\"0px\" menu_text_shadow_vertical_length_tablet=\"0px\" menu_text_shadow_blur_strength_tablet=\"1px\" border_width_bottom_tablet=\"5px\" border_width_bottom_phone=\"5px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" /][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" background_color=\"#e02b20\" width=\"1080px\" module_alignment=\"center\" custom_padding=\"10px||0px|||\" prev_background_color=\"#ffffff\"][et_pb_row _builder_version=\"3.26.3\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" background_color=\"#ffffff\" custom_padding=\"10px|10px||10px|false|false\" border_width_bottom=\"5px\" border_color_bottom=\"#e02b20\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image _builder_version=\"3.26.3\" src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/sherlock.jpg\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\" /][et_pb_text _builder_version=\"3.26.3\" z_index_tablet=\"500\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" text_text_shadow_horizontal_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_vertical_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_blur_strength=\"text_text_shadow_style,%91object Object%93\" link_text_shadow_horizontal_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_vertical_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_blur_strength=\"link_text_shadow_style,%91object Object%93\" ul_text_shadow_horizontal_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_vertical_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_blur_strength=\"ul_text_shadow_style,%91object Object%93\" ol_text_shadow_horizontal_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_vertical_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_blur_strength=\"ol_text_shadow_style,%91object Object%93\" quote_text_shadow_horizontal_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_vertical_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_blur_strength=\"quote_text_shadow_style,%91object Object%93\" header_text_shadow_horizontal_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_vertical_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_blur_strength=\"header_text_shadow_style,%91object Object%93\" header_2_text_shadow_horizontal_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_vertical_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_blur_strength=\"header_2_text_shadow_style,%91object Object%93\" header_3_text_shadow_horizontal_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_vertical_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_blur_strength=\"header_3_text_shadow_style,%91object Object%93\" header_4_text_shadow_horizontal_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_vertical_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_blur_strength=\"header_4_text_shadow_style,%91object Object%93\" header_5_text_shadow_horizontal_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_vertical_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_blur_strength=\"header_5_text_shadow_style,%91object Object%93\" header_6_text_shadow_horizontal_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_vertical_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_blur_strength=\"header_6_text_shadow_style,%91object Object%93\"]\r\n\r\n<h3 style=\"text-align: center;\"><strong><em>The Adventures of Sherlock Holmes</em> (Alfred L. Werker, 1939, 88 min.)</strong></h3>\r\n<p>Basil Rathbone and Nigel Bruce return for the second time as Sherlock Holmes and Dr. Watson in this enjoyable, suspenseful film, the last in the series to be set in Victorian England. For their second outing, they face off against Dr. Moriarty himself (George Zucco), Holmes\'s arch-enemy. The film is the perfect blend of mystery and comedy, showing off the series\'s potential for both. The only real problem with this film is a rather disappointing Moriarty; Zucco looks a tad too... ordinary. For master criminals of the Victorian era, I want flowing overcoats, black hair in a widow\'s peak, and fiendish laughter, not some guy who looks like... well, like a professor.</p>\r\n<p>The film opens with the diabolical Moriarty defeating justice yet again. A jury grudgingly finds him not guilty of some horrific crime or another just seconds before Holmes rushes in with damning evidence. The best scene in the film comes as the two bitter enemies leave the courtroom; the two share a cab home while discussing their mutual hatred and desire for revenge, and Moriarty promises that his next caper will be so brilliant that it defeats even the mind of Holmes.</p>\r\n<p>As Holmes and Watson settle down to wait for clues to Moriarty\'s next plan, Moriarty concocts not one but two mysteries, one of them designed to distract Holmes from the real caper. Knowing Holmes\'s attraction to women in peril, he devises a diabolical, murderous plot that resurrects a decades-old murder—surely a lot of trouble to go through just to distract Holmes, but then again, Moriarty\'s not a very nice guy, and he doesn\'t care who thinks so. There\'s a wonderful exchange between him and Bassick (Arthur Hohl), one of his henchmen; when Moriarty informs him what his role will be, Bassick laments what happened to the last person Moriarty enlisted. \"Oh, poor Higgins,\" says Moriarty. \"They found nothing but his boots!\" To which Bassick replies indignantly, \"<i>One</i> boot!\"</p>\r\n<p>The real crime is the theft of a famous emerald from among the Crown Jewels. Moriarty actually sends a letter to Ronald Ramsgate (Henry Stephenson), the caretaker of the jewels, threatening to steal it. Ramsgate attempts to enlist Holmes\'s help, but Holmes is distracted by the sad case of the Brandon family. Ten years earlier, the elder Brandon was murdered in South America; now, the younger generation of Brandons, including the nance Lloyd (Peter Willes) and the beautiful young Ann (Ida Lupino), are receiving strange, threatening drawings inscribed with ominous dates. Holmes decides that he must protect Ann (he doesn\'t do Lloyd much good), and he sets out to solve the mystery and save Ann from a dreadful murder. Ann\'s fiance Jerrold (Alan Marshal) attempts to stop Ann from enlisting Holmes, setting himself up as a likely suspect. Intrigue ensues.</p>\r\n<p>Director Alfred L. Werker paces the film perfectly, with just the right blend of tense scenes and opportunities to catch one\'s breath. There are two show-stopping scenes, one in which Ann is chased through a foggy park and the final showdown between Holmes and Moriarty in a dazzling Tower of London set. The sham case Moriarty cooks up is textbook Sherlock Holmes, and it\'s set up so that all along, we are shouting at Holmes to ingore all of the red herrings and stop Moriarty; it\'s only during the down times that we realize that even though the Brandon case is just a distraction, it\'s time better spent for Holmes to save Ann than to save the Crown Jewels.</p>\r\n<p>Rathbone and Bruce took three years off before resuming their roles in twelve more films in the space of four years; these new scenes transplanted the dynamic duo to the twentieth century and turned Watson into little more than comic relief. There are comedic scenes in this film, but Watson isn\'t a clown. One good example occurs when Watson is lying on the cobblestones at a murder site while Holmes is off measuring things in the bushes. A gentlemanly passerby inquires as to his well-being, and the two have a humorous exchange that has Watson being the source of the comedy without being the butt of the joke.</p>\r\n<p><b>Baker Street Regulars</b> (actors who appeared in more than two films in the series as different characters):</p>\r\n<p>Harry Cording, 1st of 8 appearances (as second phoney policeman) <br />Mary Forbes, 1st of 3 (Lady Conyngham) <br />Holmes Herbert, 1st of 6 (Chief Justice) <br />Leyland Hogdson, 1st of 7 (unspecified bobby) <br />Arthur Hohl, 1st of 3 (Bassick) <br />Boyd Irwin, 1st of 3 (bobby) <br />Eric Wilton, 1st of 3 (Conyngham Butler)</p>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','The Adventures of Sherlock Holmes (1939)','','publish','closed','closed','','the-adventures-of-sherlock-holmes-1939','','','2019-07-26 15:02:23','2019-07-26 15:02:23','',0,'http://itcamefrombeyondpulp.com/?p=320',0,'post','',0),(321,1,'2019-07-26 14:59:16','2019-07-26 14:59:16','','sherlock','','inherit','closed','closed','','sherlock','','','2019-07-26 14:59:16','2019-07-26 14:59:16','',320,'http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/sherlock.jpg',0,'attachment','image/jpeg',0),(322,1,'2019-07-26 14:59:40','2019-07-26 14:59:40','[et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" custom_padding=\"0px|||||\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" custom_margin=\"||11px|||\" next_background_color=\"#000000\" global_module=\"74\"][et_pb_row global_parent=\"74\" custom_padding=\"0px||0px|||\" custom_margin=\"|auto|-66px|auto||\" _builder_version=\"3.26.3\"][et_pb_column type=\"4_4\" global_parent=\"74\" _builder_version=\"3.26.3\"][et_pb_image global_parent=\"74\" src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/header.jpg\" url=\"http://itcamefrombeyondpulp.com\" _builder_version=\"3.26.3\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.26.3\" width=\"1080px\" width_tablet=\"100%\" width_last_edited=\"on|phone\" module_alignment=\"center\" inner_module_alignment=\"center\" custom_padding=\"0px||0px||false|false\" z_index_tablet=\"500\" hover_enabled=\"0\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" prev_background_color=\"#000000\" next_background_color=\"#e02b20\" global_module=\"175\"][et_pb_fullwidth_menu global_parent=\"175\" menu_id=\"2\" submenu_direction=\"downwards\" fullwidth_menu=\"off\" dropdown_menu_text_color=\"#ffffff\" _builder_version=\"3.26.3\" menu_font=\"|800||on|||||\" menu_text_color=\"#ffffff\" menu_font_size=\"22px\" menu_letter_spacing=\"5px\" background_color=\"#e02b20\" border_width_bottom=\"5px\" text_orientation=\"center\" background_layout=\"dark\" custom_margin=\"0px||||false|false\" custom_padding=\"1px||0px||false|false\" z_index_tablet=\"500\" menu_text_shadow_horizontal_length_tablet=\"0px\" menu_text_shadow_vertical_length_tablet=\"0px\" menu_text_shadow_blur_strength_tablet=\"1px\" border_width_bottom_tablet=\"5px\" border_width_bottom_phone=\"5px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" /][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" background_color=\"#e02b20\" width=\"1080px\" module_alignment=\"center\" custom_padding=\"10px||0px|||\" prev_background_color=\"#ffffff\"][et_pb_row _builder_version=\"3.26.3\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" background_color=\"#ffffff\" custom_padding=\"10px|10px||10px|false|false\" border_width_bottom=\"5px\" border_color_bottom=\"#e02b20\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image _builder_version=\"3.26.3\" src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/sherlock.jpg\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\" /][et_pb_text _builder_version=\"3.26.3\" z_index_tablet=\"500\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" text_text_shadow_horizontal_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_vertical_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_blur_strength=\"text_text_shadow_style,%91object Object%93\" link_text_shadow_horizontal_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_vertical_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_blur_strength=\"link_text_shadow_style,%91object Object%93\" ul_text_shadow_horizontal_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_vertical_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_blur_strength=\"ul_text_shadow_style,%91object Object%93\" ol_text_shadow_horizontal_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_vertical_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_blur_strength=\"ol_text_shadow_style,%91object Object%93\" quote_text_shadow_horizontal_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_vertical_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_blur_strength=\"quote_text_shadow_style,%91object Object%93\" header_text_shadow_horizontal_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_vertical_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_blur_strength=\"header_text_shadow_style,%91object Object%93\" header_2_text_shadow_horizontal_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_vertical_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_blur_strength=\"header_2_text_shadow_style,%91object Object%93\" header_3_text_shadow_horizontal_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_vertical_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_blur_strength=\"header_3_text_shadow_style,%91object Object%93\" header_4_text_shadow_horizontal_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_vertical_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_blur_strength=\"header_4_text_shadow_style,%91object Object%93\" header_5_text_shadow_horizontal_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_vertical_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_blur_strength=\"header_5_text_shadow_style,%91object Object%93\" header_6_text_shadow_horizontal_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_vertical_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_blur_strength=\"header_6_text_shadow_style,%91object Object%93\"]\r\n\r\n<h3 style=\"text-align: center;\"><strong><em>The Adventures of Sherlock Holmes</em> (Alfred L. Werker, 1939, 88 min.)</strong></h3><p>Basil Rathbone and Nigel Bruce return for the second time as Sherlock Holmes and Dr. Watson in this enjoyable, suspenseful film, the last in the series to be set in Victorian England. For their second outing, they face off against Dr. Moriarty himself (George Zucco), Holmes\'s arch-enemy. The film is the perfect blend of mystery and comedy, showing off the series\'s potential for both. The only real problem with this film is a rather disappointing Moriarty; Zucco looks a tad too... ordinary. For master criminals of the Victorian era, I want flowing overcoats, black hair in a widow\'s peak, and fiendish laughter, not some guy who looks like... well, like a professor.</p><p>The film opens with the diabolical Moriarty defeating justice yet again. A jury grudgingly finds him not guilty of some horrific crime or another just seconds before Holmes rushes in with damning evidence. The best scene in the film comes as the two bitter enemies leave the courtroom; the two share a cab home while discussing their mutual hatred and desire for revenge, and Moriarty promises that his next caper will be so brilliant that it defeats even the mind of Holmes.</p><p>As Holmes and Watson settle down to wait for clues to Moriarty\'s next plan, Moriarty concocts not one but two mysteries, one of them designed to distract Holmes from the real caper. Knowing Holmes\'s attraction to women in peril, he devises a diabolical, murderous plot that resurrects a decades-old murder—surely a lot of trouble to go through just to distract Holmes, but then again, Moriarty\'s not a very nice guy, and he doesn\'t care who thinks so. There\'s a wonderful exchange between him and Bassick (Arthur Hohl), one of his henchmen; when Moriarty informs him what his role will be, Bassick laments what happened to the last person Moriarty enlisted. \"Oh, poor Higgins,\" says Moriarty. \"They found nothing but his boots!\" To which Bassick replies indignantly, \"<i>One</i> boot!\"</p><p>The real crime is the theft of a famous emerald from among the Crown Jewels. Moriarty actually sends a letter to Ronald Ramsgate (Henry Stephenson), the caretaker of the jewels, threatening to steal it. Ramsgate attempts to enlist Holmes\'s help, but Holmes is distracted by the sad case of the Brandon family. Ten years earlier, the elder Brandon was murdered in South America; now, the younger generation of Brandons, including the nance Lloyd (Peter Willes) and the beautiful young Ann (Ida Lupino), are receiving strange, threatening drawings inscribed with ominous dates. Holmes decides that he must protect Ann (he doesn\'t do Lloyd much good), and he sets out to solve the mystery and save Ann from a dreadful murder. Ann\'s fiance Jerrold (Alan Marshal) attempts to stop Ann from enlisting Holmes, setting himself up as a likely suspect. Intrigue ensues.</p><p>Director Alfred L. Werker paces the film perfectly, with just the right blend of tense scenes and opportunities to catch one\'s breath. There are two show-stopping scenes, one in which Ann is chased through a foggy park and the final showdown between Holmes and Moriarty in a dazzling Tower of London set. The sham case Moriarty cooks up is textbook Sherlock Holmes, and it\'s set up so that all along, we are shouting at Holmes to ingore all of the red herrings and stop Moriarty; it\'s only during the down times that we realize that even though the Brandon case is just a distraction, it\'s time better spent for Holmes to save Ann than to save the Crown Jewels.</p><p>Rathbone and Bruce took three years off before resuming their roles in twelve more films in the space of four years; these new scenes transplanted the dynamic duo to the twentieth century and turned Watson into little more than comic relief. There are comedic scenes in this film, but Watson isn\'t a clown. One good example occurs when Watson is lying on the cobblestones at a murder site while Holmes is off measuring things in the bushes. A gentlemanly passerby inquires as to his well-being, and the two have a humorous exchange that has Watson being the source of the comedy without being the butt of the joke.</p><p><b>Baker Street Regulars</b> (actors who appeared in more than two films in the series as different characters):</p><p>Harry Cording, 1st of 8 appearances (as second phoney policeman) <br />Mary Forbes, 1st of 3 (Lady Conyngham) <br />Holmes Herbert, 1st of 6 (Chief Justice) <br />Leyland Hogdson, 1st of 7 (unspecified bobby) <br />Arthur Hohl, 1st of 3 (Bassick) <br />Boyd Irwin, 1st of 3 (bobby) <br />Eric Wilton, 1st of 3 (Conyngham Butler)</p>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','The Adventures of Sherlock Holmes (1939)','','inherit','closed','closed','','320-revision-v1','','','2019-07-26 14:59:40','2019-07-26 14:59:40','',320,'http://itcamefrombeyondpulp.com/uncategorized/320-revision-v1/',0,'revision','',0),(323,1,'2019-07-26 15:01:48','2019-07-26 15:01:48','[et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" custom_padding=\"0px|||||\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" custom_margin=\"||11px|||\" next_background_color=\"#000000\" global_module=\"74\"][et_pb_row global_parent=\"74\" custom_padding=\"0px||0px|||\" custom_margin=\"|auto|-66px|auto||\" _builder_version=\"3.26.3\"][et_pb_column type=\"4_4\" global_parent=\"74\" _builder_version=\"3.26.3\"][et_pb_image global_parent=\"74\" src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/header.jpg\" url=\"http://itcamefrombeyondpulp.com\" _builder_version=\"3.26.3\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.26.3\" width=\"1080px\" width_tablet=\"100%\" width_last_edited=\"on|phone\" module_alignment=\"center\" inner_module_alignment=\"center\" custom_padding=\"0px||0px||false|false\" z_index_tablet=\"500\" hover_enabled=\"0\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" prev_background_color=\"#000000\" next_background_color=\"#e02b20\" global_module=\"175\"][et_pb_fullwidth_menu global_parent=\"175\" menu_id=\"2\" submenu_direction=\"downwards\" fullwidth_menu=\"off\" dropdown_menu_text_color=\"#ffffff\" _builder_version=\"3.26.3\" menu_font=\"|800||on|||||\" menu_text_color=\"#ffffff\" menu_font_size=\"22px\" menu_letter_spacing=\"5px\" background_color=\"#e02b20\" border_width_bottom=\"5px\" text_orientation=\"center\" background_layout=\"dark\" custom_margin=\"0px||||false|false\" custom_padding=\"1px||0px||false|false\" z_index_tablet=\"500\" menu_text_shadow_horizontal_length_tablet=\"0px\" menu_text_shadow_vertical_length_tablet=\"0px\" menu_text_shadow_blur_strength_tablet=\"1px\" border_width_bottom_tablet=\"5px\" border_width_bottom_phone=\"5px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" /][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" background_color=\"#e02b20\" width=\"1080px\" module_alignment=\"center\" custom_padding=\"10px||0px|||\" prev_background_color=\"#ffffff\"][et_pb_row _builder_version=\"3.26.3\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" background_color=\"#ffffff\" custom_padding=\"10px|10px||10px|false|false\" border_width_bottom=\"5px\" border_color_bottom=\"#e02b20\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image _builder_version=\"3.26.3\" src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/sherlock.jpg\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\" /][et_pb_text _builder_version=\"3.26.3\" z_index_tablet=\"500\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" text_text_shadow_horizontal_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_vertical_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_blur_strength=\"text_text_shadow_style,%91object Object%93\" link_text_shadow_horizontal_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_vertical_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_blur_strength=\"link_text_shadow_style,%91object Object%93\" ul_text_shadow_horizontal_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_vertical_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_blur_strength=\"ul_text_shadow_style,%91object Object%93\" ol_text_shadow_horizontal_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_vertical_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_blur_strength=\"ol_text_shadow_style,%91object Object%93\" quote_text_shadow_horizontal_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_vertical_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_blur_strength=\"quote_text_shadow_style,%91object Object%93\" header_text_shadow_horizontal_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_vertical_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_blur_strength=\"header_text_shadow_style,%91object Object%93\" header_2_text_shadow_horizontal_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_vertical_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_blur_strength=\"header_2_text_shadow_style,%91object Object%93\" header_3_text_shadow_horizontal_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_vertical_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_blur_strength=\"header_3_text_shadow_style,%91object Object%93\" header_4_text_shadow_horizontal_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_vertical_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_blur_strength=\"header_4_text_shadow_style,%91object Object%93\" header_5_text_shadow_horizontal_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_vertical_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_blur_strength=\"header_5_text_shadow_style,%91object Object%93\" header_6_text_shadow_horizontal_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_vertical_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_blur_strength=\"header_6_text_shadow_style,%91object Object%93\"]\n\n<h3 style=\"text-align: center;\"><strong><em>The Adventures of Sherlock Holmes</em> (Alfred L. Werker, 1939, 88 min.)</strong></h3>\n<p>Basil Rathbone and Nigel Bruce return for the second time as Sherlock Holmes and Dr. Watson in this enjoyable, suspenseful film, the last in the series to be set in Victorian England. For their second outing, they face off against Dr. Moriarty himself (George Zucco), Holmes\'s arch-enemy. The film is the perfect blend of mystery and comedy, showing off the series\'s potential for both. The only real problem with this film is a rather disappointing Moriarty; Zucco looks a tad too... ordinary. For master criminals of the Victorian era, I want flowing overcoats, black hair in a widow\'s peak, and fiendish laughter, not some guy who looks like... well, like a professor.</p>\n<p>The film opens with the diabolical Moriarty defeating justice yet again. A jury grudgingly finds him not guilty of some horrific crime or another just seconds before Holmes rushes in with damning evidence. The best scene in the film comes as the two bitter enemies leave the courtroom; the two share a cab home while discussing their mutual hatred and desire for revenge, and Moriarty promises that his next caper will be so brilliant that it defeats even the mind of Holmes.</p>\n<p>As Holmes and Watson settle down to wait for clues to Moriarty\'s next plan, Moriarty concocts not one but two mysteries, one of them designed to distract Holmes from the real caper. Knowing Holmes\'s attraction to women in peril, he devises a diabolical, murderous plot that resurrects a decades-old murder—surely a lot of trouble to go through just to distract Holmes, but then again, Moriarty\'s not a very nice guy, and he doesn\'t care who thinks so. There\'s a wonderful exchange between him and Bassick (Arthur Hohl), one of his henchmen; when Moriarty informs him what his role will be, Bassick laments what happened to the last person Moriarty enlisted. \"Oh, poor Higgins,\" says Moriarty. \"They found nothing but his boots!\" To which Bassick replies indignantly, \"<i>One</i> boot!\"</p>\n<p>The real crime is the theft of a famous emerald from among the Crown Jewels. Moriarty actually sends a letter to Ronald Ramsgate (Henry Stephenson), the caretaker of the jewels, threatening to steal it. Ramsgate attempts to enlist Holmes\'s help, but Holmes is distracted by the sad case of the Brandon family. Ten years earlier, the elder Brandon was murdered in South America; now, the younger generation of Brandons, including the nance Lloyd (Peter Willes) and the beautiful young Ann (Ida Lupino), are receiving strange, threatening drawings inscribed with ominous dates. Holmes decides that he must protect Ann (he doesn\'t do Lloyd much good), and he sets out to solve the mystery and save Ann from a dreadful murder. Ann\'s fiance Jerrold (Alan Marshal) attempts to stop Ann from enlisting Holmes, setting himself up as a likely suspect. Intrigue ensues.</p>\n<p>Director Alfred L. Werker paces the film perfectly, with just the right blend of tense scenes and opportunities to catch one\'s breath. There are two show-stopping scenes, one in which Ann is chased through a foggy park and the final showdown between Holmes and Moriarty in a dazzling Tower of London set. The sham case Moriarty cooks up is textbook Sherlock Holmes, and it\'s set up so that all along, we are shouting at Holmes to ingore all of the red herrings and stop Moriarty; it\'s only during the down times that we realize that even though the Brandon case is just a distraction, it\'s time better spent for Holmes to save Ann than to save the Crown Jewels.</p>\n<p>Rathbone and Bruce took three years off before resuming their roles in twelve more films in the space of four years; these new scenes transplanted the dynamic duo to the twentieth century and turned Watson into little more than comic relief. There are comedic scenes in this film, but Watson isn\'t a clown. One good example occurs when Watson is lying on the cobblestones at a murder site while Holmes is off measuring things in the bushes. A gentlemanly passerby inquires as to his well-being, and the two have a humorous exchange that has Watson being the source of the comedy without being the butt of the joke.</p>\n<p><b>Baker Street Regulars</b> (actors who appeared in more than two films in the series as different characters):</p>\n<p>Harry Cording, 1st of 8 appearances (as second phoney policeman) <br />Mary Forbes, 1st of 3 (Lady Conyngham) <br />Holmes Herbert, 1st of 6 (Chief Justice) <br />Leyland Hogdson, 1st of 7 (unspecified bobby) <br />Arthur Hohl, 1st of 3 (Bassick) <br />Boyd Irwin, 1st of 3 (bobby) <br />Eric Wilton, 1st of 3 (Conyngham Butler)</p>\n\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','The Adventures of Sherlock Holmes (1939)','','inherit','closed','closed','','320-autosave-v1','','','2019-07-26 15:01:48','2019-07-26 15:01:48','',320,'http://itcamefrombeyondpulp.com/uncategorized/320-autosave-v1/',0,'revision','',0),(324,1,'2019-07-26 15:02:23','2019-07-26 15:02:23','[et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" custom_padding=\"0px|||||\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" custom_margin=\"||11px|||\" next_background_color=\"#000000\" global_module=\"74\"][et_pb_row global_parent=\"74\" custom_padding=\"0px||0px|||\" custom_margin=\"|auto|-66px|auto||\" _builder_version=\"3.26.3\"][et_pb_column type=\"4_4\" global_parent=\"74\" _builder_version=\"3.26.3\"][et_pb_image global_parent=\"74\" src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/header.jpg\" url=\"http://itcamefrombeyondpulp.com\" _builder_version=\"3.26.3\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.26.3\" width=\"1080px\" width_tablet=\"100%\" width_last_edited=\"on|phone\" module_alignment=\"center\" inner_module_alignment=\"center\" custom_padding=\"0px||0px||false|false\" z_index_tablet=\"500\" hover_enabled=\"0\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" prev_background_color=\"#000000\" next_background_color=\"#e02b20\" global_module=\"175\"][et_pb_fullwidth_menu global_parent=\"175\" menu_id=\"2\" submenu_direction=\"downwards\" fullwidth_menu=\"off\" dropdown_menu_text_color=\"#ffffff\" _builder_version=\"3.26.3\" menu_font=\"|800||on|||||\" menu_text_color=\"#ffffff\" menu_font_size=\"22px\" menu_letter_spacing=\"5px\" background_color=\"#e02b20\" border_width_bottom=\"5px\" text_orientation=\"center\" background_layout=\"dark\" custom_margin=\"0px||||false|false\" custom_padding=\"1px||0px||false|false\" z_index_tablet=\"500\" menu_text_shadow_horizontal_length_tablet=\"0px\" menu_text_shadow_vertical_length_tablet=\"0px\" menu_text_shadow_blur_strength_tablet=\"1px\" border_width_bottom_tablet=\"5px\" border_width_bottom_phone=\"5px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" /][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" background_color=\"#e02b20\" width=\"1080px\" module_alignment=\"center\" custom_padding=\"10px||0px|||\" prev_background_color=\"#ffffff\"][et_pb_row _builder_version=\"3.26.3\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" background_color=\"#ffffff\" custom_padding=\"10px|10px||10px|false|false\" border_width_bottom=\"5px\" border_color_bottom=\"#e02b20\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image _builder_version=\"3.26.3\" src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/sherlock.jpg\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\" /][et_pb_text _builder_version=\"3.26.3\" z_index_tablet=\"500\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" text_text_shadow_horizontal_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_vertical_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_blur_strength=\"text_text_shadow_style,%91object Object%93\" link_text_shadow_horizontal_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_vertical_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_blur_strength=\"link_text_shadow_style,%91object Object%93\" ul_text_shadow_horizontal_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_vertical_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_blur_strength=\"ul_text_shadow_style,%91object Object%93\" ol_text_shadow_horizontal_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_vertical_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_blur_strength=\"ol_text_shadow_style,%91object Object%93\" quote_text_shadow_horizontal_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_vertical_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_blur_strength=\"quote_text_shadow_style,%91object Object%93\" header_text_shadow_horizontal_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_vertical_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_blur_strength=\"header_text_shadow_style,%91object Object%93\" header_2_text_shadow_horizontal_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_vertical_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_blur_strength=\"header_2_text_shadow_style,%91object Object%93\" header_3_text_shadow_horizontal_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_vertical_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_blur_strength=\"header_3_text_shadow_style,%91object Object%93\" header_4_text_shadow_horizontal_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_vertical_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_blur_strength=\"header_4_text_shadow_style,%91object Object%93\" header_5_text_shadow_horizontal_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_vertical_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_blur_strength=\"header_5_text_shadow_style,%91object Object%93\" header_6_text_shadow_horizontal_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_vertical_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_blur_strength=\"header_6_text_shadow_style,%91object Object%93\"]\r\n\r\n<h3 style=\"text-align: center;\"><strong><em>The Adventures of Sherlock Holmes</em> (Alfred L. Werker, 1939, 88 min.)</strong></h3>\r\n<p>Basil Rathbone and Nigel Bruce return for the second time as Sherlock Holmes and Dr. Watson in this enjoyable, suspenseful film, the last in the series to be set in Victorian England. For their second outing, they face off against Dr. Moriarty himself (George Zucco), Holmes\'s arch-enemy. The film is the perfect blend of mystery and comedy, showing off the series\'s potential for both. The only real problem with this film is a rather disappointing Moriarty; Zucco looks a tad too... ordinary. For master criminals of the Victorian era, I want flowing overcoats, black hair in a widow\'s peak, and fiendish laughter, not some guy who looks like... well, like a professor.</p>\r\n<p>The film opens with the diabolical Moriarty defeating justice yet again. A jury grudgingly finds him not guilty of some horrific crime or another just seconds before Holmes rushes in with damning evidence. The best scene in the film comes as the two bitter enemies leave the courtroom; the two share a cab home while discussing their mutual hatred and desire for revenge, and Moriarty promises that his next caper will be so brilliant that it defeats even the mind of Holmes.</p>\r\n<p>As Holmes and Watson settle down to wait for clues to Moriarty\'s next plan, Moriarty concocts not one but two mysteries, one of them designed to distract Holmes from the real caper. Knowing Holmes\'s attraction to women in peril, he devises a diabolical, murderous plot that resurrects a decades-old murder—surely a lot of trouble to go through just to distract Holmes, but then again, Moriarty\'s not a very nice guy, and he doesn\'t care who thinks so. There\'s a wonderful exchange between him and Bassick (Arthur Hohl), one of his henchmen; when Moriarty informs him what his role will be, Bassick laments what happened to the last person Moriarty enlisted. \"Oh, poor Higgins,\" says Moriarty. \"They found nothing but his boots!\" To which Bassick replies indignantly, \"<i>One</i> boot!\"</p>\r\n<p>The real crime is the theft of a famous emerald from among the Crown Jewels. Moriarty actually sends a letter to Ronald Ramsgate (Henry Stephenson), the caretaker of the jewels, threatening to steal it. Ramsgate attempts to enlist Holmes\'s help, but Holmes is distracted by the sad case of the Brandon family. Ten years earlier, the elder Brandon was murdered in South America; now, the younger generation of Brandons, including the nance Lloyd (Peter Willes) and the beautiful young Ann (Ida Lupino), are receiving strange, threatening drawings inscribed with ominous dates. Holmes decides that he must protect Ann (he doesn\'t do Lloyd much good), and he sets out to solve the mystery and save Ann from a dreadful murder. Ann\'s fiance Jerrold (Alan Marshal) attempts to stop Ann from enlisting Holmes, setting himself up as a likely suspect. Intrigue ensues.</p>\r\n<p>Director Alfred L. Werker paces the film perfectly, with just the right blend of tense scenes and opportunities to catch one\'s breath. There are two show-stopping scenes, one in which Ann is chased through a foggy park and the final showdown between Holmes and Moriarty in a dazzling Tower of London set. The sham case Moriarty cooks up is textbook Sherlock Holmes, and it\'s set up so that all along, we are shouting at Holmes to ingore all of the red herrings and stop Moriarty; it\'s only during the down times that we realize that even though the Brandon case is just a distraction, it\'s time better spent for Holmes to save Ann than to save the Crown Jewels.</p>\r\n<p>Rathbone and Bruce took three years off before resuming their roles in twelve more films in the space of four years; these new scenes transplanted the dynamic duo to the twentieth century and turned Watson into little more than comic relief. There are comedic scenes in this film, but Watson isn\'t a clown. One good example occurs when Watson is lying on the cobblestones at a murder site while Holmes is off measuring things in the bushes. A gentlemanly passerby inquires as to his well-being, and the two have a humorous exchange that has Watson being the source of the comedy without being the butt of the joke.</p>\r\n<p><b>Baker Street Regulars</b> (actors who appeared in more than two films in the series as different characters):</p>\r\n<p>Harry Cording, 1st of 8 appearances (as second phoney policeman) <br />Mary Forbes, 1st of 3 (Lady Conyngham) <br />Holmes Herbert, 1st of 6 (Chief Justice) <br />Leyland Hogdson, 1st of 7 (unspecified bobby) <br />Arthur Hohl, 1st of 3 (Bassick) <br />Boyd Irwin, 1st of 3 (bobby) <br />Eric Wilton, 1st of 3 (Conyngham Butler)</p>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','The Adventures of Sherlock Holmes (1939)','','inherit','closed','closed','','320-revision-v1','','','2019-07-26 15:02:23','2019-07-26 15:02:23','',320,'http://itcamefrombeyondpulp.com/uncategorized/320-revision-v1/',0,'revision','',0),(325,1,'2019-07-26 15:06:19','2019-07-26 15:06:19','[et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" custom_padding=\"0px|||||\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" custom_margin=\"||11px|||\" next_background_color=\"#000000\" global_module=\"74\"][et_pb_row global_parent=\"74\" custom_padding=\"0px||0px|||\" custom_margin=\"|auto|-66px|auto||\" _builder_version=\"3.26.3\"][et_pb_column type=\"4_4\" global_parent=\"74\" _builder_version=\"3.26.3\"][et_pb_image global_parent=\"74\" src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/header.jpg\" url=\"http://itcamefrombeyondpulp.com\" _builder_version=\"3.26.3\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.26.3\" width=\"1080px\" width_tablet=\"100%\" width_last_edited=\"on|phone\" module_alignment=\"center\" inner_module_alignment=\"center\" custom_padding=\"0px||0px||false|false\" z_index_tablet=\"500\" hover_enabled=\"0\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" prev_background_color=\"#000000\" next_background_color=\"#e02b20\" global_module=\"175\"][et_pb_fullwidth_menu global_parent=\"175\" menu_id=\"2\" submenu_direction=\"downwards\" fullwidth_menu=\"off\" dropdown_menu_text_color=\"#ffffff\" _builder_version=\"3.26.3\" menu_font=\"|800||on|||||\" menu_text_color=\"#ffffff\" menu_font_size=\"22px\" menu_letter_spacing=\"5px\" background_color=\"#e02b20\" border_width_bottom=\"5px\" text_orientation=\"center\" background_layout=\"dark\" custom_margin=\"0px||||false|false\" custom_padding=\"1px||0px||false|false\" z_index_tablet=\"500\" menu_text_shadow_horizontal_length_tablet=\"0px\" menu_text_shadow_vertical_length_tablet=\"0px\" menu_text_shadow_blur_strength_tablet=\"1px\" border_width_bottom_tablet=\"5px\" border_width_bottom_phone=\"5px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" /][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" background_color=\"#e02b20\" width=\"1080px\" module_alignment=\"center\" custom_padding=\"10px||0px|||\" prev_background_color=\"#ffffff\"][et_pb_row _builder_version=\"3.26.3\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" background_color=\"#ffffff\" custom_padding=\"10px|10px||10px|false|false\" border_width_bottom=\"5px\" border_color_bottom=\"#e02b20\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image _builder_version=\"3.26.3\" src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/hound.jpg\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\" /][et_pb_text _builder_version=\"3.26.3\" z_index_tablet=\"500\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" text_text_shadow_horizontal_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_vertical_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_blur_strength=\"text_text_shadow_style,%91object Object%93\" link_text_shadow_horizontal_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_vertical_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_blur_strength=\"link_text_shadow_style,%91object Object%93\" ul_text_shadow_horizontal_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_vertical_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_blur_strength=\"ul_text_shadow_style,%91object Object%93\" ol_text_shadow_horizontal_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_vertical_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_blur_strength=\"ol_text_shadow_style,%91object Object%93\" quote_text_shadow_horizontal_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_vertical_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_blur_strength=\"quote_text_shadow_style,%91object Object%93\" header_text_shadow_horizontal_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_vertical_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_blur_strength=\"header_text_shadow_style,%91object Object%93\" header_2_text_shadow_horizontal_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_vertical_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_blur_strength=\"header_2_text_shadow_style,%91object Object%93\" header_3_text_shadow_horizontal_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_vertical_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_blur_strength=\"header_3_text_shadow_style,%91object Object%93\" header_4_text_shadow_horizontal_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_vertical_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_blur_strength=\"header_4_text_shadow_style,%91object Object%93\" header_5_text_shadow_horizontal_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_vertical_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_blur_strength=\"header_5_text_shadow_style,%91object Object%93\" header_6_text_shadow_horizontal_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_vertical_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_blur_strength=\"header_6_text_shadow_style,%91object Object%93\"]\r\n\r\n<h3 style=\"text-align: center;\"><strong><em>The Hound of the Baskervilles</em> (Sidney Lanfield, 1939, 80 min.)</strong></h3><p>There have been at least twenty film versions of this, Arthur Conan Doyle\'s most famous story. In addition to the films admittedly based on it, there are countless others that clearly take their inspiration from it. It might be because it\'s one of his few novel-length works; shorter works would require a lot of padding, or, like the later films in this series, the creation of an entirely new story. But there\'s also something elemental (if not elementary) about the story that appeals to our seemingly insatiable desire for a good supernatural mystery.</p><p>This was the first teaming of Basil Rathbone and Nigel Bruce as Sherlock Holmes and his assistant, Watson. I had never seen one of these films before, but when I started reading the collected Sherlock Holmes stories last year, it was Rathbone\'s face that I saw while I read them. Strangely enough, I didn\'t see Bruce as Watson, perhaps because the Watson of the stories is clearly a younger man than Bruce, or perhaps because I wasn\'t familiar with Bruce from other films. Apparently, his later incarnations of Watson turn him into a brainless comic sidekick, so I\'m glad I started here.</p><p>Dr. Mortimer (Lionel Atwill) comes to Holmes and Watson with a frightful tale: the Baskerville family is cursed, doomed to die at the teeth of an infernal, spectral hound since an ancestor\'s brutal kidnapping of a village girl. The latest to go, Sir Charles, was a friend of Mortimer\'s, and the elderly doctor wants Holmes\'s help in preventing the same fate from befalling Sir Henry (Richard Greene), the Canadian son of the late Baskerville. Holmes agrees to take the case, although he doubts the supernatural angle. He is intrigued even more when an attempt is made on Sir Henry\'s life within hours of his arrival.</p><p>One odd thing about this, the most famous Sherlock Holmes story, is that Holmes is absent for the entire second act. After sending Watson to the Baskerville estate in Sir Henry\'s company, Holmes disappears. The story then turns into a sort of mystery spoof, where the easily-rattled Watson has to face the fog-cloaked moors and the mythical beast without his better half. Suspects abound: is it the widow\'s-peaked butler Barryman (John Carradine) and his ugly wife (Eily Malyon), who seem to be signaling to an unknown party in the moors? Is it that unknown party (Nigel De Brulier), a wild-haired madman who attempts to squash Watson and Henry with a boulder? Is it John Stapleton (Morton Lowry), the glad-handing young man who lives across the moor, whose sister Beryl (Wendy Barrie) quickly develops a romance with Sir Henry? Or is it actually a huge, spectral hound?</p><p>Although it was filmed entirely in Fox\'s studios, there is plenty of foggy atmosphere to this film. The moors are convincingly eerie, and at times you can forget that it\'s all built from plaster. The Great Grimpen Mire set was reportedly so enormous that Richard Greene got lost in it. The Hound, when it makes its appearance, is actually frightening (even though, in retrospect, it was just a Great Dane), and the scene when it attacks one of the characters is suitably vicious.</p><p>The film is chock-full of great supporting talent. Oddly enough, that supporting talent includes Rathbone and Bruce: the film was conceived as a starring vehicle for Richard Greene, who received top billing. The always dependable Lionel Atwill gets to play a doctor again, albeit not a mad one this time around. John Carradine, who has failed to impress me in other films, was suitably ominous here. A moment of comic relief comes from Barlowe Borland as a lawsuit-happy neighbor.</p><p>After this, Rathbone and Bruce filmed <em>The Adventures of Sherlock Holmes</em> for Fox, and then Universal took over, transplanting the dynamic duo to the twentieth century and having them deal with contemporary crimes in another twelve films. I\'m not sure how I feel about that. I guess I\'ll find out when I watch them.</p><p><b>Baker Street Regulars</b> (actors who appeared in more than two films in the series as different characters):</p><p>Crazily enough, there\'s only one supporting actor who went on to play different roles in other Sherlock Holmes films: David Thursby, who played the open carriage driver here, his first of three appearances in the series.</p>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','The Hound of the Baskervilles (1939)','','publish','closed','closed','','the-hound-of-the-baskervilles-1939','','','2019-07-26 15:06:19','2019-07-26 15:06:19','',0,'http://itcamefrombeyondpulp.com/?p=325',0,'post','',0),(326,1,'2019-07-26 15:05:48','2019-07-26 15:05:48','','hound','','inherit','closed','closed','','hound','','','2019-07-26 15:05:48','2019-07-26 15:05:48','',325,'http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/hound.jpg',0,'attachment','image/jpeg',0),(327,1,'2019-07-26 15:06:19','2019-07-26 15:06:19','[et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" custom_padding=\"0px|||||\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" custom_margin=\"||11px|||\" next_background_color=\"#000000\" global_module=\"74\"][et_pb_row global_parent=\"74\" custom_padding=\"0px||0px|||\" custom_margin=\"|auto|-66px|auto||\" _builder_version=\"3.26.3\"][et_pb_column type=\"4_4\" global_parent=\"74\" _builder_version=\"3.26.3\"][et_pb_image global_parent=\"74\" src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/header.jpg\" url=\"http://itcamefrombeyondpulp.com\" _builder_version=\"3.26.3\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.26.3\" width=\"1080px\" width_tablet=\"100%\" width_last_edited=\"on|phone\" module_alignment=\"center\" inner_module_alignment=\"center\" custom_padding=\"0px||0px||false|false\" z_index_tablet=\"500\" hover_enabled=\"0\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" prev_background_color=\"#000000\" next_background_color=\"#e02b20\" global_module=\"175\"][et_pb_fullwidth_menu global_parent=\"175\" menu_id=\"2\" submenu_direction=\"downwards\" fullwidth_menu=\"off\" dropdown_menu_text_color=\"#ffffff\" _builder_version=\"3.26.3\" menu_font=\"|800||on|||||\" menu_text_color=\"#ffffff\" menu_font_size=\"22px\" menu_letter_spacing=\"5px\" background_color=\"#e02b20\" border_width_bottom=\"5px\" text_orientation=\"center\" background_layout=\"dark\" custom_margin=\"0px||||false|false\" custom_padding=\"1px||0px||false|false\" z_index_tablet=\"500\" menu_text_shadow_horizontal_length_tablet=\"0px\" menu_text_shadow_vertical_length_tablet=\"0px\" menu_text_shadow_blur_strength_tablet=\"1px\" border_width_bottom_tablet=\"5px\" border_width_bottom_phone=\"5px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" /][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" background_color=\"#e02b20\" width=\"1080px\" module_alignment=\"center\" custom_padding=\"10px||0px|||\" prev_background_color=\"#ffffff\"][et_pb_row _builder_version=\"3.26.3\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" background_color=\"#ffffff\" custom_padding=\"10px|10px||10px|false|false\" border_width_bottom=\"5px\" border_color_bottom=\"#e02b20\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image _builder_version=\"3.26.3\" src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/hound.jpg\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\" /][et_pb_text _builder_version=\"3.26.3\" z_index_tablet=\"500\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" text_text_shadow_horizontal_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_vertical_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_blur_strength=\"text_text_shadow_style,%91object Object%93\" link_text_shadow_horizontal_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_vertical_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_blur_strength=\"link_text_shadow_style,%91object Object%93\" ul_text_shadow_horizontal_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_vertical_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_blur_strength=\"ul_text_shadow_style,%91object Object%93\" ol_text_shadow_horizontal_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_vertical_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_blur_strength=\"ol_text_shadow_style,%91object Object%93\" quote_text_shadow_horizontal_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_vertical_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_blur_strength=\"quote_text_shadow_style,%91object Object%93\" header_text_shadow_horizontal_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_vertical_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_blur_strength=\"header_text_shadow_style,%91object Object%93\" header_2_text_shadow_horizontal_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_vertical_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_blur_strength=\"header_2_text_shadow_style,%91object Object%93\" header_3_text_shadow_horizontal_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_vertical_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_blur_strength=\"header_3_text_shadow_style,%91object Object%93\" header_4_text_shadow_horizontal_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_vertical_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_blur_strength=\"header_4_text_shadow_style,%91object Object%93\" header_5_text_shadow_horizontal_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_vertical_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_blur_strength=\"header_5_text_shadow_style,%91object Object%93\" header_6_text_shadow_horizontal_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_vertical_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_blur_strength=\"header_6_text_shadow_style,%91object Object%93\"]\r\n\r\n<h3 style=\"text-align: center;\"><strong><em>The Hound of the Baskervilles</em> (Sidney Lanfield, 1939, 80 min.)</strong></h3><p>There have been at least twenty film versions of this, Arthur Conan Doyle\'s most famous story. In addition to the films admittedly based on it, there are countless others that clearly take their inspiration from it. It might be because it\'s one of his few novel-length works; shorter works would require a lot of padding, or, like the later films in this series, the creation of an entirely new story. But there\'s also something elemental (if not elementary) about the story that appeals to our seemingly insatiable desire for a good supernatural mystery.</p><p>This was the first teaming of Basil Rathbone and Nigel Bruce as Sherlock Holmes and his assistant, Watson. I had never seen one of these films before, but when I started reading the collected Sherlock Holmes stories last year, it was Rathbone\'s face that I saw while I read them. Strangely enough, I didn\'t see Bruce as Watson, perhaps because the Watson of the stories is clearly a younger man than Bruce, or perhaps because I wasn\'t familiar with Bruce from other films. Apparently, his later incarnations of Watson turn him into a brainless comic sidekick, so I\'m glad I started here.</p><p>Dr. Mortimer (Lionel Atwill) comes to Holmes and Watson with a frightful tale: the Baskerville family is cursed, doomed to die at the teeth of an infernal, spectral hound since an ancestor\'s brutal kidnapping of a village girl. The latest to go, Sir Charles, was a friend of Mortimer\'s, and the elderly doctor wants Holmes\'s help in preventing the same fate from befalling Sir Henry (Richard Greene), the Canadian son of the late Baskerville. Holmes agrees to take the case, although he doubts the supernatural angle. He is intrigued even more when an attempt is made on Sir Henry\'s life within hours of his arrival.</p><p>One odd thing about this, the most famous Sherlock Holmes story, is that Holmes is absent for the entire second act. After sending Watson to the Baskerville estate in Sir Henry\'s company, Holmes disappears. The story then turns into a sort of mystery spoof, where the easily-rattled Watson has to face the fog-cloaked moors and the mythical beast without his better half. Suspects abound: is it the widow\'s-peaked butler Barryman (John Carradine) and his ugly wife (Eily Malyon), who seem to be signaling to an unknown party in the moors? Is it that unknown party (Nigel De Brulier), a wild-haired madman who attempts to squash Watson and Henry with a boulder? Is it John Stapleton (Morton Lowry), the glad-handing young man who lives across the moor, whose sister Beryl (Wendy Barrie) quickly develops a romance with Sir Henry? Or is it actually a huge, spectral hound?</p><p>Although it was filmed entirely in Fox\'s studios, there is plenty of foggy atmosphere to this film. The moors are convincingly eerie, and at times you can forget that it\'s all built from plaster. The Great Grimpen Mire set was reportedly so enormous that Richard Greene got lost in it. The Hound, when it makes its appearance, is actually frightening (even though, in retrospect, it was just a Great Dane), and the scene when it attacks one of the characters is suitably vicious.</p><p>The film is chock-full of great supporting talent. Oddly enough, that supporting talent includes Rathbone and Bruce: the film was conceived as a starring vehicle for Richard Greene, who received top billing. The always dependable Lionel Atwill gets to play a doctor again, albeit not a mad one this time around. John Carradine, who has failed to impress me in other films, was suitably ominous here. A moment of comic relief comes from Barlowe Borland as a lawsuit-happy neighbor.</p><p>After this, Rathbone and Bruce filmed <em>The Adventures of Sherlock Holmes</em> for Fox, and then Universal took over, transplanting the dynamic duo to the twentieth century and having them deal with contemporary crimes in another twelve films. I\'m not sure how I feel about that. I guess I\'ll find out when I watch them.</p><p><b>Baker Street Regulars</b> (actors who appeared in more than two films in the series as different characters):</p><p>Crazily enough, there\'s only one supporting actor who went on to play different roles in other Sherlock Holmes films: David Thursby, who played the open carriage driver here, his first of three appearances in the series.</p>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','The Hound of the Baskervilles (1939)','','inherit','closed','closed','','325-revision-v1','','','2019-07-26 15:06:19','2019-07-26 15:06:19','',325,'http://itcamefrombeyondpulp.com/uncategorized/325-revision-v1/',0,'revision','',0),(328,1,'2019-07-26 15:07:56','2019-07-26 15:07:56','[et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" custom_padding=\"0px|||||\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" custom_margin=\"||11px|||\" next_background_color=\"#000000\" global_module=\"74\"][et_pb_row global_parent=\"74\" custom_padding=\"0px||0px|||\" custom_margin=\"|auto|-66px|auto||\" _builder_version=\"3.26.3\"][et_pb_column type=\"4_4\" global_parent=\"74\" _builder_version=\"3.26.3\"][et_pb_image global_parent=\"74\" src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/header.jpg\" url=\"http://itcamefrombeyondpulp.com\" _builder_version=\"3.26.3\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.26.3\" width=\"1080px\" width_tablet=\"100%\" width_last_edited=\"on|phone\" module_alignment=\"center\" inner_module_alignment=\"center\" custom_padding=\"0px||0px||false|false\" z_index_tablet=\"500\" hover_enabled=\"0\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" prev_background_color=\"#000000\" next_background_color=\"#e02b20\" global_module=\"175\"][et_pb_fullwidth_menu global_parent=\"175\" menu_id=\"2\" submenu_direction=\"downwards\" fullwidth_menu=\"off\" dropdown_menu_text_color=\"#ffffff\" _builder_version=\"3.26.3\" menu_font=\"|800||on|||||\" menu_text_color=\"#ffffff\" menu_font_size=\"22px\" menu_letter_spacing=\"5px\" background_color=\"#e02b20\" border_width_bottom=\"5px\" text_orientation=\"center\" background_layout=\"dark\" custom_margin=\"0px||||false|false\" custom_padding=\"1px||0px||false|false\" z_index_tablet=\"500\" menu_text_shadow_horizontal_length_tablet=\"0px\" menu_text_shadow_vertical_length_tablet=\"0px\" menu_text_shadow_blur_strength_tablet=\"1px\" border_width_bottom_tablet=\"5px\" border_width_bottom_phone=\"5px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" /][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" background_color=\"#e02b20\" width=\"1080px\" module_alignment=\"center\" custom_padding=\"10px||0px|||\" prev_background_color=\"#ffffff\"][et_pb_row _builder_version=\"3.26.3\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" background_color=\"#ffffff\" custom_padding=\"10px|10px||10px|false|false\" border_width_bottom=\"5px\" border_color_bottom=\"#e02b20\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image _builder_version=\"3.26.3\" src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/hound.jpg\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\" /][et_pb_text _builder_version=\"3.26.3\" z_index_tablet=\"500\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" text_text_shadow_horizontal_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_vertical_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_blur_strength=\"text_text_shadow_style,%91object Object%93\" link_text_shadow_horizontal_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_vertical_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_blur_strength=\"link_text_shadow_style,%91object Object%93\" ul_text_shadow_horizontal_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_vertical_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_blur_strength=\"ul_text_shadow_style,%91object Object%93\" ol_text_shadow_horizontal_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_vertical_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_blur_strength=\"ol_text_shadow_style,%91object Object%93\" quote_text_shadow_horizontal_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_vertical_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_blur_strength=\"quote_text_shadow_style,%91object Object%93\" header_text_shadow_horizontal_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_vertical_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_blur_strength=\"header_text_shadow_style,%91object Object%93\" header_2_text_shadow_horizontal_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_vertical_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_blur_strength=\"header_2_text_shadow_style,%91object Object%93\" header_3_text_shadow_horizontal_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_vertical_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_blur_strength=\"header_3_text_shadow_style,%91object Object%93\" header_4_text_shadow_horizontal_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_vertical_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_blur_strength=\"header_4_text_shadow_style,%91object Object%93\" header_5_text_shadow_horizontal_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_vertical_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_blur_strength=\"header_5_text_shadow_style,%91object Object%93\" header_6_text_shadow_horizontal_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_vertical_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_blur_strength=\"header_6_text_shadow_style,%91object Object%93\"]\n\n<h3 style=\"text-align: center;\"><strong><em>The Hound of the Baskervilles</em> (Sidney Lanfield, 1939, 80 min.)</strong></h3>\n<p>There have been at least twenty film versions of this, Arthur Conan Doyle\'s most famous story. In addition to the films admittedly based on it, there are countless others that clearly take their inspiration from it. It might be because it\'s one of his few novel-length works; shorter works would require a lot of padding, or, like the later films in this series, the creation of an entirely new story. But there\'s also something elemental (if not elementary) about the story that appeals to our seemingly insatiable desire for a good supernatural mystery.</p>\n<p>This was the first teaming of Basil Rathbone and Nigel Bruce as Sherlock Holmes and his assistant, Watson. I had never seen one of these films before, but when I started reading the collected Sherlock Holmes stories last year, it was Rathbone\'s face that I saw while I read them. Strangely enough, I didn\'t see Bruce as Watson, perhaps because the Watson of the stories is clearly a younger man than Bruce, or perhaps because I wasn\'t familiar with Bruce from other films. Apparently, his later incarnations of Watson turn him into a brainless comic sidekick, so I\'m glad I started here.</p>\n<p>Dr. Mortimer (Lionel Atwill) comes to Holmes and Watson with a frightful tale: the Baskerville family is cursed, doomed to die at the teeth of an infernal, spectral hound since an ancestor\'s brutal kidnapping of a village girl. The latest to go, Sir Charles, was a friend of Mortimer\'s, and the elderly doctor wants Holmes\'s help in preventing the same fate from befalling Sir Henry (Richard Greene), the Canadian son of the late Baskerville. Holmes agrees to take the case, although he doubts the supernatural angle. He is intrigued even more when an attempt is made on Sir Henry\'s life within hours of his arrival.</p>\n<p>One odd thing about this, the most famous Sherlock Holmes story, is that Holmes is absent for the entire second act. After sending Watson to the Baskerville estate in Sir Henry\'s company, Holmes disappears. The story then turns into a sort of mystery spoof, where the easily-rattled Watson has to face the fog-cloaked moors and the mythical beast without his better half. Suspects abound: is it the widow\'s-peaked butler Barryman (John Carradine) and his ugly wife (Eily Malyon), who seem to be signaling to an unknown party in the moors? Is it that unknown party (Nigel De Brulier), a wild-haired madman who attempts to squash Watson and Henry with a boulder? Is it John Stapleton (Morton Lowry), the glad-handing young man who lives across the moor, whose sister Beryl (Wendy Barrie) quickly develops a romance with Sir Henry? Or is it actually a huge, spectral hound?</p>\n<p>Although it was filmed entirely in Fox\'s studios, there is plenty of foggy atmosphere to this film. The moors are convincingly eerie, and at times you can forget that it\'s all built from plaster. The Great Grimpen Mire set was reportedly so enormous that Richard Greene got lost in it. The Hound, when it makes its appearance, is actually frightening (even though, in retrospect, it was just a Great Dane), and the scene when it attacks one of the characters is suitably vicious.</p>\n<p>The film is chock-full of great supporting talent. Oddly enough, that supporting talent includes Rathbone and Bruce: the film was conceived as a starring vehicle for Richard Greene, who received top billing. The always dependable Lionel Atwill gets to play a doctor again, albeit not a mad one this time around. John Carradine, who has failed to impress me in other films, was suitably ominous here. A moment of comic relief comes from Barlowe Borland as a lawsuit-happy neighbor.</p>\n<p>After this, Rathbone and Bruce filmed <em>The Adventures of Sherlock Holmes</em> for Fox, and then Universal took over, transplanting the dynamic duo to the twentieth century and having them deal with contemporary crimes in another twelve films. I\'m not sure how I feel about that. I guess I\'ll find out when I watch them.</p>\n<p><b>Baker Street Regulars</b> (actors who appeared in more than two films in the series as different characters):</p>\n<p>Crazily enough, there\'s only one supporting actor who went on to play different roles in other Sherlock Holmes films: David Thursby, who played the open carriage driver here, his first of three appearances in the series.</p>\n\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','The Hound of the Baskervilles (1939)','','inherit','closed','closed','','325-autosave-v1','','','2019-07-26 15:07:56','2019-07-26 15:07:56','',325,'http://itcamefrombeyondpulp.com/uncategorized/325-autosave-v1/',0,'revision','',0),(329,1,'2019-07-26 15:08:36','2019-07-26 15:08:36','[et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" custom_padding=\"0px|||||\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" custom_margin=\"||11px|||\" next_background_color=\"#000000\" global_module=\"74\"][et_pb_row global_parent=\"74\" custom_padding=\"0px||0px|||\" custom_margin=\"|auto|-66px|auto||\" _builder_version=\"3.26.3\"][et_pb_column type=\"4_4\" global_parent=\"74\" _builder_version=\"3.26.3\"][et_pb_image global_parent=\"74\" src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/header.jpg\" url=\"http://itcamefrombeyondpulp.com\" _builder_version=\"3.26.3\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.26.3\" width=\"1080px\" width_tablet=\"100%\" width_last_edited=\"on|phone\" module_alignment=\"center\" inner_module_alignment=\"center\" custom_padding=\"0px||0px||false|false\" z_index_tablet=\"500\" hover_enabled=\"0\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" prev_background_color=\"#000000\" next_background_color=\"#e02b20\" global_module=\"175\"][et_pb_fullwidth_menu global_parent=\"175\" menu_id=\"2\" submenu_direction=\"downwards\" fullwidth_menu=\"off\" dropdown_menu_text_color=\"#ffffff\" _builder_version=\"3.26.3\" menu_font=\"|800||on|||||\" menu_text_color=\"#ffffff\" menu_font_size=\"22px\" menu_letter_spacing=\"5px\" background_color=\"#e02b20\" border_width_bottom=\"5px\" text_orientation=\"center\" background_layout=\"dark\" custom_margin=\"0px||||false|false\" custom_padding=\"1px||0px||false|false\" z_index_tablet=\"500\" menu_text_shadow_horizontal_length_tablet=\"0px\" menu_text_shadow_vertical_length_tablet=\"0px\" menu_text_shadow_blur_strength_tablet=\"1px\" border_width_bottom_tablet=\"5px\" border_width_bottom_phone=\"5px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" /][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" background_color=\"#e02b20\" width=\"1080px\" module_alignment=\"center\" custom_padding=\"10px||0px|||\" hover_enabled=\"0\" width_last_edited=\"on|tablet\" width_phone=\"100%\" width_tablet=\"100%\" prev_background_color=\"#ffffff\"][et_pb_row custom_padding=\"10px|10px||\" _builder_version=\"3.26.3\" background_color=\"#ffffff\" border_width_bottom=\"5px\" border_color_bottom=\"#e02b20\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.26.3\" z_index_tablet=\"500\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\"]\r\n\r\n<h1 style=\"text-align: center;\">Movies &amp; TV Reviews</h1>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.26.3\" background_color=\"#ffffff\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" column_structure=\"1_3,1_3,1_3\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.26.3\" z_index_tablet=\"500\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\"]\r\n\r\n<h3 style=\"text-align: center;\">Sci-Fi</h3>\r\n<p style=\"text-align: center;\"><strong><a href=\"http://itcamefrombeyondpulp.com/movies/children-of-men-2006/\">Children of Men (2006)</a><br /></strong><strong><a href=\"http://itcamefrombeyondpulp.com/movies/cloverfield-2008/\">Cloverfield (2008)</a><br /><a href=\"http://itcamefrombeyondpulp.com/movies/the-dark-knight-2008/\">The Dark Knight (2008)</a><br /><a href=\"http://itcamefrombeyondpulp.com/movies/the-fountain-2006/\">The Fountain (2006)</a><br /><a href=\"http://itcamefrombeyondpulp.com/movies/hardware-1990/\">Hardware (1990)</a><br /><a href=\"http://itcamefrombeyondpulp.com/movies/harry-potter-and-the-chamber-of-secrets-2002/\">Harry Potter and the Chamber of Secrets (2002)</a><br /><a href=\"http://itcamefrombeyondpulp.com/movies/harry-potter-and-the-sorcerers-stone-2001/\">Harry Potter and the Sorcerer\'s Stone (2001)</a><br /><a href=\"http://itcamefrombeyondpulp.com/movies/maniac-1934/\">Maniac (1934)</a><br /><a href=\"http://itcamefrombeyondpulp.com/movies/the-phantom-planet-1961/\">The Phantom Planet (1961)</a><br /><a href=\"http://itcamefrombeyondpulp.com/movies/predator-1987/\">Predator (1987)</a><br /></strong><a href=\"http://itcamefrombeyondpulp.com/movies/serenity-2005/\"><strong>Serenity (2005)</strong></a><br /><a href=\"http://itcamefrombeyondpulp.com/movies/x-men-the-last-stand-2006/\"><strong>X-Men: The Last Stand (2006)</strong></a></p>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.26.3\" z_index_tablet=\"500\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" text_text_shadow_horizontal_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_vertical_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_blur_strength=\"text_text_shadow_style,%91object Object%93\" link_text_shadow_horizontal_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_vertical_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_blur_strength=\"link_text_shadow_style,%91object Object%93\" ul_text_shadow_horizontal_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_vertical_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_blur_strength=\"ul_text_shadow_style,%91object Object%93\" ol_text_shadow_horizontal_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_vertical_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_blur_strength=\"ol_text_shadow_style,%91object Object%93\" quote_text_shadow_horizontal_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_vertical_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_blur_strength=\"quote_text_shadow_style,%91object Object%93\" header_text_shadow_horizontal_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_vertical_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_blur_strength=\"header_text_shadow_style,%91object Object%93\" header_2_text_shadow_horizontal_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_vertical_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_blur_strength=\"header_2_text_shadow_style,%91object Object%93\" header_3_text_shadow_horizontal_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_vertical_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_blur_strength=\"header_3_text_shadow_style,%91object Object%93\" header_4_text_shadow_horizontal_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_vertical_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_blur_strength=\"header_4_text_shadow_style,%91object Object%93\" header_5_text_shadow_horizontal_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_vertical_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_blur_strength=\"header_5_text_shadow_style,%91object Object%93\" header_6_text_shadow_horizontal_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_vertical_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_blur_strength=\"header_6_text_shadow_style,%91object Object%93\"]\r\n\r\n<h3 style=\"text-align: center;\">Horror</h3>\r\n<p style=\"text-align: center;\"><a href=\"http://itcamefrombeyondpulp.com/movies/bloodrayne-2-deliverance-2007/\"><strong>BloodRayne 2: Deliverance (2007)</strong></a><br /><a href=\"http://itcamefrombeyondpulp.com/movies/the-cat-and-the-canary-1927/\"><strong>The Cat and the Canary (1927)</strong></a><br /><a href=\"http://itcamefrombeyondpulp.com/movies/the-children-1980/\"><strong>The Children (1980)</strong></a><br /><strong><a href=\"http://itcamefrombeyondpulp.com/movies/colin-2008/\">Colin (2008)</a></strong><br /><strong><a href=\"http://itcamefrombeyondpulp.com/movies/dark-water-2005/\">Dark Water (2005)</a></strong><br /><strong><a href=\"http://itcamefrombeyondpulp.com/movies/the-devils-daughter-1973/\">The Devil\'s Daughter (1973)</a></strong><br /><a href=\"http://itcamefrombeyondpulp.com/movies/masters-of-horror-the-black-cat-2007/\"><strong>Masters of Horror: The Black Cat (2007)</strong></a></p>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.26.3\" z_index_tablet=\"500\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" text_text_shadow_horizontal_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_vertical_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_blur_strength=\"text_text_shadow_style,%91object Object%93\" link_text_shadow_horizontal_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_vertical_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_blur_strength=\"link_text_shadow_style,%91object Object%93\" ul_text_shadow_horizontal_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_vertical_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_blur_strength=\"ul_text_shadow_style,%91object Object%93\" ol_text_shadow_horizontal_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_vertical_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_blur_strength=\"ol_text_shadow_style,%91object Object%93\" quote_text_shadow_horizontal_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_vertical_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_blur_strength=\"quote_text_shadow_style,%91object Object%93\" header_text_shadow_horizontal_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_vertical_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_blur_strength=\"header_text_shadow_style,%91object Object%93\" header_2_text_shadow_horizontal_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_vertical_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_blur_strength=\"header_2_text_shadow_style,%91object Object%93\" header_3_text_shadow_horizontal_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_vertical_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_blur_strength=\"header_3_text_shadow_style,%91object Object%93\" header_4_text_shadow_horizontal_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_vertical_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_blur_strength=\"header_4_text_shadow_style,%91object Object%93\" header_5_text_shadow_horizontal_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_vertical_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_blur_strength=\"header_5_text_shadow_style,%91object Object%93\" header_6_text_shadow_horizontal_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_vertical_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_blur_strength=\"header_6_text_shadow_style,%91object Object%93\"]\r\n\r\n<h3 style=\"text-align: center;\">Whatnot</h3><p style=\"text-align: center;\"><a href=\"http://itcamefrombeyondpulp.com/movies/the-adventures-of-sherlock-holmes-1939/\"><strong>The Adventures of Sherlock Holmes (1939)</strong></a><br /><a href=\"http://itcamefrombeyondpulp.com/movies/the-hound-of-the-baskervilles-1939/\"><strong>The Hound of the Baskervilles (1939)</strong></a></p>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Movies','','inherit','closed','closed','','45-revision-v1','','','2019-07-26 15:08:36','2019-07-26 15:08:36','',45,'http://itcamefrombeyondpulp.com/uncategorized/45-revision-v1/',0,'revision','',0),(330,1,'2019-07-26 18:36:03','2019-07-26 18:36:03','[et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" custom_padding=\"0px|||||\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" custom_margin=\"||11px|||\" next_background_color=\"#000000\" global_module=\"74\"][et_pb_row global_parent=\"74\" custom_padding=\"0px||0px|||\" custom_margin=\"|auto|-66px|auto||\" _builder_version=\"3.26.3\"][et_pb_column type=\"4_4\" global_parent=\"74\" _builder_version=\"3.26.3\"][et_pb_image global_parent=\"74\" src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/header.jpg\" url=\"http://itcamefrombeyondpulp.com\" _builder_version=\"3.26.3\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.26.3\" width=\"1080px\" width_tablet=\"100%\" width_last_edited=\"on|phone\" module_alignment=\"center\" inner_module_alignment=\"center\" custom_padding=\"0px||0px||false|false\" z_index_tablet=\"500\" hover_enabled=\"0\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" prev_background_color=\"#000000\" next_background_color=\"#e02b20\" global_module=\"175\"][et_pb_fullwidth_menu global_parent=\"175\" menu_id=\"2\" submenu_direction=\"downwards\" fullwidth_menu=\"off\" dropdown_menu_text_color=\"#ffffff\" _builder_version=\"3.26.3\" menu_font=\"|800||on|||||\" menu_text_color=\"#ffffff\" menu_font_size=\"22px\" menu_letter_spacing=\"5px\" background_color=\"#e02b20\" border_width_bottom=\"5px\" text_orientation=\"center\" background_layout=\"dark\" custom_margin=\"0px||||false|false\" custom_padding=\"1px||0px||false|false\" z_index_tablet=\"500\" menu_text_shadow_horizontal_length_tablet=\"0px\" menu_text_shadow_vertical_length_tablet=\"0px\" menu_text_shadow_blur_strength_tablet=\"1px\" border_width_bottom_tablet=\"5px\" border_width_bottom_phone=\"5px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" /][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" background_color=\"#e02b20\" width=\"1080px\" module_alignment=\"center\" custom_padding=\"10px||0px|||\" prev_background_color=\"#ffffff\"][et_pb_row _builder_version=\"3.26.3\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" background_color=\"#ffffff\" custom_padding=\"10px|10px||10px|false|false\" border_width_bottom=\"5px\" border_color_bottom=\"#e02b20\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image _builder_version=\"3.26.3\" src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/dressed.jpg\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\" /][et_pb_text _builder_version=\"3.26.3\" z_index_tablet=\"500\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" text_text_shadow_horizontal_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_vertical_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_blur_strength=\"text_text_shadow_style,%91object Object%93\" link_text_shadow_horizontal_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_vertical_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_blur_strength=\"link_text_shadow_style,%91object Object%93\" ul_text_shadow_horizontal_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_vertical_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_blur_strength=\"ul_text_shadow_style,%91object Object%93\" ol_text_shadow_horizontal_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_vertical_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_blur_strength=\"ol_text_shadow_style,%91object Object%93\" quote_text_shadow_horizontal_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_vertical_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_blur_strength=\"quote_text_shadow_style,%91object Object%93\" header_text_shadow_horizontal_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_vertical_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_blur_strength=\"header_text_shadow_style,%91object Object%93\" header_2_text_shadow_horizontal_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_vertical_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_blur_strength=\"header_2_text_shadow_style,%91object Object%93\" header_3_text_shadow_horizontal_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_vertical_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_blur_strength=\"header_3_text_shadow_style,%91object Object%93\" header_4_text_shadow_horizontal_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_vertical_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_blur_strength=\"header_4_text_shadow_style,%91object Object%93\" header_5_text_shadow_horizontal_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_vertical_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_blur_strength=\"header_5_text_shadow_style,%91object Object%93\" header_6_text_shadow_horizontal_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_vertical_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_blur_strength=\"header_6_text_shadow_style,%91object Object%93\"]\r\n\r\n<h3 style=\"text-align: center;\"><strong><em>Dressed to Kill</em> (Roy William Neill, 1946, 72 min.)</strong></h3><p>The Rathbone/Bruce series of Sherlock Holmes films didn\'t exactly limp to a close, but it didn\'t go out on a high note either. <em>Dressed to Kill</em> is a passable entry, featuring a pretty good adaptation of Sir Arthur Conan Doyle\'s story \"The Adventure of the Six Napoleons,\" Basil Rathbone\'s usual good performance as Holmes, and the series\'s only tantalizing mention of one of the most intriguing characters in the Holmes canon, Irene Adler, \"The Woman.\" On hearing her name in the opening moments of the film, I had hopes that she would be introduced as a foil, but I was disappointed.</p><p>The story concerns a series of mysterious attacks on seemingly random people; the only connection between them is that they all purchased identical music boxes at an auction. When Holmes is brought into the case after an attack on Watson\'s friend Stinky Emery (Edmund Breon), he discovers that the music boxes were made in prison by a convict who had stolen the Bank of England\'s printing plates for making £5 notes. Before he could be captured, he hid them somewhere, and they were never found. Holmes deduces that the convict had somehow hidden a message inside the music boxes about where to find the plates, and he must figure out the code before the bad guys, led by Hilda Courtney (Patricia Morison), find them and print their own money.</p><p>The film\'s best addition to the story is the way the code works. The music boxes all play the same melody, with minor variations, and Holmes has to figure out what the changed notes mean. The film is nicer to Watson than previous entries in that it allows him to suggest the key to breaking the code <i>and</i> the identity of Dr. S, albeit accidentally. (Of course, there\'s a scene where he attempts to placate a frightened girl by making duck noises, so he doesn\'t escape his usual comic relief role.)</p><p>It seems to me that the mystery was unnecessarily prolonged. The convict was captured a mere 15 minutes after stealing the plates, and he likely went in a single direction. Holmes could have easily reduced the search area on the basis of that evidence, and once he got the clue \"Dr. S\"—detailing a location among the bookshelves of an unknown doctor—it shouldn\'t have been so difficult to figure out what the code meant. But that easy solution would have made for a very short film.</p><p>Things were getting sloppy by the end of the series. There are some noticeably odd cuts that might have resulted from the restoration process—these films were all restored by the UCLA Film and Television Archive—but they might just as possibly result from an editor instructed to finish the film in a hurry. Patricia Morison\'s accent leaves much to be desired, and there\'s an odd bit of unnecessary narration at the beginning. But the film contains at least one marvelous scene—Stinky Emery\'s death—and the process by which Holmes figures out the code is interesting, if, as I mentioned, unnecessary. The film\'s title has absolutely nothing to do with the film itself; I\'m sure the reason behind it would make a good story.</p><p>And this was it for the series (although I still have four to go as of this writing). Director Roy William Neill would finish one more film before dying of a heart attack in late 1946. Basil Rathbone would never really overcome being typecast, appearing in a handful of films before his death in 1967. Nigel Bruce had always played bumbling Brits, and he continued to do so until his death in 1953.</p><p><b>Baker Street Regulars</b> (actors who appeared in more than two films in the series as different characters):</p><p>Wilson Benge, 5th of 5 appearances (as Minister on museum tour) <br />Harry Cording, 8th of 8 (Hamid) <br />Holmes Herbert, 6th of 6 (Ebenezer Crabtree) <br />Leyland Hodgson, 7th of 7 (tour guide) <br />Olaf Hytten, 6th of 6 (Alfred, auction house bookkeeper) <br />Boyd Irwin, 3rd of 3 (detective with X-ray photos) <br />Sally Shepherd, 3rd of 3 (Tobacconist) <br />Ian Wolfe, 4th of 4 (Commissioner of Scotland Yard) <br />Frederick Worlock, 6th of 6 (Colonel Cavanaugh)</p>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Dressed to Kill (1946)','','publish','closed','closed','','dressed-to-kill-1946','','','2019-07-26 18:36:03','2019-07-26 18:36:03','',0,'http://itcamefrombeyondpulp.com/?p=330',0,'post','',0),(331,1,'2019-07-26 18:35:44','2019-07-26 18:35:44','','dressed','','inherit','closed','closed','','dressed','','','2019-07-26 18:35:44','2019-07-26 18:35:44','',330,'http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/dressed.jpg',0,'attachment','image/jpeg',0),(332,1,'2019-07-26 18:36:03','2019-07-26 18:36:03','[et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" custom_padding=\"0px|||||\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" custom_margin=\"||11px|||\" next_background_color=\"#000000\" global_module=\"74\"][et_pb_row global_parent=\"74\" custom_padding=\"0px||0px|||\" custom_margin=\"|auto|-66px|auto||\" _builder_version=\"3.26.3\"][et_pb_column type=\"4_4\" global_parent=\"74\" _builder_version=\"3.26.3\"][et_pb_image global_parent=\"74\" src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/header.jpg\" url=\"http://itcamefrombeyondpulp.com\" _builder_version=\"3.26.3\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.26.3\" width=\"1080px\" width_tablet=\"100%\" width_last_edited=\"on|phone\" module_alignment=\"center\" inner_module_alignment=\"center\" custom_padding=\"0px||0px||false|false\" z_index_tablet=\"500\" hover_enabled=\"0\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" prev_background_color=\"#000000\" next_background_color=\"#e02b20\" global_module=\"175\"][et_pb_fullwidth_menu global_parent=\"175\" menu_id=\"2\" submenu_direction=\"downwards\" fullwidth_menu=\"off\" dropdown_menu_text_color=\"#ffffff\" _builder_version=\"3.26.3\" menu_font=\"|800||on|||||\" menu_text_color=\"#ffffff\" menu_font_size=\"22px\" menu_letter_spacing=\"5px\" background_color=\"#e02b20\" border_width_bottom=\"5px\" text_orientation=\"center\" background_layout=\"dark\" custom_margin=\"0px||||false|false\" custom_padding=\"1px||0px||false|false\" z_index_tablet=\"500\" menu_text_shadow_horizontal_length_tablet=\"0px\" menu_text_shadow_vertical_length_tablet=\"0px\" menu_text_shadow_blur_strength_tablet=\"1px\" border_width_bottom_tablet=\"5px\" border_width_bottom_phone=\"5px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" /][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" background_color=\"#e02b20\" width=\"1080px\" module_alignment=\"center\" custom_padding=\"10px||0px|||\" prev_background_color=\"#ffffff\"][et_pb_row _builder_version=\"3.26.3\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" background_color=\"#ffffff\" custom_padding=\"10px|10px||10px|false|false\" border_width_bottom=\"5px\" border_color_bottom=\"#e02b20\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image _builder_version=\"3.26.3\" src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/dressed.jpg\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\" /][et_pb_text _builder_version=\"3.26.3\" z_index_tablet=\"500\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" text_text_shadow_horizontal_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_vertical_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_blur_strength=\"text_text_shadow_style,%91object Object%93\" link_text_shadow_horizontal_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_vertical_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_blur_strength=\"link_text_shadow_style,%91object Object%93\" ul_text_shadow_horizontal_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_vertical_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_blur_strength=\"ul_text_shadow_style,%91object Object%93\" ol_text_shadow_horizontal_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_vertical_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_blur_strength=\"ol_text_shadow_style,%91object Object%93\" quote_text_shadow_horizontal_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_vertical_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_blur_strength=\"quote_text_shadow_style,%91object Object%93\" header_text_shadow_horizontal_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_vertical_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_blur_strength=\"header_text_shadow_style,%91object Object%93\" header_2_text_shadow_horizontal_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_vertical_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_blur_strength=\"header_2_text_shadow_style,%91object Object%93\" header_3_text_shadow_horizontal_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_vertical_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_blur_strength=\"header_3_text_shadow_style,%91object Object%93\" header_4_text_shadow_horizontal_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_vertical_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_blur_strength=\"header_4_text_shadow_style,%91object Object%93\" header_5_text_shadow_horizontal_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_vertical_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_blur_strength=\"header_5_text_shadow_style,%91object Object%93\" header_6_text_shadow_horizontal_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_vertical_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_blur_strength=\"header_6_text_shadow_style,%91object Object%93\"]\r\n\r\n<h3 style=\"text-align: center;\"><strong><em>Dressed to Kill</em> (Roy William Neill, 1946, 72 min.)</strong></h3><p>The Rathbone/Bruce series of Sherlock Holmes films didn\'t exactly limp to a close, but it didn\'t go out on a high note either. <em>Dressed to Kill</em> is a passable entry, featuring a pretty good adaptation of Sir Arthur Conan Doyle\'s story \"The Adventure of the Six Napoleons,\" Basil Rathbone\'s usual good performance as Holmes, and the series\'s only tantalizing mention of one of the most intriguing characters in the Holmes canon, Irene Adler, \"The Woman.\" On hearing her name in the opening moments of the film, I had hopes that she would be introduced as a foil, but I was disappointed.</p><p>The story concerns a series of mysterious attacks on seemingly random people; the only connection between them is that they all purchased identical music boxes at an auction. When Holmes is brought into the case after an attack on Watson\'s friend Stinky Emery (Edmund Breon), he discovers that the music boxes were made in prison by a convict who had stolen the Bank of England\'s printing plates for making £5 notes. Before he could be captured, he hid them somewhere, and they were never found. Holmes deduces that the convict had somehow hidden a message inside the music boxes about where to find the plates, and he must figure out the code before the bad guys, led by Hilda Courtney (Patricia Morison), find them and print their own money.</p><p>The film\'s best addition to the story is the way the code works. The music boxes all play the same melody, with minor variations, and Holmes has to figure out what the changed notes mean. The film is nicer to Watson than previous entries in that it allows him to suggest the key to breaking the code <i>and</i> the identity of Dr. S, albeit accidentally. (Of course, there\'s a scene where he attempts to placate a frightened girl by making duck noises, so he doesn\'t escape his usual comic relief role.)</p><p>It seems to me that the mystery was unnecessarily prolonged. The convict was captured a mere 15 minutes after stealing the plates, and he likely went in a single direction. Holmes could have easily reduced the search area on the basis of that evidence, and once he got the clue \"Dr. S\"—detailing a location among the bookshelves of an unknown doctor—it shouldn\'t have been so difficult to figure out what the code meant. But that easy solution would have made for a very short film.</p><p>Things were getting sloppy by the end of the series. There are some noticeably odd cuts that might have resulted from the restoration process—these films were all restored by the UCLA Film and Television Archive—but they might just as possibly result from an editor instructed to finish the film in a hurry. Patricia Morison\'s accent leaves much to be desired, and there\'s an odd bit of unnecessary narration at the beginning. But the film contains at least one marvelous scene—Stinky Emery\'s death—and the process by which Holmes figures out the code is interesting, if, as I mentioned, unnecessary. The film\'s title has absolutely nothing to do with the film itself; I\'m sure the reason behind it would make a good story.</p><p>And this was it for the series (although I still have four to go as of this writing). Director Roy William Neill would finish one more film before dying of a heart attack in late 1946. Basil Rathbone would never really overcome being typecast, appearing in a handful of films before his death in 1967. Nigel Bruce had always played bumbling Brits, and he continued to do so until his death in 1953.</p><p><b>Baker Street Regulars</b> (actors who appeared in more than two films in the series as different characters):</p><p>Wilson Benge, 5th of 5 appearances (as Minister on museum tour) <br />Harry Cording, 8th of 8 (Hamid) <br />Holmes Herbert, 6th of 6 (Ebenezer Crabtree) <br />Leyland Hodgson, 7th of 7 (tour guide) <br />Olaf Hytten, 6th of 6 (Alfred, auction house bookkeeper) <br />Boyd Irwin, 3rd of 3 (detective with X-ray photos) <br />Sally Shepherd, 3rd of 3 (Tobacconist) <br />Ian Wolfe, 4th of 4 (Commissioner of Scotland Yard) <br />Frederick Worlock, 6th of 6 (Colonel Cavanaugh)</p>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Dressed to Kill (1946)','','inherit','closed','closed','','330-revision-v1','','','2019-07-26 18:36:03','2019-07-26 18:36:03','',330,'http://itcamefrombeyondpulp.com/uncategorized/330-revision-v1/',0,'revision','',0),(333,1,'2019-07-26 18:38:49','2019-07-26 18:38:49','[et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" custom_padding=\"0px|||||\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" custom_margin=\"||11px|||\" next_background_color=\"#000000\" global_module=\"74\"][et_pb_row global_parent=\"74\" custom_padding=\"0px||0px|||\" custom_margin=\"|auto|-66px|auto||\" _builder_version=\"3.26.3\"][et_pb_column type=\"4_4\" global_parent=\"74\" _builder_version=\"3.26.3\"][et_pb_image global_parent=\"74\" src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/header.jpg\" url=\"http://itcamefrombeyondpulp.com\" _builder_version=\"3.26.3\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.26.3\" width=\"1080px\" width_tablet=\"100%\" width_last_edited=\"on|phone\" module_alignment=\"center\" inner_module_alignment=\"center\" custom_padding=\"0px||0px||false|false\" z_index_tablet=\"500\" hover_enabled=\"0\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" prev_background_color=\"#000000\" next_background_color=\"#e02b20\" global_module=\"175\"][et_pb_fullwidth_menu global_parent=\"175\" menu_id=\"2\" submenu_direction=\"downwards\" fullwidth_menu=\"off\" dropdown_menu_text_color=\"#ffffff\" _builder_version=\"3.26.3\" menu_font=\"|800||on|||||\" menu_text_color=\"#ffffff\" menu_font_size=\"22px\" menu_letter_spacing=\"5px\" background_color=\"#e02b20\" border_width_bottom=\"5px\" text_orientation=\"center\" background_layout=\"dark\" custom_margin=\"0px||||false|false\" custom_padding=\"1px||0px||false|false\" z_index_tablet=\"500\" menu_text_shadow_horizontal_length_tablet=\"0px\" menu_text_shadow_vertical_length_tablet=\"0px\" menu_text_shadow_blur_strength_tablet=\"1px\" border_width_bottom_tablet=\"5px\" border_width_bottom_phone=\"5px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" /][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" background_color=\"#e02b20\" width=\"1080px\" module_alignment=\"center\" custom_padding=\"10px||0px|||\" prev_background_color=\"#ffffff\"][et_pb_row _builder_version=\"3.26.3\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" background_color=\"#ffffff\" custom_padding=\"10px|10px||10px|false|false\" border_width_bottom=\"5px\" border_color_bottom=\"#e02b20\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image _builder_version=\"3.26.3\" src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/dressed.jpg\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\" /][et_pb_text _builder_version=\"3.26.3\" z_index_tablet=\"500\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" text_text_shadow_horizontal_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_vertical_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_blur_strength=\"text_text_shadow_style,%91object Object%93\" link_text_shadow_horizontal_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_vertical_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_blur_strength=\"link_text_shadow_style,%91object Object%93\" ul_text_shadow_horizontal_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_vertical_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_blur_strength=\"ul_text_shadow_style,%91object Object%93\" ol_text_shadow_horizontal_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_vertical_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_blur_strength=\"ol_text_shadow_style,%91object Object%93\" quote_text_shadow_horizontal_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_vertical_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_blur_strength=\"quote_text_shadow_style,%91object Object%93\" header_text_shadow_horizontal_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_vertical_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_blur_strength=\"header_text_shadow_style,%91object Object%93\" header_2_text_shadow_horizontal_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_vertical_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_blur_strength=\"header_2_text_shadow_style,%91object Object%93\" header_3_text_shadow_horizontal_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_vertical_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_blur_strength=\"header_3_text_shadow_style,%91object Object%93\" header_4_text_shadow_horizontal_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_vertical_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_blur_strength=\"header_4_text_shadow_style,%91object Object%93\" header_5_text_shadow_horizontal_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_vertical_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_blur_strength=\"header_5_text_shadow_style,%91object Object%93\" header_6_text_shadow_horizontal_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_vertical_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_blur_strength=\"header_6_text_shadow_style,%91object Object%93\"]\n\n<h3 style=\"text-align: center;\"><strong><em>Dressed to Kill</em> (Roy William Neill, 1946, 72 min.)</strong></h3>\n<p>The Rathbone/Bruce series of Sherlock Holmes films didn\'t exactly limp to a close, but it didn\'t go out on a high note either. <em>Dressed to Kill</em> is a passable entry, featuring a pretty good adaptation of Sir Arthur Conan Doyle\'s story \"The Adventure of the Six Napoleons,\" Basil Rathbone\'s usual good performance as Holmes, and the series\'s only tantalizing mention of one of the most intriguing characters in the Holmes canon, Irene Adler, \"The Woman.\" On hearing her name in the opening moments of the film, I had hopes that she would be introduced as a foil, but I was disappointed.</p>\n<p>The story concerns a series of mysterious attacks on seemingly random people; the only connection between them is that they all purchased identical music boxes at an auction. When Holmes is brought into the case after an attack on Watson\'s friend Stinky Emery (Edmund Breon), he discovers that the music boxes were made in prison by a convict who had stolen the Bank of England\'s printing plates for making £5 notes. Before he could be captured, he hid them somewhere, and they were never found. Holmes deduces that the convict had somehow hidden a message inside the music boxes about where to find the plates, and he must figure out the code before the bad guys, led by Hilda Courtney (Patricia Morison), find them and print their own money.</p>\n<p>The film\'s best addition to the story is the way the code works. The music boxes all play the same melody, with minor variations, and Holmes has to figure out what the changed notes mean. The film is nicer to Watson than previous entries in that it allows him to suggest the key to breaking the code <i>and</i> the identity of Dr. S, albeit accidentally. (Of course, there\'s a scene where he attempts to placate a frightened girl by making duck noises, so he doesn\'t escape his usual comic relief role.)</p>\n<p>It seems to me that the mystery was unnecessarily prolonged. The convict was captured a mere 15 minutes after stealing the plates, and he likely went in a single direction. Holmes could have easily reduced the search area on the basis of that evidence, and once he got the clue \"Dr. S\"—detailing a location among the bookshelves of an unknown doctor—it shouldn\'t have been so difficult to figure out what the code meant. But that easy solution would have made for a very short film.</p>\n<p>Things were getting sloppy by the end of the series. There are some noticeably odd cuts that might have resulted from the restoration process—these films were all restored by the UCLA Film and Television Archive—but they might just as possibly result from an editor instructed to finish the film in a hurry. Patricia Morison\'s accent leaves much to be desired, and there\'s an odd bit of unnecessary narration at the beginning. But the film contains at least one marvelous scene—Stinky Emery\'s death—and the process by which Holmes figures out the code is interesting, if, as I mentioned, unnecessary. The film\'s title has absolutely nothing to do with the film itself; I\'m sure the reason behind it would make a good story.</p>\n<p>And this was it for the series (although I still have four to go as of this writing). Director Roy William Neill would finish one more film before dying of a heart attack in late 1946. Basil Rathbone would never really overcome being typecast, appearing in a handful of films before his death in 1967. Nigel Bruce had always played bumbling Brits, and he continued to do so until his death in 1953.</p>\n<p><b>Baker Street Regulars</b> (actors who appeared in more than two films in the series as different characters):</p>\n<p>Wilson Benge, 5th of 5 appearances (as Minister on museum tour) <br />Harry Cording, 8th of 8 (Hamid) <br />Holmes Herbert, 6th of 6 (Ebenezer Crabtree) <br />Leyland Hodgson, 7th of 7 (tour guide) <br />Olaf Hytten, 6th of 6 (Alfred, auction house bookkeeper) <br />Boyd Irwin, 3rd of 3 (detective with X-ray photos) <br />Sally Shepherd, 3rd of 3 (Tobacconist) <br />Ian Wolfe, 4th of 4 (Commissioner of Scotland Yard) <br />Frederick Worlock, 6th of 6 (Colonel Cavanaugh)</p>\n\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Dressed to Kill (1946)','','inherit','closed','closed','','330-autosave-v1','','','2019-07-26 18:38:49','2019-07-26 18:38:49','',330,'http://itcamefrombeyondpulp.com/uncategorized/330-autosave-v1/',0,'revision','',0),(334,1,'2019-07-26 18:42:27','2019-07-26 18:42:27','[et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" custom_padding=\"0px|||||\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" custom_margin=\"||11px|||\" next_background_color=\"#000000\" global_module=\"74\"][et_pb_row global_parent=\"74\" custom_padding=\"0px||0px|||\" custom_margin=\"|auto|-66px|auto||\" _builder_version=\"3.26.3\"][et_pb_column type=\"4_4\" global_parent=\"74\" _builder_version=\"3.26.3\"][et_pb_image global_parent=\"74\" src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/header.jpg\" url=\"http://itcamefrombeyondpulp.com\" _builder_version=\"3.26.3\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.26.3\" width=\"1080px\" width_tablet=\"100%\" width_last_edited=\"on|phone\" module_alignment=\"center\" inner_module_alignment=\"center\" custom_padding=\"0px||0px||false|false\" z_index_tablet=\"500\" hover_enabled=\"0\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" prev_background_color=\"#000000\" next_background_color=\"#e02b20\" global_module=\"175\"][et_pb_fullwidth_menu global_parent=\"175\" menu_id=\"2\" submenu_direction=\"downwards\" fullwidth_menu=\"off\" dropdown_menu_text_color=\"#ffffff\" _builder_version=\"3.26.3\" menu_font=\"|800||on|||||\" menu_text_color=\"#ffffff\" menu_font_size=\"22px\" menu_letter_spacing=\"5px\" background_color=\"#e02b20\" border_width_bottom=\"5px\" text_orientation=\"center\" background_layout=\"dark\" custom_margin=\"0px||||false|false\" custom_padding=\"1px||0px||false|false\" z_index_tablet=\"500\" menu_text_shadow_horizontal_length_tablet=\"0px\" menu_text_shadow_vertical_length_tablet=\"0px\" menu_text_shadow_blur_strength_tablet=\"1px\" border_width_bottom_tablet=\"5px\" border_width_bottom_phone=\"5px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" /][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" background_color=\"#e02b20\" width=\"1080px\" module_alignment=\"center\" custom_padding=\"10px||0px|||\" prev_background_color=\"#ffffff\"][et_pb_row _builder_version=\"3.26.3\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" background_color=\"#ffffff\" custom_padding=\"10px|10px||10px|false|false\" border_width_bottom=\"5px\" border_color_bottom=\"#e02b20\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image _builder_version=\"3.26.3\" src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/house-of-fear.jpg\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\" /][et_pb_text _builder_version=\"3.26.3\" z_index_tablet=\"500\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" text_text_shadow_horizontal_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_vertical_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_blur_strength=\"text_text_shadow_style,%91object Object%93\" link_text_shadow_horizontal_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_vertical_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_blur_strength=\"link_text_shadow_style,%91object Object%93\" ul_text_shadow_horizontal_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_vertical_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_blur_strength=\"ul_text_shadow_style,%91object Object%93\" ol_text_shadow_horizontal_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_vertical_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_blur_strength=\"ol_text_shadow_style,%91object Object%93\" quote_text_shadow_horizontal_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_vertical_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_blur_strength=\"quote_text_shadow_style,%91object Object%93\" header_text_shadow_horizontal_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_vertical_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_blur_strength=\"header_text_shadow_style,%91object Object%93\" header_2_text_shadow_horizontal_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_vertical_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_blur_strength=\"header_2_text_shadow_style,%91object Object%93\" header_3_text_shadow_horizontal_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_vertical_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_blur_strength=\"header_3_text_shadow_style,%91object Object%93\" header_4_text_shadow_horizontal_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_vertical_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_blur_strength=\"header_4_text_shadow_style,%91object Object%93\" header_5_text_shadow_horizontal_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_vertical_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_blur_strength=\"header_5_text_shadow_style,%91object Object%93\" header_6_text_shadow_horizontal_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_vertical_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_blur_strength=\"header_6_text_shadow_style,%91object Object%93\"]\r\n\r\n<h3 style=\"text-align: center;\"><strong><em>The House of Fear</em> (Roy William Neill, 1945, 69 min.)</strong></h3><p>It is my contention that a lot of the problems that people encounter in Gothic horror or mystery films and novels are the result of poor naming: if your hamlet is called Misery End, something bad is bound to happen there. Similarly, a house named Drear Cliff House is bound to attract unhappiness. Just so in this, the tenth of the 14 Basil Rathbone/Nigel Bruce Sherlock Holmes films of the 1930s and 1940s, in which Holmes and his trusty, if somewhat addled, friend Watson are summoned to a creaky old house inhabited by the Good Comrades, an ever-diminishing group of people with big insurance policies. Lately they\'ve had a nasty tendency to die in spectacular ways (this house, of course, has a curse: \"no man ever goes whole to his grave\"), and the insurance company, unhappy about the payouts, enlists Holmes to investigate.</p><p>Interestingly, despite Universal\'s radical updating of the series to modern times, there\'s little updating in evidence here: no automobiles rumble up and down the cobblestones, and the lights at Drear Cliff are powered by oil, not electricity. It could very well have taken place in Edwardian England, but the effect is instead to accentuate Drear House\'s dreariness. Other oddities enhance viewers\' experience. It\'s one of the few in the series that employs a narrator, and not a major character at that—it\'s an insurance agent who brings us up to speed at the beginning and disappears until the end. Director Roy William Neill and cinematographer Virgil Miller use an unusual (for the series, at least as far as I can remember) number of foregrounded objects to frame shots: the camera seems to peer through candelabra and crouch behind chaise lounges, unlike the clear lines of sight favored in the other films. There are a number of exteriors that must have been actually filmed outside, a major departure from the stagebound feel of the rest of the series. And finally, Neill and Miller employ noirishly tilted cameras at times.</p><p>There\'s the usual late-series overemphasis on using Nigel Bruce and Dennis Hoey (appearing again as Inspector Lestrade) as comic relief, including an uncomfortably long head-scratcher of a scene in which Watson discharges his weapon at phantoms in his room. And Lestrade seems more physically oafish than in the other films. However, this is one of the few entries in which Watson\'s tendency to voice premature conclusions about suspects\' guilt turns out to be mostly correct, although he doesn\'t always know it at the time, and the traditional last-scene speech by Holmes is a kind and moving reflection on how much he values Watson.</p><p>Rathbone is his usual perfection as Holmes, although he employs a more brusque manner toward others: I don\'t remember him interrupting people as much in the other films as he does here, but it adds a dimension to his character, a kind of annoyance at being the go-to guy for unexplained phenomena that always turn out to be eminently explainable. The solution to the mystery is easily guessed at, although that might be because I vaguely remember reading the original story, \"The Adventure of the Five Orange Pips.\" It\'s middle-of-the-pack entry in the series, neither up to the standards of the first two films nor as abject as <em>Pursuit to Algiers</em>.</p><p><b>Baker Street Regulars</b> (actors who appeared in more than two films in the series as different characters):</p><p>Paul Cavanagh, 2nd of 3 appearances (as Dr. Simon Merivale)<br />Holmes Herbert, 5th of 6 (Alan Cosgrave)<br />Harry Cording, 6th of 8 (Captain John Simpson)<br />Sally Shepherd, 1st of 3 (Mrs. Monteith)<br />Gavin Muir, 4th of 4 (Mr. Chalmers)<br />Wilson Benge, 3rd of 5 (Guy Davies)<br />Leslie Denison, 5th of 6 (Sergeant Bleeker)<br />David Thursby, 3rd of 3 (Police Sergeant)</p>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','The House of Fear (1945)','','publish','closed','closed','','the-house-of-fear-1945','','','2019-07-26 18:42:27','2019-07-26 18:42:27','',0,'http://itcamefrombeyondpulp.com/?p=334',0,'post','',0),(335,1,'2019-07-26 18:41:58','2019-07-26 18:41:58','','house of fear','','inherit','closed','closed','','house-of-fear','','','2019-07-26 18:41:58','2019-07-26 18:41:58','',334,'http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/house-of-fear.jpg',0,'attachment','image/jpeg',0),(336,1,'2019-07-26 18:42:18','2019-07-26 18:42:18','','house of fear','','inherit','closed','closed','','house-of-fear-2','','','2019-07-26 18:42:18','2019-07-26 18:42:18','',334,'http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/house-of-fear-1.jpg',0,'attachment','image/jpeg',0),(337,1,'2019-07-26 18:42:27','2019-07-26 18:42:27','[et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" custom_padding=\"0px|||||\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" custom_margin=\"||11px|||\" next_background_color=\"#000000\" global_module=\"74\"][et_pb_row global_parent=\"74\" custom_padding=\"0px||0px|||\" custom_margin=\"|auto|-66px|auto||\" _builder_version=\"3.26.3\"][et_pb_column type=\"4_4\" global_parent=\"74\" _builder_version=\"3.26.3\"][et_pb_image global_parent=\"74\" src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/header.jpg\" url=\"http://itcamefrombeyondpulp.com\" _builder_version=\"3.26.3\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.26.3\" width=\"1080px\" width_tablet=\"100%\" width_last_edited=\"on|phone\" module_alignment=\"center\" inner_module_alignment=\"center\" custom_padding=\"0px||0px||false|false\" z_index_tablet=\"500\" hover_enabled=\"0\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" prev_background_color=\"#000000\" next_background_color=\"#e02b20\" global_module=\"175\"][et_pb_fullwidth_menu global_parent=\"175\" menu_id=\"2\" submenu_direction=\"downwards\" fullwidth_menu=\"off\" dropdown_menu_text_color=\"#ffffff\" _builder_version=\"3.26.3\" menu_font=\"|800||on|||||\" menu_text_color=\"#ffffff\" menu_font_size=\"22px\" menu_letter_spacing=\"5px\" background_color=\"#e02b20\" border_width_bottom=\"5px\" text_orientation=\"center\" background_layout=\"dark\" custom_margin=\"0px||||false|false\" custom_padding=\"1px||0px||false|false\" z_index_tablet=\"500\" menu_text_shadow_horizontal_length_tablet=\"0px\" menu_text_shadow_vertical_length_tablet=\"0px\" menu_text_shadow_blur_strength_tablet=\"1px\" border_width_bottom_tablet=\"5px\" border_width_bottom_phone=\"5px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" /][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" background_color=\"#e02b20\" width=\"1080px\" module_alignment=\"center\" custom_padding=\"10px||0px|||\" prev_background_color=\"#ffffff\"][et_pb_row _builder_version=\"3.26.3\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" background_color=\"#ffffff\" custom_padding=\"10px|10px||10px|false|false\" border_width_bottom=\"5px\" border_color_bottom=\"#e02b20\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image _builder_version=\"3.26.3\" src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/house-of-fear.jpg\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\" /][et_pb_text _builder_version=\"3.26.3\" z_index_tablet=\"500\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" text_text_shadow_horizontal_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_vertical_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_blur_strength=\"text_text_shadow_style,%91object Object%93\" link_text_shadow_horizontal_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_vertical_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_blur_strength=\"link_text_shadow_style,%91object Object%93\" ul_text_shadow_horizontal_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_vertical_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_blur_strength=\"ul_text_shadow_style,%91object Object%93\" ol_text_shadow_horizontal_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_vertical_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_blur_strength=\"ol_text_shadow_style,%91object Object%93\" quote_text_shadow_horizontal_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_vertical_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_blur_strength=\"quote_text_shadow_style,%91object Object%93\" header_text_shadow_horizontal_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_vertical_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_blur_strength=\"header_text_shadow_style,%91object Object%93\" header_2_text_shadow_horizontal_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_vertical_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_blur_strength=\"header_2_text_shadow_style,%91object Object%93\" header_3_text_shadow_horizontal_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_vertical_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_blur_strength=\"header_3_text_shadow_style,%91object Object%93\" header_4_text_shadow_horizontal_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_vertical_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_blur_strength=\"header_4_text_shadow_style,%91object Object%93\" header_5_text_shadow_horizontal_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_vertical_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_blur_strength=\"header_5_text_shadow_style,%91object Object%93\" header_6_text_shadow_horizontal_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_vertical_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_blur_strength=\"header_6_text_shadow_style,%91object Object%93\"]\r\n\r\n<h3 style=\"text-align: center;\"><strong><em>The House of Fear</em> (Roy William Neill, 1945, 69 min.)</strong></h3><p>It is my contention that a lot of the problems that people encounter in Gothic horror or mystery films and novels are the result of poor naming: if your hamlet is called Misery End, something bad is bound to happen there. Similarly, a house named Drear Cliff House is bound to attract unhappiness. Just so in this, the tenth of the 14 Basil Rathbone/Nigel Bruce Sherlock Holmes films of the 1930s and 1940s, in which Holmes and his trusty, if somewhat addled, friend Watson are summoned to a creaky old house inhabited by the Good Comrades, an ever-diminishing group of people with big insurance policies. Lately they\'ve had a nasty tendency to die in spectacular ways (this house, of course, has a curse: \"no man ever goes whole to his grave\"), and the insurance company, unhappy about the payouts, enlists Holmes to investigate.</p><p>Interestingly, despite Universal\'s radical updating of the series to modern times, there\'s little updating in evidence here: no automobiles rumble up and down the cobblestones, and the lights at Drear Cliff are powered by oil, not electricity. It could very well have taken place in Edwardian England, but the effect is instead to accentuate Drear House\'s dreariness. Other oddities enhance viewers\' experience. It\'s one of the few in the series that employs a narrator, and not a major character at that—it\'s an insurance agent who brings us up to speed at the beginning and disappears until the end. Director Roy William Neill and cinematographer Virgil Miller use an unusual (for the series, at least as far as I can remember) number of foregrounded objects to frame shots: the camera seems to peer through candelabra and crouch behind chaise lounges, unlike the clear lines of sight favored in the other films. There are a number of exteriors that must have been actually filmed outside, a major departure from the stagebound feel of the rest of the series. And finally, Neill and Miller employ noirishly tilted cameras at times.</p><p>There\'s the usual late-series overemphasis on using Nigel Bruce and Dennis Hoey (appearing again as Inspector Lestrade) as comic relief, including an uncomfortably long head-scratcher of a scene in which Watson discharges his weapon at phantoms in his room. And Lestrade seems more physically oafish than in the other films. However, this is one of the few entries in which Watson\'s tendency to voice premature conclusions about suspects\' guilt turns out to be mostly correct, although he doesn\'t always know it at the time, and the traditional last-scene speech by Holmes is a kind and moving reflection on how much he values Watson.</p><p>Rathbone is his usual perfection as Holmes, although he employs a more brusque manner toward others: I don\'t remember him interrupting people as much in the other films as he does here, but it adds a dimension to his character, a kind of annoyance at being the go-to guy for unexplained phenomena that always turn out to be eminently explainable. The solution to the mystery is easily guessed at, although that might be because I vaguely remember reading the original story, \"The Adventure of the Five Orange Pips.\" It\'s middle-of-the-pack entry in the series, neither up to the standards of the first two films nor as abject as <em>Pursuit to Algiers</em>.</p><p><b>Baker Street Regulars</b> (actors who appeared in more than two films in the series as different characters):</p><p>Paul Cavanagh, 2nd of 3 appearances (as Dr. Simon Merivale)<br />Holmes Herbert, 5th of 6 (Alan Cosgrave)<br />Harry Cording, 6th of 8 (Captain John Simpson)<br />Sally Shepherd, 1st of 3 (Mrs. Monteith)<br />Gavin Muir, 4th of 4 (Mr. Chalmers)<br />Wilson Benge, 3rd of 5 (Guy Davies)<br />Leslie Denison, 5th of 6 (Sergeant Bleeker)<br />David Thursby, 3rd of 3 (Police Sergeant)</p>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','The House of Fear (1945)','','inherit','closed','closed','','334-revision-v1','','','2019-07-26 18:42:27','2019-07-26 18:42:27','',334,'http://itcamefrombeyondpulp.com/uncategorized/334-revision-v1/',0,'revision','',0),(338,1,'2019-07-26 18:43:28','2019-07-26 18:43:28','[et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" custom_padding=\"0px|||||\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" custom_margin=\"||11px|||\" next_background_color=\"#000000\" global_module=\"74\"][et_pb_row global_parent=\"74\" custom_padding=\"0px||0px|||\" custom_margin=\"|auto|-66px|auto||\" _builder_version=\"3.26.3\"][et_pb_column type=\"4_4\" global_parent=\"74\" _builder_version=\"3.26.3\"][et_pb_image global_parent=\"74\" src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/header.jpg\" url=\"http://itcamefrombeyondpulp.com\" _builder_version=\"3.26.3\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.26.3\" width=\"1080px\" width_tablet=\"100%\" width_last_edited=\"on|phone\" module_alignment=\"center\" inner_module_alignment=\"center\" custom_padding=\"0px||0px||false|false\" z_index_tablet=\"500\" hover_enabled=\"0\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" prev_background_color=\"#000000\" next_background_color=\"#e02b20\" global_module=\"175\"][et_pb_fullwidth_menu global_parent=\"175\" menu_id=\"2\" submenu_direction=\"downwards\" fullwidth_menu=\"off\" dropdown_menu_text_color=\"#ffffff\" _builder_version=\"3.26.3\" menu_font=\"|800||on|||||\" menu_text_color=\"#ffffff\" menu_font_size=\"22px\" menu_letter_spacing=\"5px\" background_color=\"#e02b20\" border_width_bottom=\"5px\" text_orientation=\"center\" background_layout=\"dark\" custom_margin=\"0px||||false|false\" custom_padding=\"1px||0px||false|false\" z_index_tablet=\"500\" menu_text_shadow_horizontal_length_tablet=\"0px\" menu_text_shadow_vertical_length_tablet=\"0px\" menu_text_shadow_blur_strength_tablet=\"1px\" border_width_bottom_tablet=\"5px\" border_width_bottom_phone=\"5px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" /][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" background_color=\"#e02b20\" width=\"1080px\" module_alignment=\"center\" custom_padding=\"10px||0px|||\" prev_background_color=\"#ffffff\"][et_pb_row _builder_version=\"3.26.3\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" background_color=\"#ffffff\" custom_padding=\"10px|10px||10px|false|false\" border_width_bottom=\"5px\" border_color_bottom=\"#e02b20\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image _builder_version=\"3.26.3\" src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/house-of-fear.jpg\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\" /][et_pb_text _builder_version=\"3.26.3\" z_index_tablet=\"500\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" text_text_shadow_horizontal_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_vertical_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_blur_strength=\"text_text_shadow_style,%91object Object%93\" link_text_shadow_horizontal_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_vertical_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_blur_strength=\"link_text_shadow_style,%91object Object%93\" ul_text_shadow_horizontal_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_vertical_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_blur_strength=\"ul_text_shadow_style,%91object Object%93\" ol_text_shadow_horizontal_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_vertical_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_blur_strength=\"ol_text_shadow_style,%91object Object%93\" quote_text_shadow_horizontal_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_vertical_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_blur_strength=\"quote_text_shadow_style,%91object Object%93\" header_text_shadow_horizontal_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_vertical_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_blur_strength=\"header_text_shadow_style,%91object Object%93\" header_2_text_shadow_horizontal_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_vertical_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_blur_strength=\"header_2_text_shadow_style,%91object Object%93\" header_3_text_shadow_horizontal_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_vertical_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_blur_strength=\"header_3_text_shadow_style,%91object Object%93\" header_4_text_shadow_horizontal_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_vertical_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_blur_strength=\"header_4_text_shadow_style,%91object Object%93\" header_5_text_shadow_horizontal_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_vertical_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_blur_strength=\"header_5_text_shadow_style,%91object Object%93\" header_6_text_shadow_horizontal_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_vertical_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_blur_strength=\"header_6_text_shadow_style,%91object Object%93\"]\n\n<h3 style=\"text-align: center;\"><strong><em>The House of Fear</em> (Roy William Neill, 1945, 69 min.)</strong></h3>\n<p>It is my contention that a lot of the problems that people encounter in Gothic horror or mystery films and novels are the result of poor naming: if your hamlet is called Misery End, something bad is bound to happen there. Similarly, a house named Drear Cliff House is bound to attract unhappiness. Just so in this, the tenth of the 14 Basil Rathbone/Nigel Bruce Sherlock Holmes films of the 1930s and 1940s, in which Holmes and his trusty, if somewhat addled, friend Watson are summoned to a creaky old house inhabited by the Good Comrades, an ever-diminishing group of people with big insurance policies. Lately they\'ve had a nasty tendency to die in spectacular ways (this house, of course, has a curse: \"no man ever goes whole to his grave\"), and the insurance company, unhappy about the payouts, enlists Holmes to investigate.</p>\n<p>Interestingly, despite Universal\'s radical updating of the series to modern times, there\'s little updating in evidence here: no automobiles rumble up and down the cobblestones, and the lights at Drear Cliff are powered by oil, not electricity. It could very well have taken place in Edwardian England, but the effect is instead to accentuate Drear House\'s dreariness. Other oddities enhance viewers\' experience. It\'s one of the few in the series that employs a narrator, and not a major character at that—it\'s an insurance agent who brings us up to speed at the beginning and disappears until the end. Director Roy William Neill and cinematographer Virgil Miller use an unusual (for the series, at least as far as I can remember) number of foregrounded objects to frame shots: the camera seems to peer through candelabra and crouch behind chaise lounges, unlike the clear lines of sight favored in the other films. There are a number of exteriors that must have been actually filmed outside, a major departure from the stagebound feel of the rest of the series. And finally, Neill and Miller employ noirishly tilted cameras at times.</p>\n<p>There\'s the usual late-series overemphasis on using Nigel Bruce and Dennis Hoey (appearing again as Inspector Lestrade) as comic relief, including an uncomfortably long head-scratcher of a scene in which Watson discharges his weapon at phantoms in his room. And Lestrade seems more physically oafish than in the other films. However, this is one of the few entries in which Watson\'s tendency to voice premature conclusions about suspects\' guilt turns out to be mostly correct, although he doesn\'t always know it at the time, and the traditional last-scene speech by Holmes is a kind and moving reflection on how much he values Watson.</p>\n<p>Rathbone is his usual perfection as Holmes, although he employs a more brusque manner toward others: I don\'t remember him interrupting people as much in the other films as he does here, but it adds a dimension to his character, a kind of annoyance at being the go-to guy for unexplained phenomena that always turn out to be eminently explainable. The solution to the mystery is easily guessed at, although that might be because I vaguely remember reading the original story, \"The Adventure of the Five Orange Pips.\" It\'s middle-of-the-pack entry in the series, neither up to the standards of the first two films nor as abject as <em>Pursuit to Algiers</em>.</p>\n<p><b>Baker Street Regulars</b> (actors who appeared in more than two films in the series as different characters):</p>\n<p>Paul Cavanagh, 2nd of 3 appearances (as Dr. Simon Merivale)<br />Holmes Herbert, 5th of 6 (Alan Cosgrave)<br />Harry Cording, 6th of 8 (Captain John Simpson)<br />Sally Shepherd, 1st of 3 (Mrs. Monteith)<br />Gavin Muir, 4th of 4 (Mr. Chalmers)<br />Wilson Benge, 3rd of 5 (Guy Davies)<br />Leslie Denison, 5th of 6 (Sergeant Bleeker)<br />David Thursby, 3rd of 3 (Police Sergeant)</p>\n\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','The House of Fear (1945)','','inherit','closed','closed','','334-autosave-v1','','','2019-07-26 18:43:28','2019-07-26 18:43:28','',334,'http://itcamefrombeyondpulp.com/uncategorized/334-autosave-v1/',0,'revision','',0),(350,1,'2019-07-30 03:15:11','2019-07-30 03:15:11','[et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" custom_padding=\"0px|||||\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" custom_margin=\"||11px|||\" next_background_color=\"#000000\" global_module=\"74\"][et_pb_row global_parent=\"74\" custom_padding=\"0px||0px|||\" custom_margin=\"|auto|-66px|auto||\" _builder_version=\"3.26.3\"][et_pb_column type=\"4_4\" global_parent=\"74\" _builder_version=\"3.26.3\"][et_pb_image global_parent=\"74\" src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/header.jpg\" url=\"http://itcamefrombeyondpulp.com\" _builder_version=\"3.26.3\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.26.3\" width=\"1080px\" width_tablet=\"100%\" width_last_edited=\"on|phone\" module_alignment=\"center\" inner_module_alignment=\"center\" custom_padding=\"0px||0px||false|false\" z_index_tablet=\"500\" hover_enabled=\"0\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" prev_background_color=\"#000000\" next_background_color=\"#e02b20\" global_module=\"175\"][et_pb_fullwidth_menu global_parent=\"175\" menu_id=\"2\" submenu_direction=\"downwards\" fullwidth_menu=\"off\" dropdown_menu_text_color=\"#ffffff\" _builder_version=\"3.26.3\" menu_font=\"|800||on|||||\" menu_text_color=\"#ffffff\" menu_font_size=\"22px\" menu_letter_spacing=\"5px\" background_color=\"#e02b20\" border_width_bottom=\"5px\" text_orientation=\"center\" background_layout=\"dark\" custom_margin=\"0px||||false|false\" custom_padding=\"1px||0px||false|false\" z_index_tablet=\"500\" menu_text_shadow_horizontal_length_tablet=\"0px\" menu_text_shadow_vertical_length_tablet=\"0px\" menu_text_shadow_blur_strength_tablet=\"1px\" border_width_bottom_tablet=\"5px\" border_width_bottom_phone=\"5px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" /][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" background_color=\"#e02b20\" width=\"1080px\" module_alignment=\"center\" custom_padding=\"10px||0px|||\" prev_background_color=\"#ffffff\"][et_pb_row _builder_version=\"3.26.3\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" background_color=\"#ffffff\" custom_padding=\"10px|10px||10px|false|false\" border_width_bottom=\"5px\" border_color_bottom=\"#e02b20\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image _builder_version=\"3.26.3\" src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/algiers.jpg\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\" /][et_pb_text _builder_version=\"3.26.3\" z_index_tablet=\"500\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" text_text_shadow_horizontal_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_vertical_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_blur_strength=\"text_text_shadow_style,%91object Object%93\" link_text_shadow_horizontal_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_vertical_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_blur_strength=\"link_text_shadow_style,%91object Object%93\" ul_text_shadow_horizontal_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_vertical_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_blur_strength=\"ul_text_shadow_style,%91object Object%93\" ol_text_shadow_horizontal_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_vertical_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_blur_strength=\"ol_text_shadow_style,%91object Object%93\" quote_text_shadow_horizontal_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_vertical_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_blur_strength=\"quote_text_shadow_style,%91object Object%93\" header_text_shadow_horizontal_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_vertical_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_blur_strength=\"header_text_shadow_style,%91object Object%93\" header_2_text_shadow_horizontal_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_vertical_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_blur_strength=\"header_2_text_shadow_style,%91object Object%93\" header_3_text_shadow_horizontal_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_vertical_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_blur_strength=\"header_3_text_shadow_style,%91object Object%93\" header_4_text_shadow_horizontal_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_vertical_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_blur_strength=\"header_4_text_shadow_style,%91object Object%93\" header_5_text_shadow_horizontal_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_vertical_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_blur_strength=\"header_5_text_shadow_style,%91object Object%93\" header_6_text_shadow_horizontal_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_vertical_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_blur_strength=\"header_6_text_shadow_style,%91object Object%93\"]\n\n<h3 style=\"text-align: center;\"><strong><em>Pursuit to Algiers</em> (Roy William Neill, 1945, 65 min.)</strong></h3>\n<p>In the worst of the Rathbone/Bruce series of Sherlock Holmes films, Holmes and Watson play nursemaids to a European king on a fraught voyage from England to Algiers, all \"in the name of democratic government.\" (I\'m usure how the death of a figurehead king could really affect a democratic government, and how a country ruled by a non-figurehead king could have much to do with democracy, but that\'s unimportant.) The film is marred by glacial pacing, its own silly premise, and a snowballing series of absurdities that eventually blot out the normal enjoyment of seeing Basil Rathbone and Nigel Bruce do their thing.</p>\n<p>Although Watson wants to go on a relaxing vacation, Holmes allows himself to be involved in international intrigue once again. The king of a fictional European country has been murdered, and his government wants Holmes to escort the new king (Leslie Vincent) to the safety of Algiers, where loyalists will take him to his throne. Holmes and the king head off in an airplane, while Watson goes aboard a steamer as a distraction. Quickly, though, there\'s trouble: the airplane is shot down, and Holmes and the king are apparently dead. A distraught Watson discovers that the pair were never aboard the plane: they\'ve been on the steamer all along, and now they have to survive the murderous efforts of a trio of killers until they arrive in Algiers.</p>\n<p>The film makes two grave mistakes: keeping Holmes out of the picture for too long, and then introducing him in a rather stupid manner. Aside from the overly clever beginning, when members of the government of a fictional European country enlist him to guard the new king, Holmes is out of the story for the first third of its running time. That leaves Watson as the primary focus, and although he\'s a genial enough fellow, he only really works when he\'s at Holmes\'s side. We\'re left with some mild comic relief as he suspiciously eyes the other passengers on the ship and develops a touching crush on the young Sheila (Marjorie Riordan). When Holmes reveals to Watson that he wasn\'t killed in the plane crash, the film makes its second misstep: having Holmes and the young Nikolas parade around the ship, drawing attention to themselves. Wouldn\'t it have been much better for them to stay concealed? In most films, I\'d just accept it with the knowledge that \"this is the film about the people who made a rather stupid mistake,\" but I can\'t really accept it from the master detective Sherlock Holmes. (One way to read it that would make it make sense is to view Holmes as having a death wish, but that\'s a darkness that is usually unwelcome in these effervescent films.)</p>\n<p>From Holmes\'s appearance on the ship, things devolve into an almost sub–James Bond level of silly hijinks. Holmes quickly identifies the people sent to kill Nikolas, but he toys with them flippantly instead of doing anything about them. Even when Mirko (Martin Kosleck) the knife-thrower attempts to skewer him to death in his bed, Holmes merely laughs about his escape and slams the porthole shut. Perhaps he had grounds to call the authorities by this point. (Again, I know this is the movie about the master detective who didn\'t call the authorities, but it stretches our patience beyond what\'s acceptable.)</p>\n<p>There are two fetching instances of self-reference in the film, perhaps signs that screenwriter Leonard Lee wanted to take the franchise into the postmodern (but perhaps not). During a dinner party, as Holmes attempts to figure out how the assassins are going to strike next, Watson is induced to tell a Sherlock Holmes story; readers familiar with the stories will know that Watson is their purported author, so having Watson tell a story within a story that Watson is presumably telling is quite clever. Then, in the last scene, where Holmes would usually give a patriotic speech (that\'s gone from this film, as is the exhortation to buy war bonds), instead he pokes fun at Watson\'s honest face: \"You\'d never make a good actor, old boy,\" he says. Since Nigel Bruce, playing Watson, is in fact a good actor, one could read this as a meta-comment on the film. Or not.</p>\n<p><i>Nota bene</i>: The Internet Movie Database claims that this film is based on an original story by Sir Arthur Conan Doyle, but that\'s misleading. They list a story called \"The Return of Sherlock Holmes,\" but no such story exists: there\'s a collection of Holmes adventures by that title, but none of the stories in it even remotely resembles this plot. However, in one of these stories, Watson mentions in passing \"the affair of the steamship <i>Friesland</i> that so nearly cost us both our lives.\" He gives no details, and Leonard Lee made the rest up.</p>\n<p>The series was clearly limping to a close. Bertrand Millhauser was gone, leaving Leonard Lee and Frank Gruber to split the writing chores on the final films. Only two films followed before Universal pulled the plug, <em>Terror by Night</em> and <em>Dressed to Kill</em>.</p>\n<p><b>Baker Street Regulars</b> (actors who appeared in more than two films in the series as different characters):</p>\n<p>Wilson Benge, 4th of 5 appearances (as clergyman) <br />Gerald Hamer, 4th of 5 (Kingston) <br />Olaf Hytten, 5th of 6 (Simpson, the gunsmith) <br />Frederick Worlock, 5th of 6 (Prime Minister)</p>\n\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Pursuit to Algiers (1945)','','inherit','closed','closed','','347-autosave-v1','','','2019-07-30 03:15:11','2019-07-30 03:15:11','',347,'http://itcamefrombeyondpulp.com/uncategorized/347-autosave-v1/',0,'revision','',0),(413,1,'2019-08-19 02:14:12','2019-08-19 02:14:12','[et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" custom_padding=\"0px|||||\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" custom_margin=\"||11px|||\" next_background_color=\"#000000\" global_module=\"74\"][et_pb_row global_parent=\"74\" custom_padding=\"0px||0px|||\" custom_margin=\"|auto|-66px|auto||\" _builder_version=\"3.26.3\"][et_pb_column type=\"4_4\" global_parent=\"74\" _builder_version=\"3.26.3\"][et_pb_image global_parent=\"74\" src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/header.jpg\" url=\"http://itcamefrombeyondpulp.com\" _builder_version=\"3.26.3\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.26.3\" width=\"1080px\" width_tablet=\"100%\" width_last_edited=\"on|phone\" module_alignment=\"center\" inner_module_alignment=\"center\" custom_padding=\"0px||0px||false|false\" z_index_tablet=\"500\" hover_enabled=\"0\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" prev_background_color=\"#000000\" next_background_color=\"#e02b20\" global_module=\"175\"][et_pb_fullwidth_menu global_parent=\"175\" menu_id=\"2\" submenu_direction=\"downwards\" fullwidth_menu=\"off\" dropdown_menu_text_color=\"#ffffff\" _builder_version=\"3.26.3\" menu_font=\"|800||on|||||\" menu_text_color=\"#ffffff\" menu_font_size=\"22px\" menu_letter_spacing=\"5px\" background_color=\"#e02b20\" border_width_bottom=\"5px\" text_orientation=\"center\" background_layout=\"dark\" custom_margin=\"0px||||false|false\" custom_padding=\"1px||0px||false|false\" z_index_tablet=\"500\" menu_text_shadow_horizontal_length_tablet=\"0px\" menu_text_shadow_vertical_length_tablet=\"0px\" menu_text_shadow_blur_strength_tablet=\"1px\" border_width_bottom_tablet=\"5px\" border_width_bottom_phone=\"5px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" /][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" background_color=\"#e02b20\" width=\"1080px\" module_alignment=\"center\" custom_padding=\"10px||0px|||\" prev_background_color=\"#ffffff\"][et_pb_row _builder_version=\"3.26.3\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" background_color=\"#ffffff\" custom_padding=\"10px|10px||10px|false|false\" border_width_bottom=\"5px\" border_color_bottom=\"#e02b20\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.26.3\" z_index_tablet=\"500\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" text_text_shadow_horizontal_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_vertical_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_blur_strength=\"text_text_shadow_style,%91object Object%93\" link_text_shadow_horizontal_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_vertical_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_blur_strength=\"link_text_shadow_style,%91object Object%93\" ul_text_shadow_horizontal_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_vertical_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_blur_strength=\"ul_text_shadow_style,%91object Object%93\" ol_text_shadow_horizontal_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_vertical_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_blur_strength=\"ol_text_shadow_style,%91object Object%93\" quote_text_shadow_horizontal_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_vertical_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_blur_strength=\"quote_text_shadow_style,%91object Object%93\" header_text_shadow_horizontal_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_vertical_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_blur_strength=\"header_text_shadow_style,%91object Object%93\" header_2_text_shadow_horizontal_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_vertical_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_blur_strength=\"header_2_text_shadow_style,%91object Object%93\" header_3_text_shadow_horizontal_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_vertical_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_blur_strength=\"header_3_text_shadow_style,%91object Object%93\" header_4_text_shadow_horizontal_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_vertical_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_blur_strength=\"header_4_text_shadow_style,%91object Object%93\" header_5_text_shadow_horizontal_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_vertical_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_blur_strength=\"header_5_text_shadow_style,%91object Object%93\" header_6_text_shadow_horizontal_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_vertical_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_blur_strength=\"header_6_text_shadow_style,%91object Object%93\"]\r\n\r\n<h3 style=\"text-align: center;\"><strong><em><img class=\"wp-image-414 size-medium alignright\" src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/08/dancer-179x300.jpg\" alt=\"\" width=\"179\" height=\"300\" />The Dancer from Atlantis</em> (Poul Anderson, 1972)</strong></h3><p class=\"p1\">Poul Anderson (1926-2001) was among the most lauded science fiction and fantasy writers, winning seven Hugo Awards and three Nebula Awards. I absolutely hated the other novel-length Anderson outing I read, <i>Tau Zero</i>, aka the longest story problem in history. I didn’t think he could write a believable human character, nor could he integrate his math problems with his narrative. I understand that it’s considered a classic of hard science fiction, and readers, you will not find much praise for hard sci-fi in this column. But my Spreadsheet of Destiny decreed that I read <i>The Dancer from Atlantis</i>, and so I did. And it’s pretty darned good! More on that in a minute.</p><p class=\"p1\">Twentieth-century American architect Duncan Reid, medieval Russian rancher Oleg, fourth-century Hun raider Uldin, and fourth millennium BCE Atlantean bull-dancing priestess Erissa are swept along through time by a damaged time machine and deposited on the Mediterranean coast of Egypt a scant few months before a volcanic eruption is due to obliterate her homeland of Atlantis and destroy the Minoan stranglehold on Mediterranean trade. Erissa is a survivor of that eruption, and as a teenage priestess she loved a god named Duncan Reid, who fathered a child before disappearing in a puff of smoke. The four integrate themselves into Cretan society, interact with Theseus, introduce cavalry and other weapons and methods of war, and try to figure out how to get back home, while Duncan and Erissa try to figure out how to save her civilization from destruction.</p><p class=\"p1\">There’s no math, which is good. There are also a couple of believable characters who have human interactions, something that was missing from <i>Tau Zero</i>. I’m especially surprised and satisfied by how Anderson handles Duncan Reid’s double romance of Erissa<span class=\"s1\">—both </span><span class=\"s2\">as the middle-aged mystic he encounters first, then the teenage version of her he encounters on Atlantis. It could have been creepy in any number of ways, but it wasn’t. </span></p><p class=\"p4\">But the best thing about it is the copious amounts of research that Anderson obviously did<span class=\"s3\">—about people as diverse as medieval Russians and the fourth century Huns, but also about the intricately connected, overlapping, and contradictory mythology and archaeology of the ancient Mediterranean. Let me rephrase that, because lots of authors do a lot of research, and their books are terrible. Anderson synthesizes this research and integrates it smoothly into his narrative, using his imagination where necessary and keeping the page-length explanations to a minimum. This is something that, say, Umberto Eco, in his wretched <i>The Name of the Rose</i>, demonstrates that he doesn’t understand.</span></p><p class=\"p4\"><span class=\"s3\">Anderson also shows a deft hand at describing large-scale destruction, as the chapters that take place in the aftermath of the volcanic eruption are harrowing and economical. He can sketch in a few sentences a kind of detailed chaos that lesser (or perhaps more sadistic) writers would dwell on. Honestly, he shows a deft hand at all of the things that he seemed incapable of in <i>Tau Zero</i>, so I think I’ve suddenly become a fan.</span></p>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','The Dancer from Atlantis (1972)','','publish','closed','closed','','the-dancer-from-atlantis-1972','','','2019-08-19 02:14:12','2019-08-19 02:14:12','',0,'http://itcamefrombeyondpulp.com/?p=413',0,'post','',0),(340,1,'2019-07-28 17:54:56','2019-07-28 17:54:56','[et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" custom_padding=\"0px|||||\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" custom_margin=\"||11px|||\" next_background_color=\"#000000\" global_module=\"74\"][et_pb_row global_parent=\"74\" custom_padding=\"0px||0px|||\" custom_margin=\"|auto|-66px|auto||\" _builder_version=\"3.26.3\"][et_pb_column type=\"4_4\" global_parent=\"74\" _builder_version=\"3.26.3\"][et_pb_image global_parent=\"74\" src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/header.jpg\" url=\"http://itcamefrombeyondpulp.com\" _builder_version=\"3.26.3\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.26.3\" width=\"1080px\" width_tablet=\"100%\" width_last_edited=\"on|phone\" module_alignment=\"center\" inner_module_alignment=\"center\" custom_padding=\"0px||0px||false|false\" z_index_tablet=\"500\" hover_enabled=\"0\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" prev_background_color=\"#000000\" next_background_color=\"#e02b20\" global_module=\"175\"][et_pb_fullwidth_menu global_parent=\"175\" menu_id=\"2\" submenu_direction=\"downwards\" fullwidth_menu=\"off\" dropdown_menu_text_color=\"#ffffff\" _builder_version=\"3.26.3\" menu_font=\"|800||on|||||\" menu_text_color=\"#ffffff\" menu_font_size=\"22px\" menu_letter_spacing=\"5px\" background_color=\"#e02b20\" border_width_bottom=\"5px\" text_orientation=\"center\" background_layout=\"dark\" custom_margin=\"0px||||false|false\" custom_padding=\"1px||0px||false|false\" z_index_tablet=\"500\" menu_text_shadow_horizontal_length_tablet=\"0px\" menu_text_shadow_vertical_length_tablet=\"0px\" menu_text_shadow_blur_strength_tablet=\"1px\" border_width_bottom_tablet=\"5px\" border_width_bottom_phone=\"5px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" /][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" background_color=\"#e02b20\" width=\"1080px\" module_alignment=\"center\" custom_padding=\"69px||0px|||\" prev_background_color=\"#ffffff\"][et_pb_row _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"2px|||||\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.26.3\" z_index_tablet=\"500\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" background_color=\"#ffffff\" text_text_shadow_horizontal_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_vertical_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_blur_strength=\"text_text_shadow_style,%91object Object%93\" link_text_shadow_horizontal_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_vertical_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_blur_strength=\"link_text_shadow_style,%91object Object%93\" ul_text_shadow_horizontal_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_vertical_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_blur_strength=\"ul_text_shadow_style,%91object Object%93\" ol_text_shadow_horizontal_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_vertical_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_blur_strength=\"ol_text_shadow_style,%91object Object%93\" quote_text_shadow_horizontal_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_vertical_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_blur_strength=\"quote_text_shadow_style,%91object Object%93\" header_text_shadow_horizontal_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_vertical_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_blur_strength=\"header_text_shadow_style,%91object Object%93\" header_2_text_shadow_horizontal_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_vertical_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_blur_strength=\"header_2_text_shadow_style,%91object Object%93\" header_3_text_shadow_horizontal_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_vertical_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_blur_strength=\"header_3_text_shadow_style,%91object Object%93\" header_4_text_shadow_horizontal_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_vertical_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_blur_strength=\"header_4_text_shadow_style,%91object Object%93\" header_5_text_shadow_horizontal_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_vertical_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_blur_strength=\"header_5_text_shadow_style,%91object Object%93\" header_6_text_shadow_horizontal_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_vertical_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_blur_strength=\"header_6_text_shadow_style,%91object Object%93\"]\r\n\r\n<h1 style=\"text-align: center;\">CURRENT SALES</h1>\r\n\r\n[/et_pb_text][et_pb_code _builder_version=\"3.26.3\" z_index_tablet=\"500\"][ebayfeedsforwordpress feed=\"\" items=\"5\"][/et_pb_code][/et_pb_column][/et_pb_row][/et_pb_section]','Sales','','inherit','closed','closed','','59-revision-v1','','','2019-07-28 17:54:56','2019-07-28 17:54:56','',59,'http://itcamefrombeyondpulp.com/uncategorized/59-revision-v1/',0,'revision','',0),(341,1,'2019-07-28 18:02:32','2019-07-28 18:02:32','[et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" custom_padding=\"0px|||||\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" custom_margin=\"||11px|||\" next_background_color=\"#000000\" global_module=\"74\"][et_pb_row global_parent=\"74\" custom_padding=\"0px||0px|||\" custom_margin=\"|auto|-66px|auto||\" _builder_version=\"3.26.3\"][et_pb_column type=\"4_4\" global_parent=\"74\" _builder_version=\"3.26.3\"][et_pb_image global_parent=\"74\" src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/header.jpg\" url=\"http://itcamefrombeyondpulp.com\" _builder_version=\"3.26.3\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.26.3\" width=\"1080px\" width_tablet=\"100%\" width_last_edited=\"on|phone\" module_alignment=\"center\" inner_module_alignment=\"center\" custom_padding=\"0px||0px||false|false\" z_index_tablet=\"500\" hover_enabled=\"0\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" prev_background_color=\"#000000\" next_background_color=\"#e02b20\" global_module=\"175\"][et_pb_fullwidth_menu global_parent=\"175\" menu_id=\"2\" submenu_direction=\"downwards\" fullwidth_menu=\"off\" dropdown_menu_text_color=\"#ffffff\" _builder_version=\"3.26.3\" menu_font=\"|800||on|||||\" menu_text_color=\"#ffffff\" menu_font_size=\"22px\" menu_letter_spacing=\"5px\" background_color=\"#e02b20\" border_width_bottom=\"5px\" text_orientation=\"center\" background_layout=\"dark\" custom_margin=\"0px||||false|false\" custom_padding=\"1px||0px||false|false\" z_index_tablet=\"500\" menu_text_shadow_horizontal_length_tablet=\"0px\" menu_text_shadow_vertical_length_tablet=\"0px\" menu_text_shadow_blur_strength_tablet=\"1px\" border_width_bottom_tablet=\"5px\" border_width_bottom_phone=\"5px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" /][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" background_color=\"#e02b20\" width=\"1080px\" module_alignment=\"center\" custom_padding=\"69px||0px|||\" prev_background_color=\"#ffffff\"][et_pb_row _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"2px|||||\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.26.3\" z_index_tablet=\"500\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" background_color=\"#ffffff\" text_text_shadow_horizontal_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_vertical_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_blur_strength=\"text_text_shadow_style,%91object Object%93\" link_text_shadow_horizontal_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_vertical_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_blur_strength=\"link_text_shadow_style,%91object Object%93\" ul_text_shadow_horizontal_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_vertical_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_blur_strength=\"ul_text_shadow_style,%91object Object%93\" ol_text_shadow_horizontal_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_vertical_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_blur_strength=\"ol_text_shadow_style,%91object Object%93\" quote_text_shadow_horizontal_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_vertical_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_blur_strength=\"quote_text_shadow_style,%91object Object%93\" header_text_shadow_horizontal_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_vertical_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_blur_strength=\"header_text_shadow_style,%91object Object%93\" header_2_text_shadow_horizontal_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_vertical_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_blur_strength=\"header_2_text_shadow_style,%91object Object%93\" header_3_text_shadow_horizontal_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_vertical_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_blur_strength=\"header_3_text_shadow_style,%91object Object%93\" header_4_text_shadow_horizontal_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_vertical_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_blur_strength=\"header_4_text_shadow_style,%91object Object%93\" header_5_text_shadow_horizontal_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_vertical_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_blur_strength=\"header_5_text_shadow_style,%91object Object%93\" header_6_text_shadow_horizontal_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_vertical_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_blur_strength=\"header_6_text_shadow_style,%91object Object%93\"]\r\n\r\n<h1 style=\"text-align: center;\">CURRENT SALES</h1>\r\n\r\n[/et_pb_text][et_pb_code _builder_version=\"3.26.3\" z_index_tablet=\"500\" background_color=\"#ffffff\" custom_padding=\"5px|5px|5px|5px\"][ebayfeedsforwordpress feed=\"http://rest.ebay.com/epn/v1/find/item.rss?keyword=good&sortOrder=BestMatch&programid=1&campaignid=5338571822&toolid=10039&listingType1=All&descriptionSearch=true&sellerId1=evil_spoon&feedType=rss&lgeo=1\" items=\"5\"][/et_pb_code][/et_pb_column][/et_pb_row][/et_pb_section]','Sales','','inherit','closed','closed','','59-revision-v1','','','2019-07-28 18:02:32','2019-07-28 18:02:32','',59,'http://itcamefrombeyondpulp.com/uncategorized/59-revision-v1/',0,'revision','',0),(344,1,'2019-07-30 02:31:12','2019-07-30 02:31:12','','pearl','','inherit','closed','closed','','pearl','','','2019-07-30 02:31:12','2019-07-30 02:31:12','',343,'http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/pearl.jpg',0,'attachment','image/jpeg',0),(345,1,'2019-07-30 02:31:47','2019-07-30 02:31:47','[et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" custom_padding=\"0px|||||\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" custom_margin=\"||11px|||\" next_background_color=\"#000000\" global_module=\"74\"][et_pb_row global_parent=\"74\" custom_padding=\"0px||0px|||\" custom_margin=\"|auto|-66px|auto||\" _builder_version=\"3.26.3\"][et_pb_column type=\"4_4\" global_parent=\"74\" _builder_version=\"3.26.3\"][et_pb_image global_parent=\"74\" src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/header.jpg\" url=\"http://itcamefrombeyondpulp.com\" _builder_version=\"3.26.3\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.26.3\" width=\"1080px\" width_tablet=\"100%\" width_last_edited=\"on|phone\" module_alignment=\"center\" inner_module_alignment=\"center\" custom_padding=\"0px||0px||false|false\" z_index_tablet=\"500\" hover_enabled=\"0\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" prev_background_color=\"#000000\" next_background_color=\"#e02b20\" global_module=\"175\"][et_pb_fullwidth_menu global_parent=\"175\" menu_id=\"2\" submenu_direction=\"downwards\" fullwidth_menu=\"off\" dropdown_menu_text_color=\"#ffffff\" _builder_version=\"3.26.3\" menu_font=\"|800||on|||||\" menu_text_color=\"#ffffff\" menu_font_size=\"22px\" menu_letter_spacing=\"5px\" background_color=\"#e02b20\" border_width_bottom=\"5px\" text_orientation=\"center\" background_layout=\"dark\" custom_margin=\"0px||||false|false\" custom_padding=\"1px||0px||false|false\" z_index_tablet=\"500\" menu_text_shadow_horizontal_length_tablet=\"0px\" menu_text_shadow_vertical_length_tablet=\"0px\" menu_text_shadow_blur_strength_tablet=\"1px\" border_width_bottom_tablet=\"5px\" border_width_bottom_phone=\"5px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" /][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" background_color=\"#e02b20\" width=\"1080px\" module_alignment=\"center\" custom_padding=\"10px||0px|||\" prev_background_color=\"#ffffff\"][et_pb_row _builder_version=\"3.26.3\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" background_color=\"#ffffff\" custom_padding=\"10px|10px||10px|false|false\" border_width_bottom=\"5px\" border_color_bottom=\"#e02b20\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image _builder_version=\"3.26.3\" src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/pearl.jpg\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\" /][et_pb_text _builder_version=\"3.26.3\" z_index_tablet=\"500\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" text_text_shadow_horizontal_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_vertical_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_blur_strength=\"text_text_shadow_style,%91object Object%93\" link_text_shadow_horizontal_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_vertical_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_blur_strength=\"link_text_shadow_style,%91object Object%93\" ul_text_shadow_horizontal_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_vertical_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_blur_strength=\"ul_text_shadow_style,%91object Object%93\" ol_text_shadow_horizontal_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_vertical_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_blur_strength=\"ol_text_shadow_style,%91object Object%93\" quote_text_shadow_horizontal_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_vertical_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_blur_strength=\"quote_text_shadow_style,%91object Object%93\" header_text_shadow_horizontal_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_vertical_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_blur_strength=\"header_text_shadow_style,%91object Object%93\" header_2_text_shadow_horizontal_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_vertical_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_blur_strength=\"header_2_text_shadow_style,%91object Object%93\" header_3_text_shadow_horizontal_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_vertical_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_blur_strength=\"header_3_text_shadow_style,%91object Object%93\" header_4_text_shadow_horizontal_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_vertical_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_blur_strength=\"header_4_text_shadow_style,%91object Object%93\" header_5_text_shadow_horizontal_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_vertical_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_blur_strength=\"header_5_text_shadow_style,%91object Object%93\" header_6_text_shadow_horizontal_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_vertical_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_blur_strength=\"header_6_text_shadow_style,%91object Object%93\"]\r\n\r\n<h3 style=\"text-align: center;\"><strong><em>The Pearl of Death</em> (Roy William Neill, 1944, 69 min.)</strong></h3><p>The Sherlock Holmes story \"The Adventure of the Six Napoleons\" is the source for not one, but two entries in the Basil Rathbone/Nigel Bruce series of Holmes films produced by Universal. This film is a very close adaptation of the story, while Dressed to Kill, produced two years later at the end of the series, is more of an \"inspired by\" situation. The basic idea is the same: there\'s a secret hidden in one of several identical knick-knacks, and bad guys are willing to murder to get ahold of it. Here, as in Sir Arthur Conan Doyle\'s original story, the thing is the Borgia Pearl, a gem with a long history of bringing misfortune and death to those who possess it.</p><p>We meet up with Holmes in disguise as an elderly priest. He\'s riding a boat to Dover, and he\'s befriended a young woman (Evelyn Ankers) who is actually a minion of the legendary criminal Giles Conover (Miles Mander). She\'s there to steal the Borgia Pearl from the guard transporting it to London. She unwittingly lets Holmes take possession of the pearl, and now Conover is desperate to get it back. The pearl is placed in a museum, and although Holmes warns them that Conover will attempt to steal it, the curator places it on display. Holmes attempts to demonstrate why the security measures they\'ve taken are insufficient, leading to what might be the first time that Holmes\'s legendary arrogance was the direct cause of a crime. On several occasions, he\'s knowingly placed people in harm\'s way, sometimes—as in <em>Terror by Night</em>—being responsible for their deaths. Here, he\'s directly responsible for the theft of the Borgia Pearl; while he\'s demonstrating the flaws in a museum\'s security system by disconnecting it, Conover dashes off with the pearl. He\'s quickly located, but the pearl is gone. Now Holmes has to find it to regain his reputation. Holmes learns of a series of seemingly unconnected murders—or at least the bumbling Lestrade (Dennis Hoey) thinks they\'re unconnected, despite the fact that all of them were killed in the same manner and that the murderer then smashed all of their china.</p><p>This film would have been a perfect place to use Holmes\'s arch-nemesis, Professor Moriarty. If I have one consistent complaint about this series of films, it\'s that Moriarty doesn\'t appear often enough: he\'s in only three of them, and in only one (<em>The Woman in Green</em>) is he really effective. Instead, we get second-rate villains, like Conover here or Colonel Sebastian Moran in <em>Terror by Night</em>. However, we do meet a memorable villain, the Hoxton Creeper, played by the acromegalic actor Rondo Hatton. The Creeper, unseen except in silhouette for most of the film, murders by breaking the backs of his victims. I could be picky and say that his preferred method, breaking the third lumbar vertebra, is unlikely to produce instant death as it does in the film, but he\'s creepy enough to make me not give a hoot. The Creeper was such a hit in this film that Universal brought him back for two horror films in 1946, <em>House of Horror</em> and <em>The Brute Man</em>, before Hatton died of complications from his acromelagy.</p><p>Aside from the Creeper, there\'s not a lot to distinguish this film. Rathbone is good as always, and he\'s allowed a tiny bit of character devlopment when he so royally screws up. Poor Nigel Bruce has only one substantial scene, and it\'s of Watson acting like a buffoon. It\'s certainly not the worst film in the series, but it\'s pretty weak.</p><p><b>Baker Street Regulars</b> (actors who appeared in more than two films in the series as different characters):</p><p>Wilson Benge, 2nd of 5 appearances (playing second steward) <br />Harry Cording, 5th of 8 (George Gelder) <br />Harold De Becker, 3rd of 4 (boss) <br />Leslie Denison, 4th of 6 (Police Sergeant Murdock) <br />Holmes Herbert, 4th of 6 (James Goodram) <br />Leyland Hogdson, 5th of 7 (Customs officer) <br />Arthur Stenning, 2nd of 3 (first steward) <br />David Thursby, 2nd of 3 (unknown) <br />Eric Wilton, 3rd of 3 (Conover\'s chauffeur) <br />Ian Wolfe, 3rd of 4 (Amos Hodder)</p>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','The Pearl of Death (1944)','','inherit','closed','closed','','343-revision-v1','','','2019-07-30 02:31:47','2019-07-30 02:31:47','',343,'http://itcamefrombeyondpulp.com/uncategorized/343-revision-v1/',0,'revision','',0),(346,1,'2019-07-30 02:36:49','2019-07-30 02:36:49','[et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" custom_padding=\"0px|||||\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" custom_margin=\"||11px|||\" next_background_color=\"#000000\" global_module=\"74\"][et_pb_row global_parent=\"74\" custom_padding=\"0px||0px|||\" custom_margin=\"|auto|-66px|auto||\" _builder_version=\"3.26.3\"][et_pb_column type=\"4_4\" global_parent=\"74\" _builder_version=\"3.26.3\"][et_pb_image global_parent=\"74\" src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/header.jpg\" url=\"http://itcamefrombeyondpulp.com\" _builder_version=\"3.26.3\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.26.3\" width=\"1080px\" width_tablet=\"100%\" width_last_edited=\"on|phone\" module_alignment=\"center\" inner_module_alignment=\"center\" custom_padding=\"0px||0px||false|false\" z_index_tablet=\"500\" hover_enabled=\"0\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" prev_background_color=\"#000000\" next_background_color=\"#e02b20\" global_module=\"175\"][et_pb_fullwidth_menu global_parent=\"175\" menu_id=\"2\" submenu_direction=\"downwards\" fullwidth_menu=\"off\" dropdown_menu_text_color=\"#ffffff\" _builder_version=\"3.26.3\" menu_font=\"|800||on|||||\" menu_text_color=\"#ffffff\" menu_font_size=\"22px\" menu_letter_spacing=\"5px\" background_color=\"#e02b20\" border_width_bottom=\"5px\" text_orientation=\"center\" background_layout=\"dark\" custom_margin=\"0px||||false|false\" custom_padding=\"1px||0px||false|false\" z_index_tablet=\"500\" menu_text_shadow_horizontal_length_tablet=\"0px\" menu_text_shadow_vertical_length_tablet=\"0px\" menu_text_shadow_blur_strength_tablet=\"1px\" border_width_bottom_tablet=\"5px\" border_width_bottom_phone=\"5px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" /][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" background_color=\"#e02b20\" width=\"1080px\" module_alignment=\"center\" custom_padding=\"10px||0px|||\" prev_background_color=\"#ffffff\"][et_pb_row _builder_version=\"3.26.3\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" background_color=\"#ffffff\" custom_padding=\"10px|10px||10px|false|false\" border_width_bottom=\"5px\" border_color_bottom=\"#e02b20\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image _builder_version=\"3.26.3\" src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/pearl.jpg\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\" /][et_pb_text _builder_version=\"3.26.3\" z_index_tablet=\"500\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" text_text_shadow_horizontal_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_vertical_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_blur_strength=\"text_text_shadow_style,%91object Object%93\" link_text_shadow_horizontal_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_vertical_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_blur_strength=\"link_text_shadow_style,%91object Object%93\" ul_text_shadow_horizontal_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_vertical_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_blur_strength=\"ul_text_shadow_style,%91object Object%93\" ol_text_shadow_horizontal_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_vertical_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_blur_strength=\"ol_text_shadow_style,%91object Object%93\" quote_text_shadow_horizontal_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_vertical_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_blur_strength=\"quote_text_shadow_style,%91object Object%93\" header_text_shadow_horizontal_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_vertical_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_blur_strength=\"header_text_shadow_style,%91object Object%93\" header_2_text_shadow_horizontal_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_vertical_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_blur_strength=\"header_2_text_shadow_style,%91object Object%93\" header_3_text_shadow_horizontal_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_vertical_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_blur_strength=\"header_3_text_shadow_style,%91object Object%93\" header_4_text_shadow_horizontal_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_vertical_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_blur_strength=\"header_4_text_shadow_style,%91object Object%93\" header_5_text_shadow_horizontal_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_vertical_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_blur_strength=\"header_5_text_shadow_style,%91object Object%93\" header_6_text_shadow_horizontal_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_vertical_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_blur_strength=\"header_6_text_shadow_style,%91object Object%93\"]\n\n<h3 style=\"text-align: center;\"><strong><em>The Pearl of Death</em> (Roy William Neill, 1944, 69 min.)</strong></h3>\n<p>The Sherlock Holmes story \"The Adventure of the Six Napoleons\" is the source for not one, but two entries in the Basil Rathbone/Nigel Bruce series of Holmes films produced by Universal. This film is a very close adaptation of the story, while Dressed to Kill, produced two years later at the end of the series, is more of an \"inspired by\" situation. The basic idea is the same: there\'s a secret hidden in one of several identical knick-knacks, and bad guys are willing to murder to get ahold of it. Here, as in Sir Arthur Conan Doyle\'s original story, the thing is the Borgia Pearl, a gem with a long history of bringing misfortune and death to those who possess it.</p>\n<p>We meet up with Holmes in disguise as an elderly priest. He\'s riding a boat to Dover, and he\'s befriended a young woman (Evelyn Ankers) who is actually a minion of the legendary criminal Giles Conover (Miles Mander). She\'s there to steal the Borgia Pearl from the guard transporting it to London. She unwittingly lets Holmes take possession of the pearl, and now Conover is desperate to get it back. The pearl is placed in a museum, and although Holmes warns them that Conover will attempt to steal it, the curator places it on display. Holmes attempts to demonstrate why the security measures they\'ve taken are insufficient, leading to what might be the first time that Holmes\'s legendary arrogance was the direct cause of a crime. On several occasions, he\'s knowingly placed people in harm\'s way, sometimes—as in <em>Terror by Night</em>—being responsible for their deaths. Here, he\'s directly responsible for the theft of the Borgia Pearl; while he\'s demonstrating the flaws in a museum\'s security system by disconnecting it, Conover dashes off with the pearl. He\'s quickly located, but the pearl is gone. Now Holmes has to find it to regain his reputation. Holmes learns of a series of seemingly unconnected murders—or at least the bumbling Lestrade (Dennis Hoey) thinks they\'re unconnected, despite the fact that all of them were killed in the same manner and that the murderer then smashed all of their china.</p>\n<p>This film would have been a perfect place to use Holmes\'s arch-nemesis, Professor Moriarty. If I have one consistent complaint about this series of films, it\'s that Moriarty doesn\'t appear often enough: he\'s in only three of them, and in only one (<em>The Woman in Green</em>) is he really effective. Instead, we get second-rate villains, like Conover here or Colonel Sebastian Moran in <em>Terror by Night</em>. However, we do meet a memorable villain, the Hoxton Creeper, played by the acromegalic actor Rondo Hatton. The Creeper, unseen except in silhouette for most of the film, murders by breaking the backs of his victims. I could be picky and say that his preferred method, breaking the third lumbar vertebra, is unlikely to produce instant death as it does in the film, but he\'s creepy enough to make me not give a hoot. The Creeper was such a hit in this film that Universal brought him back for two horror films in 1946, <em>House of Horror</em> and <em>The Brute Man</em>, before Hatton died of complications from his acromelagy.</p>\n<p>Aside from the Creeper, there\'s not a lot to distinguish this film. Rathbone is good as always, and he\'s allowed a tiny bit of character devlopment when he so royally screws up. Poor Nigel Bruce has only one substantial scene, and it\'s of Watson acting like a buffoon. It\'s certainly not the worst film in the series, but it\'s pretty weak.</p>\n<p><b>Baker Street Regulars</b> (actors who appeared in more than two films in the series as different characters):</p>\n<p>Wilson Benge, 2nd of 5 appearances (playing second steward) <br />Harry Cording, 5th of 8 (George Gelder) <br />Harold De Becker, 3rd of 4 (boss) <br />Leslie Denison, 4th of 6 (Police Sergeant Murdock) <br />Holmes Herbert, 4th of 6 (James Goodram) <br />Leyland Hogdson, 5th of 7 (Customs officer) <br />Arthur Stenning, 2nd of 3 (first steward) <br />David Thursby, 2nd of 3 (unknown) <br />Eric Wilton, 3rd of 3 (Conover\'s chauffeur) <br />Ian Wolfe, 3rd of 4 (Amos Hodder)</p>\n\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','The Pearl of Death (1944)','','inherit','closed','closed','','343-autosave-v1','','','2019-07-30 02:36:49','2019-07-30 02:36:49','',343,'http://itcamefrombeyondpulp.com/uncategorized/343-autosave-v1/',0,'revision','',0),(347,1,'2019-07-30 03:13:22','2019-07-30 03:13:22','[et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" custom_padding=\"0px|||||\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" custom_margin=\"||11px|||\" next_background_color=\"#000000\" global_module=\"74\"][et_pb_row global_parent=\"74\" custom_padding=\"0px||0px|||\" custom_margin=\"|auto|-66px|auto||\" _builder_version=\"3.26.3\"][et_pb_column type=\"4_4\" global_parent=\"74\" _builder_version=\"3.26.3\"][et_pb_image global_parent=\"74\" src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/header.jpg\" url=\"http://itcamefrombeyondpulp.com\" _builder_version=\"3.26.3\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.26.3\" width=\"1080px\" width_tablet=\"100%\" width_last_edited=\"on|phone\" module_alignment=\"center\" inner_module_alignment=\"center\" custom_padding=\"0px||0px||false|false\" z_index_tablet=\"500\" hover_enabled=\"0\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" prev_background_color=\"#000000\" next_background_color=\"#e02b20\" global_module=\"175\"][et_pb_fullwidth_menu global_parent=\"175\" menu_id=\"2\" submenu_direction=\"downwards\" fullwidth_menu=\"off\" dropdown_menu_text_color=\"#ffffff\" _builder_version=\"3.26.3\" menu_font=\"|800||on|||||\" menu_text_color=\"#ffffff\" menu_font_size=\"22px\" menu_letter_spacing=\"5px\" background_color=\"#e02b20\" border_width_bottom=\"5px\" text_orientation=\"center\" background_layout=\"dark\" custom_margin=\"0px||||false|false\" custom_padding=\"1px||0px||false|false\" z_index_tablet=\"500\" menu_text_shadow_horizontal_length_tablet=\"0px\" menu_text_shadow_vertical_length_tablet=\"0px\" menu_text_shadow_blur_strength_tablet=\"1px\" border_width_bottom_tablet=\"5px\" border_width_bottom_phone=\"5px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" /][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" background_color=\"#e02b20\" width=\"1080px\" module_alignment=\"center\" custom_padding=\"10px||0px|||\" prev_background_color=\"#ffffff\"][et_pb_row _builder_version=\"3.26.3\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" background_color=\"#ffffff\" custom_padding=\"10px|10px||10px|false|false\" border_width_bottom=\"5px\" border_color_bottom=\"#e02b20\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image _builder_version=\"3.26.3\" src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/algiers.jpg\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\" /][et_pb_text _builder_version=\"3.26.3\" z_index_tablet=\"500\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" text_text_shadow_horizontal_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_vertical_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_blur_strength=\"text_text_shadow_style,%91object Object%93\" link_text_shadow_horizontal_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_vertical_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_blur_strength=\"link_text_shadow_style,%91object Object%93\" ul_text_shadow_horizontal_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_vertical_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_blur_strength=\"ul_text_shadow_style,%91object Object%93\" ol_text_shadow_horizontal_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_vertical_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_blur_strength=\"ol_text_shadow_style,%91object Object%93\" quote_text_shadow_horizontal_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_vertical_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_blur_strength=\"quote_text_shadow_style,%91object Object%93\" header_text_shadow_horizontal_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_vertical_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_blur_strength=\"header_text_shadow_style,%91object Object%93\" header_2_text_shadow_horizontal_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_vertical_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_blur_strength=\"header_2_text_shadow_style,%91object Object%93\" header_3_text_shadow_horizontal_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_vertical_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_blur_strength=\"header_3_text_shadow_style,%91object Object%93\" header_4_text_shadow_horizontal_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_vertical_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_blur_strength=\"header_4_text_shadow_style,%91object Object%93\" header_5_text_shadow_horizontal_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_vertical_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_blur_strength=\"header_5_text_shadow_style,%91object Object%93\" header_6_text_shadow_horizontal_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_vertical_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_blur_strength=\"header_6_text_shadow_style,%91object Object%93\"]\r\n\r\n<h3 style=\"text-align: center;\"><strong><em>Pursuit to Algiers</em> (Roy William Neill, 1945, 65 min.)</strong></h3><p>In the worst of the Rathbone/Bruce series of Sherlock Holmes films, Holmes and Watson play nursemaids to a European king on a fraught voyage from England to Algiers, all \"in the name of democratic government.\" (I\'m usure how the death of a figurehead king could really affect a democratic government, and how a country ruled by a non-figurehead king could have much to do with democracy, but that\'s unimportant.) The film is marred by glacial pacing, its own silly premise, and a snowballing series of absurdities that eventually blot out the normal enjoyment of seeing Basil Rathbone and Nigel Bruce do their thing.</p><p>Although Watson wants to go on a relaxing vacation, Holmes allows himself to be involved in international intrigue once again. The king of a fictional European country has been murdered, and his government wants Holmes to escort the new king (Leslie Vincent) to the safety of Algiers, where loyalists will take him to his throne. Holmes and the king head off in an airplane, while Watson goes aboard a steamer as a distraction. Quickly, though, there\'s trouble: the airplane is shot down, and Holmes and the king are apparently dead. A distraught Watson discovers that the pair were never aboard the plane: they\'ve been on the steamer all along, and now they have to survive the murderous efforts of a trio of killers until they arrive in Algiers.</p><p>The film makes two grave mistakes: keeping Holmes out of the picture for too long, and then introducing him in a rather stupid manner. Aside from the overly clever beginning, when members of the government of a fictional European country enlist him to guard the new king, Holmes is out of the story for the first third of its running time. That leaves Watson as the primary focus, and although he\'s a genial enough fellow, he only really works when he\'s at Holmes\'s side. We\'re left with some mild comic relief as he suspiciously eyes the other passengers on the ship and develops a touching crush on the young Sheila (Marjorie Riordan). When Holmes reveals to Watson that he wasn\'t killed in the plane crash, the film makes its second misstep: having Holmes and the young Nikolas parade around the ship, drawing attention to themselves. Wouldn\'t it have been much better for them to stay concealed? In most films, I\'d just accept it with the knowledge that \"this is the film about the people who made a rather stupid mistake,\" but I can\'t really accept it from the master detective Sherlock Holmes. (One way to read it that would make it make sense is to view Holmes as having a death wish, but that\'s a darkness that is usually unwelcome in these effervescent films.)</p><p>From Holmes\'s appearance on the ship, things devolve into an almost sub–James Bond level of silly hijinks. Holmes quickly identifies the people sent to kill Nikolas, but he toys with them flippantly instead of doing anything about them. Even when Mirko (Martin Kosleck) the knife-thrower attempts to skewer him to death in his bed, Holmes merely laughs about his escape and slams the porthole shut. Perhaps he had grounds to call the authorities by this point. (Again, I know this is the movie about the master detective who didn\'t call the authorities, but it stretches our patience beyond what\'s acceptable.)</p><p>There are two fetching instances of self-reference in the film, perhaps signs that screenwriter Leonard Lee wanted to take the franchise into the postmodern (but perhaps not). During a dinner party, as Holmes attempts to figure out how the assassins are going to strike next, Watson is induced to tell a Sherlock Holmes story; readers familiar with the stories will know that Watson is their purported author, so having Watson tell a story within a story that Watson is presumably telling is quite clever. Then, in the last scene, where Holmes would usually give a patriotic speech (that\'s gone from this film, as is the exhortation to buy war bonds), instead he pokes fun at Watson\'s honest face: \"You\'d never make a good actor, old boy,\" he says. Since Nigel Bruce, playing Watson, is in fact a good actor, one could read this as a meta-comment on the film. Or not.</p><p><i>Nota bene</i>: The Internet Movie Database claims that this film is based on an original story by Sir Arthur Conan Doyle, but that\'s misleading. They list a story called \"The Return of Sherlock Holmes,\" but no such story exists: there\'s a collection of Holmes adventures by that title, but none of the stories in it even remotely resembles this plot. However, in one of these stories, Watson mentions in passing \"the affair of the steamship <i>Friesland</i> that so nearly cost us both our lives.\" He gives no details, and Leonard Lee made the rest up.</p><p>The series was clearly limping to a close. Bertrand Millhauser was gone, leaving Leonard Lee and Frank Gruber to split the writing chores on the final films. Only two films followed before Universal pulled the plug, <em>Terror by Night</em> and <em>Dressed to Kill</em>.</p><p><b>Baker Street Regulars</b> (actors who appeared in more than two films in the series as different characters):</p><p>Wilson Benge, 4th of 5 appearances (as clergyman) <br />Gerald Hamer, 4th of 5 (Kingston) <br />Olaf Hytten, 5th of 6 (Simpson, the gunsmith) <br />Frederick Worlock, 5th of 6 (Prime Minister)</p>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Pursuit to Algiers (1945)','','publish','closed','closed','','pursuit-to-algiers-1945','','','2019-07-30 03:13:22','2019-07-30 03:13:22','',0,'http://itcamefrombeyondpulp.com/?p=347',0,'post','',0),(348,1,'2019-07-30 03:12:40','2019-07-30 03:12:40','','algiers','','inherit','closed','closed','','algiers','','','2019-07-30 03:12:40','2019-07-30 03:12:40','',347,'http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/algiers.jpg',0,'attachment','image/jpeg',0),(349,1,'2019-07-30 03:13:22','2019-07-30 03:13:22','[et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" custom_padding=\"0px|||||\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" custom_margin=\"||11px|||\" next_background_color=\"#000000\" global_module=\"74\"][et_pb_row global_parent=\"74\" custom_padding=\"0px||0px|||\" custom_margin=\"|auto|-66px|auto||\" _builder_version=\"3.26.3\"][et_pb_column type=\"4_4\" global_parent=\"74\" _builder_version=\"3.26.3\"][et_pb_image global_parent=\"74\" src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/header.jpg\" url=\"http://itcamefrombeyondpulp.com\" _builder_version=\"3.26.3\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.26.3\" width=\"1080px\" width_tablet=\"100%\" width_last_edited=\"on|phone\" module_alignment=\"center\" inner_module_alignment=\"center\" custom_padding=\"0px||0px||false|false\" z_index_tablet=\"500\" hover_enabled=\"0\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" prev_background_color=\"#000000\" next_background_color=\"#e02b20\" global_module=\"175\"][et_pb_fullwidth_menu global_parent=\"175\" menu_id=\"2\" submenu_direction=\"downwards\" fullwidth_menu=\"off\" dropdown_menu_text_color=\"#ffffff\" _builder_version=\"3.26.3\" menu_font=\"|800||on|||||\" menu_text_color=\"#ffffff\" menu_font_size=\"22px\" menu_letter_spacing=\"5px\" background_color=\"#e02b20\" border_width_bottom=\"5px\" text_orientation=\"center\" background_layout=\"dark\" custom_margin=\"0px||||false|false\" custom_padding=\"1px||0px||false|false\" z_index_tablet=\"500\" menu_text_shadow_horizontal_length_tablet=\"0px\" menu_text_shadow_vertical_length_tablet=\"0px\" menu_text_shadow_blur_strength_tablet=\"1px\" border_width_bottom_tablet=\"5px\" border_width_bottom_phone=\"5px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" /][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" background_color=\"#e02b20\" width=\"1080px\" module_alignment=\"center\" custom_padding=\"10px||0px|||\" prev_background_color=\"#ffffff\"][et_pb_row _builder_version=\"3.26.3\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" background_color=\"#ffffff\" custom_padding=\"10px|10px||10px|false|false\" border_width_bottom=\"5px\" border_color_bottom=\"#e02b20\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image _builder_version=\"3.26.3\" src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/algiers.jpg\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\" /][et_pb_text _builder_version=\"3.26.3\" z_index_tablet=\"500\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" text_text_shadow_horizontal_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_vertical_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_blur_strength=\"text_text_shadow_style,%91object Object%93\" link_text_shadow_horizontal_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_vertical_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_blur_strength=\"link_text_shadow_style,%91object Object%93\" ul_text_shadow_horizontal_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_vertical_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_blur_strength=\"ul_text_shadow_style,%91object Object%93\" ol_text_shadow_horizontal_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_vertical_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_blur_strength=\"ol_text_shadow_style,%91object Object%93\" quote_text_shadow_horizontal_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_vertical_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_blur_strength=\"quote_text_shadow_style,%91object Object%93\" header_text_shadow_horizontal_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_vertical_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_blur_strength=\"header_text_shadow_style,%91object Object%93\" header_2_text_shadow_horizontal_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_vertical_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_blur_strength=\"header_2_text_shadow_style,%91object Object%93\" header_3_text_shadow_horizontal_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_vertical_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_blur_strength=\"header_3_text_shadow_style,%91object Object%93\" header_4_text_shadow_horizontal_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_vertical_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_blur_strength=\"header_4_text_shadow_style,%91object Object%93\" header_5_text_shadow_horizontal_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_vertical_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_blur_strength=\"header_5_text_shadow_style,%91object Object%93\" header_6_text_shadow_horizontal_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_vertical_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_blur_strength=\"header_6_text_shadow_style,%91object Object%93\"]\r\n\r\n<h3 style=\"text-align: center;\"><strong><em>Pursuit to Algiers</em> (Roy William Neill, 1945, 65 min.)</strong></h3><p>In the worst of the Rathbone/Bruce series of Sherlock Holmes films, Holmes and Watson play nursemaids to a European king on a fraught voyage from England to Algiers, all \"in the name of democratic government.\" (I\'m usure how the death of a figurehead king could really affect a democratic government, and how a country ruled by a non-figurehead king could have much to do with democracy, but that\'s unimportant.) The film is marred by glacial pacing, its own silly premise, and a snowballing series of absurdities that eventually blot out the normal enjoyment of seeing Basil Rathbone and Nigel Bruce do their thing.</p><p>Although Watson wants to go on a relaxing vacation, Holmes allows himself to be involved in international intrigue once again. The king of a fictional European country has been murdered, and his government wants Holmes to escort the new king (Leslie Vincent) to the safety of Algiers, where loyalists will take him to his throne. Holmes and the king head off in an airplane, while Watson goes aboard a steamer as a distraction. Quickly, though, there\'s trouble: the airplane is shot down, and Holmes and the king are apparently dead. A distraught Watson discovers that the pair were never aboard the plane: they\'ve been on the steamer all along, and now they have to survive the murderous efforts of a trio of killers until they arrive in Algiers.</p><p>The film makes two grave mistakes: keeping Holmes out of the picture for too long, and then introducing him in a rather stupid manner. Aside from the overly clever beginning, when members of the government of a fictional European country enlist him to guard the new king, Holmes is out of the story for the first third of its running time. That leaves Watson as the primary focus, and although he\'s a genial enough fellow, he only really works when he\'s at Holmes\'s side. We\'re left with some mild comic relief as he suspiciously eyes the other passengers on the ship and develops a touching crush on the young Sheila (Marjorie Riordan). When Holmes reveals to Watson that he wasn\'t killed in the plane crash, the film makes its second misstep: having Holmes and the young Nikolas parade around the ship, drawing attention to themselves. Wouldn\'t it have been much better for them to stay concealed? In most films, I\'d just accept it with the knowledge that \"this is the film about the people who made a rather stupid mistake,\" but I can\'t really accept it from the master detective Sherlock Holmes. (One way to read it that would make it make sense is to view Holmes as having a death wish, but that\'s a darkness that is usually unwelcome in these effervescent films.)</p><p>From Holmes\'s appearance on the ship, things devolve into an almost sub–James Bond level of silly hijinks. Holmes quickly identifies the people sent to kill Nikolas, but he toys with them flippantly instead of doing anything about them. Even when Mirko (Martin Kosleck) the knife-thrower attempts to skewer him to death in his bed, Holmes merely laughs about his escape and slams the porthole shut. Perhaps he had grounds to call the authorities by this point. (Again, I know this is the movie about the master detective who didn\'t call the authorities, but it stretches our patience beyond what\'s acceptable.)</p><p>There are two fetching instances of self-reference in the film, perhaps signs that screenwriter Leonard Lee wanted to take the franchise into the postmodern (but perhaps not). During a dinner party, as Holmes attempts to figure out how the assassins are going to strike next, Watson is induced to tell a Sherlock Holmes story; readers familiar with the stories will know that Watson is their purported author, so having Watson tell a story within a story that Watson is presumably telling is quite clever. Then, in the last scene, where Holmes would usually give a patriotic speech (that\'s gone from this film, as is the exhortation to buy war bonds), instead he pokes fun at Watson\'s honest face: \"You\'d never make a good actor, old boy,\" he says. Since Nigel Bruce, playing Watson, is in fact a good actor, one could read this as a meta-comment on the film. Or not.</p><p><i>Nota bene</i>: The Internet Movie Database claims that this film is based on an original story by Sir Arthur Conan Doyle, but that\'s misleading. They list a story called \"The Return of Sherlock Holmes,\" but no such story exists: there\'s a collection of Holmes adventures by that title, but none of the stories in it even remotely resembles this plot. However, in one of these stories, Watson mentions in passing \"the affair of the steamship <i>Friesland</i> that so nearly cost us both our lives.\" He gives no details, and Leonard Lee made the rest up.</p><p>The series was clearly limping to a close. Bertrand Millhauser was gone, leaving Leonard Lee and Frank Gruber to split the writing chores on the final films. Only two films followed before Universal pulled the plug, <em>Terror by Night</em> and <em>Dressed to Kill</em>.</p><p><b>Baker Street Regulars</b> (actors who appeared in more than two films in the series as different characters):</p><p>Wilson Benge, 4th of 5 appearances (as clergyman) <br />Gerald Hamer, 4th of 5 (Kingston) <br />Olaf Hytten, 5th of 6 (Simpson, the gunsmith) <br />Frederick Worlock, 5th of 6 (Prime Minister)</p>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Pursuit to Algiers (1945)','','inherit','closed','closed','','347-revision-v1','','','2019-07-30 03:13:22','2019-07-30 03:13:22','',347,'http://itcamefrombeyondpulp.com/uncategorized/347-revision-v1/',0,'revision','',0),(351,1,'2019-07-30 03:16:51','2019-07-30 03:16:51','[et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" custom_padding=\"0px|||||\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" custom_margin=\"||11px|||\" next_background_color=\"#000000\" global_module=\"74\"][et_pb_row global_parent=\"74\" custom_padding=\"0px||0px|||\" custom_margin=\"|auto|-66px|auto||\" _builder_version=\"3.26.3\"][et_pb_column type=\"4_4\" global_parent=\"74\" _builder_version=\"3.26.3\"][et_pb_image global_parent=\"74\" src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/header.jpg\" url=\"http://itcamefrombeyondpulp.com\" _builder_version=\"3.26.3\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.26.3\" width=\"1080px\" width_tablet=\"100%\" width_last_edited=\"on|phone\" module_alignment=\"center\" inner_module_alignment=\"center\" custom_padding=\"0px||0px||false|false\" z_index_tablet=\"500\" hover_enabled=\"0\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" prev_background_color=\"#000000\" next_background_color=\"#e02b20\" global_module=\"175\"][et_pb_fullwidth_menu global_parent=\"175\" menu_id=\"2\" submenu_direction=\"downwards\" fullwidth_menu=\"off\" dropdown_menu_text_color=\"#ffffff\" _builder_version=\"3.26.3\" menu_font=\"|800||on|||||\" menu_text_color=\"#ffffff\" menu_font_size=\"22px\" menu_letter_spacing=\"5px\" background_color=\"#e02b20\" border_width_bottom=\"5px\" text_orientation=\"center\" background_layout=\"dark\" custom_margin=\"0px||||false|false\" custom_padding=\"1px||0px||false|false\" z_index_tablet=\"500\" menu_text_shadow_horizontal_length_tablet=\"0px\" menu_text_shadow_vertical_length_tablet=\"0px\" menu_text_shadow_blur_strength_tablet=\"1px\" border_width_bottom_tablet=\"5px\" border_width_bottom_phone=\"5px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" /][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" background_color=\"#e02b20\" width=\"1080px\" module_alignment=\"center\" custom_padding=\"10px||0px|||\" hover_enabled=\"0\" width_last_edited=\"on|tablet\" width_phone=\"100%\" width_tablet=\"100%\" prev_background_color=\"#ffffff\"][et_pb_row custom_padding=\"10px|10px||\" _builder_version=\"3.26.3\" background_color=\"#ffffff\" border_width_bottom=\"5px\" border_color_bottom=\"#e02b20\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.26.3\" z_index_tablet=\"500\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\"]\r\n\r\n<h1 style=\"text-align: center;\">Movies &amp; TV Reviews</h1>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.26.3\" background_color=\"#ffffff\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" column_structure=\"1_3,1_3,1_3\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.26.3\" z_index_tablet=\"500\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\"]\r\n\r\n<h3 style=\"text-align: center;\">Sci-Fi</h3>\r\n<p style=\"text-align: center;\"><strong><a href=\"http://itcamefrombeyondpulp.com/movies/children-of-men-2006/\">Children of Men (2006)</a><br /></strong><strong><a href=\"http://itcamefrombeyondpulp.com/movies/cloverfield-2008/\">Cloverfield (2008)</a><br /><a href=\"http://itcamefrombeyondpulp.com/movies/the-dark-knight-2008/\">The Dark Knight (2008)</a><br /><a href=\"http://itcamefrombeyondpulp.com/movies/the-fountain-2006/\">The Fountain (2006)</a><br /><a href=\"http://itcamefrombeyondpulp.com/movies/hardware-1990/\">Hardware (1990)</a><br /><a href=\"http://itcamefrombeyondpulp.com/movies/harry-potter-and-the-chamber-of-secrets-2002/\">Harry Potter and the Chamber of Secrets (2002)</a><br /><a href=\"http://itcamefrombeyondpulp.com/movies/harry-potter-and-the-sorcerers-stone-2001/\">Harry Potter and the Sorcerer\'s Stone (2001)</a><br /><a href=\"http://itcamefrombeyondpulp.com/movies/maniac-1934/\">Maniac (1934)</a><br /><a href=\"http://itcamefrombeyondpulp.com/movies/the-phantom-planet-1961/\">The Phantom Planet (1961)</a><br /><a href=\"http://itcamefrombeyondpulp.com/movies/predator-1987/\">Predator (1987)</a><br /></strong><a href=\"http://itcamefrombeyondpulp.com/movies/serenity-2005/\"><strong>Serenity (2005)</strong></a><br /><a href=\"http://itcamefrombeyondpulp.com/movies/x-men-the-last-stand-2006/\"><strong>X-Men: The Last Stand (2006)</strong></a></p>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.26.3\" z_index_tablet=\"500\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" text_text_shadow_horizontal_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_vertical_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_blur_strength=\"text_text_shadow_style,%91object Object%93\" link_text_shadow_horizontal_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_vertical_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_blur_strength=\"link_text_shadow_style,%91object Object%93\" ul_text_shadow_horizontal_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_vertical_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_blur_strength=\"ul_text_shadow_style,%91object Object%93\" ol_text_shadow_horizontal_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_vertical_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_blur_strength=\"ol_text_shadow_style,%91object Object%93\" quote_text_shadow_horizontal_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_vertical_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_blur_strength=\"quote_text_shadow_style,%91object Object%93\" header_text_shadow_horizontal_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_vertical_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_blur_strength=\"header_text_shadow_style,%91object Object%93\" header_2_text_shadow_horizontal_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_vertical_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_blur_strength=\"header_2_text_shadow_style,%91object Object%93\" header_3_text_shadow_horizontal_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_vertical_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_blur_strength=\"header_3_text_shadow_style,%91object Object%93\" header_4_text_shadow_horizontal_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_vertical_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_blur_strength=\"header_4_text_shadow_style,%91object Object%93\" header_5_text_shadow_horizontal_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_vertical_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_blur_strength=\"header_5_text_shadow_style,%91object Object%93\" header_6_text_shadow_horizontal_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_vertical_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_blur_strength=\"header_6_text_shadow_style,%91object Object%93\"]\r\n\r\n<h3 style=\"text-align: center;\">Horror</h3>\r\n<p style=\"text-align: center;\"><a href=\"http://itcamefrombeyondpulp.com/movies/bloodrayne-2-deliverance-2007/\"><strong>BloodRayne 2: Deliverance (2007)</strong></a><br /><a href=\"http://itcamefrombeyondpulp.com/movies/the-cat-and-the-canary-1927/\"><strong>The Cat and the Canary (1927)</strong></a><br /><a href=\"http://itcamefrombeyondpulp.com/movies/the-children-1980/\"><strong>The Children (1980)</strong></a><br /><strong><a href=\"http://itcamefrombeyondpulp.com/movies/colin-2008/\">Colin (2008)</a></strong><br /><strong><a href=\"http://itcamefrombeyondpulp.com/movies/dark-water-2005/\">Dark Water (2005)</a></strong><br /><strong><a href=\"http://itcamefrombeyondpulp.com/movies/the-devils-daughter-1973/\">The Devil\'s Daughter (1973)</a></strong><br /><a href=\"http://itcamefrombeyondpulp.com/movies/masters-of-horror-the-black-cat-2007/\"><strong>Masters of Horror: The Black Cat (2007)</strong></a></p>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.26.3\" z_index_tablet=\"500\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" text_text_shadow_horizontal_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_vertical_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_blur_strength=\"text_text_shadow_style,%91object Object%93\" link_text_shadow_horizontal_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_vertical_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_blur_strength=\"link_text_shadow_style,%91object Object%93\" ul_text_shadow_horizontal_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_vertical_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_blur_strength=\"ul_text_shadow_style,%91object Object%93\" ol_text_shadow_horizontal_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_vertical_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_blur_strength=\"ol_text_shadow_style,%91object Object%93\" quote_text_shadow_horizontal_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_vertical_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_blur_strength=\"quote_text_shadow_style,%91object Object%93\" header_text_shadow_horizontal_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_vertical_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_blur_strength=\"header_text_shadow_style,%91object Object%93\" header_2_text_shadow_horizontal_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_vertical_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_blur_strength=\"header_2_text_shadow_style,%91object Object%93\" header_3_text_shadow_horizontal_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_vertical_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_blur_strength=\"header_3_text_shadow_style,%91object Object%93\" header_4_text_shadow_horizontal_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_vertical_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_blur_strength=\"header_4_text_shadow_style,%91object Object%93\" header_5_text_shadow_horizontal_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_vertical_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_blur_strength=\"header_5_text_shadow_style,%91object Object%93\" header_6_text_shadow_horizontal_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_vertical_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_blur_strength=\"header_6_text_shadow_style,%91object Object%93\"]\r\n\r\n<h3 style=\"text-align: center;\">Whatnot</h3><p style=\"text-align: center;\"><strong><em>Basil Rathbone/Nigel Bruce Sherlock Holmes Films</em></strong></p><p style=\"text-align: center;\"><a href=\"http://itcamefrombeyondpulp.com/movies/the-adventures-of-sherlock-holmes-1939/\"><strong>The Adventures of Sherlock Holmes (1939)</strong></a><br /><a href=\"http://itcamefrombeyondpulp.com/movies/the-hound-of-the-baskervilles-1939/\"><strong>The Hound of the Baskervilles (1939)</strong></a><br /><strong><a href=\"http://itcamefrombeyondpulp.com/movies/the-pearl-of-death-1944/\">The Pearl of Death (1944)</a></strong><br /><strong><a href=\"http://itcamefrombeyondpulp.com/movies/the-house-of-fear-1945/\">The House of Fear (1945)</a></strong><br /><strong><a href=\"http://itcamefrombeyondpulp.com/movies/pursuit-to-algiers-1945/\">Pursuit to Algiers (1945)</a></strong><br /><strong><a href=\"http://itcamefrombeyondpulp.com/movies/dressed-to-kill-1946/\">Dressed to Kill (1946)</a></strong></p>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Movies','','inherit','closed','closed','','45-revision-v1','','','2019-07-30 03:16:51','2019-07-30 03:16:51','',45,'http://itcamefrombeyondpulp.com/uncategorized/45-revision-v1/',0,'revision','',0),(359,1,'2019-08-03 21:54:16','2019-08-03 21:54:16','[et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" custom_padding=\"0px|||||\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" custom_margin=\"||11px|||\" next_background_color=\"#000000\" global_module=\"74\"][et_pb_row global_parent=\"74\" custom_padding=\"0px||0px|||\" custom_margin=\"|auto|-66px|auto||\" _builder_version=\"3.26.3\"][et_pb_column type=\"4_4\" global_parent=\"74\" _builder_version=\"3.26.3\"][et_pb_image global_parent=\"74\" src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/header.jpg\" url=\"http://itcamefrombeyondpulp.com\" _builder_version=\"3.26.3\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.26.3\" width=\"1080px\" width_tablet=\"100%\" width_last_edited=\"on|phone\" module_alignment=\"center\" inner_module_alignment=\"center\" custom_padding=\"0px||0px||false|false\" z_index_tablet=\"500\" hover_enabled=\"0\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" prev_background_color=\"#000000\" next_background_color=\"#e02b20\" global_module=\"175\"][et_pb_fullwidth_menu global_parent=\"175\" menu_id=\"2\" submenu_direction=\"downwards\" fullwidth_menu=\"off\" dropdown_menu_text_color=\"#ffffff\" _builder_version=\"3.26.3\" menu_font=\"|800||on|||||\" menu_text_color=\"#ffffff\" menu_font_size=\"22px\" menu_letter_spacing=\"5px\" background_color=\"#e02b20\" border_width_bottom=\"5px\" text_orientation=\"center\" background_layout=\"dark\" custom_margin=\"0px||||false|false\" custom_padding=\"1px||0px||false|false\" z_index_tablet=\"500\" menu_text_shadow_horizontal_length_tablet=\"0px\" menu_text_shadow_vertical_length_tablet=\"0px\" menu_text_shadow_blur_strength_tablet=\"1px\" border_width_bottom_tablet=\"5px\" border_width_bottom_phone=\"5px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" /][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" background_color=\"#e02b20\" width=\"1080px\" module_alignment=\"center\" custom_padding=\"10px||0px|||\" hover_enabled=\"0\" width_last_edited=\"on|tablet\" width_phone=\"100%\" width_tablet=\"100%\" prev_background_color=\"#ffffff\"][et_pb_row custom_padding=\"10px|10px||\" _builder_version=\"3.26.3\" background_color=\"#ffffff\" border_width_bottom=\"5px\" border_color_bottom=\"#e02b20\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.26.3\" z_index_tablet=\"500\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\"]\n\n<h1 style=\"text-align: center;\">Movies &amp; TV Reviews</h1>\n\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.26.3\" background_color=\"#ffffff\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" column_structure=\"1_3,1_3,1_3\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.26.3\" z_index_tablet=\"500\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\"]\n\n<h3 style=\"text-align: center;\">Sci-Fi</h3>\n<p style=\"text-align: center;\"><strong><a href=\"http://itcamefrombeyondpulp.com/movies/children-of-men-2006/\">Children of Men (2006)</a><br /></strong><strong><a href=\"http://itcamefrombeyondpulp.com/movies/cloverfield-2008/\">Cloverfield (2008)</a><br /><a href=\"http://itcamefrombeyondpulp.com/movies/the-dark-knight-2008/\">The Dark Knight (2008)</a><br /><a href=\"http://itcamefrombeyondpulp.com/movies/the-fountain-2006/\">The Fountain (2006)</a><br /><a href=\"http://itcamefrombeyondpulp.com/movies/hardware-1990/\">Hardware (1990)</a><br /><a href=\"http://itcamefrombeyondpulp.com/movies/harry-potter-and-the-chamber-of-secrets-2002/\">Harry Potter and the Chamber of Secrets (2002)</a><br /><a href=\"http://itcamefrombeyondpulp.com/movies/harry-potter-and-the-sorcerers-stone-2001/\">Harry Potter and the Sorcerer\'s Stone (2001)</a><br /><a href=\"http://itcamefrombeyondpulp.com/movies/maniac-1934/\">Maniac (1934)</a><br /><a href=\"http://itcamefrombeyondpulp.com/movies/the-phantom-planet-1961/\">The Phantom Planet (1961)</a><br /><a href=\"http://itcamefrombeyondpulp.com/movies/predator-1987/\">Predator (1987)</a><br /></strong><a href=\"http://itcamefrombeyondpulp.com/movies/serenity-2005/\"><strong>Serenity (2005)</strong></a><br /><a href=\"http://itcamefrombeyondpulp.com/movies/x-men-the-last-stand-2006/\"><strong>X-Men: The Last Stand (2006)</strong></a></p>\n\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.26.3\" z_index_tablet=\"500\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" text_text_shadow_horizontal_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_vertical_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_blur_strength=\"text_text_shadow_style,%91object Object%93\" link_text_shadow_horizontal_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_vertical_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_blur_strength=\"link_text_shadow_style,%91object Object%93\" ul_text_shadow_horizontal_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_vertical_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_blur_strength=\"ul_text_shadow_style,%91object Object%93\" ol_text_shadow_horizontal_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_vertical_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_blur_strength=\"ol_text_shadow_style,%91object Object%93\" quote_text_shadow_horizontal_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_vertical_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_blur_strength=\"quote_text_shadow_style,%91object Object%93\" header_text_shadow_horizontal_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_vertical_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_blur_strength=\"header_text_shadow_style,%91object Object%93\" header_2_text_shadow_horizontal_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_vertical_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_blur_strength=\"header_2_text_shadow_style,%91object Object%93\" header_3_text_shadow_horizontal_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_vertical_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_blur_strength=\"header_3_text_shadow_style,%91object Object%93\" header_4_text_shadow_horizontal_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_vertical_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_blur_strength=\"header_4_text_shadow_style,%91object Object%93\" header_5_text_shadow_horizontal_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_vertical_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_blur_strength=\"header_5_text_shadow_style,%91object Object%93\" header_6_text_shadow_horizontal_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_vertical_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_blur_strength=\"header_6_text_shadow_style,%91object Object%93\"]\n\n<h3 style=\"text-align: center;\">Horror</h3>\n<p style=\"text-align: center;\"><a href=\"http://itcamefrombeyondpulp.com/movies/bloodrayne-2-deliverance-2007/\"><strong>BloodRayne 2: Deliverance (2007)</strong></a><br /><a href=\"http://itcamefrombeyondpulp.com/movies/the-cat-and-the-canary-1927/\"><strong>The Cat and the Canary (1927)</strong></a><br /><a href=\"http://itcamefrombeyondpulp.com/movies/the-children-1980/\"><strong>The Children (1980)</strong></a><br /><strong><a href=\"http://itcamefrombeyondpulp.com/movies/colin-2008/\">Colin (2008)</a></strong><br /><strong><a href=\"http://itcamefrombeyondpulp.com/movies/dark-water-2005/\">Dark Water (2005)</a></strong><br /><strong><a href=\"http://itcamefrombeyondpulp.com/movies/the-devils-daughter-1973/\">The Devil\'s Daughter (1973)</a><br /><a href=\"http://itcamefrombeyondpulp.com/movies/disturbia-2007/\">Disturbia (2007)</a></strong><br /><a href=\"http://itcamefrombeyondpulp.com/movies/masters-of-horror-the-black-cat-2007/\"><strong>Masters of Horror: The Black Cat (2007)</strong></a><br /><a href=\"http://itcamefrombeyondpulp.com/movies/masters-of-horror-dreams-in-the-witch-house-2005/\"><strong>Masters of Horror: Dreams in the Witch-House (2005)</strong></a><br /><a href=\"http://itcamefrombeyondpulp.com/movies/masters-of-horror-homecoming-2005/\"><strong>Masters of Horror: Homecoming (2005)</strong></a></p>\n\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.26.3\" z_index_tablet=\"500\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" text_text_shadow_horizontal_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_vertical_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_blur_strength=\"text_text_shadow_style,%91object Object%93\" link_text_shadow_horizontal_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_vertical_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_blur_strength=\"link_text_shadow_style,%91object Object%93\" ul_text_shadow_horizontal_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_vertical_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_blur_strength=\"ul_text_shadow_style,%91object Object%93\" ol_text_shadow_horizontal_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_vertical_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_blur_strength=\"ol_text_shadow_style,%91object Object%93\" quote_text_shadow_horizontal_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_vertical_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_blur_strength=\"quote_text_shadow_style,%91object Object%93\" header_text_shadow_horizontal_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_vertical_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_blur_strength=\"header_text_shadow_style,%91object Object%93\" header_2_text_shadow_horizontal_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_vertical_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_blur_strength=\"header_2_text_shadow_style,%91object Object%93\" header_3_text_shadow_horizontal_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_vertical_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_blur_strength=\"header_3_text_shadow_style,%91object Object%93\" header_4_text_shadow_horizontal_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_vertical_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_blur_strength=\"header_4_text_shadow_style,%91object Object%93\" header_5_text_shadow_horizontal_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_vertical_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_blur_strength=\"header_5_text_shadow_style,%91object Object%93\" header_6_text_shadow_horizontal_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_vertical_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_blur_strength=\"header_6_text_shadow_style,%91object Object%93\"]\n\n<h3 style=\"text-align: center;\">Whatnot</h3>\n<p style=\"text-align: center;\"><strong><em>Basil Rathbone/Nigel Bruce Sherlock Holmes Films</em></strong></p>\n<p style=\"text-align: center;\"><a href=\"http://itcamefrombeyondpulp.com/movies/the-adventures-of-sherlock-holmes-1939/\"><strong>The Adventures of Sherlock Holmes (1939)</strong></a><br /><a href=\"http://itcamefrombeyondpulp.com/movies/the-hound-of-the-baskervilles-1939/\"><strong>The Hound of the Baskervilles (1939)</strong></a><br /><a href=\"http://itcamefrombeyondpulp.com/movies/sherlock-holmes-and-the-voice-of-terror-1942/\"><strong>Sherlock Holmes and the Voice of Terror (1942)</strong></a><br /><strong><a href=\"http://itcamefrombeyondpulp.com/movies/sherlock-holmes-and-the-secret-weapon-1943/\">Sherlock Holmes and the Secret Weapon (1943)</a></strong><br /><strong><a href=\"http://itcamefrombeyondpulp.com/movies/sherlock-holmes-in-washington-1943/\">Sherlock Holmes in Washington (1943)</a><br /><a href=\"http://itcamefrombeyondpulp.com/movies/sherlock-holmes-faces-death-1943/\">Sherlock Holmes Faces Death (1943)</a><br /><a href=\"http://itcamefrombeyondpulp.com/movies/the-scarlet-claw-1944/\">The Scarlet Claw (1944)</a></strong><br /><strong><a href=\"http://itcamefrombeyondpulp.com/movies/the-pearl-of-death-1944/\">The Pearl of Death (1944)</a><br /><a href=\"http://itcamefrombeyondpulp.com/movies/the-spider-woman-1944/\">The Spider Woman (1944)</a></strong><br /><strong><a href=\"http://itcamefrombeyondpulp.com/movies/the-house-of-fear-1945/\">The House of Fear (1945)</a><br /><a href=\"http://itcamefrombeyondpulp.com/movies/the-woman-in-green-1945/\">The Woman in Green (1945)</a></strong><br /><strong><a href=\"http://itcamefrombeyondpulp.com/movies/pursuit-to-algiers-1945/\">Pursuit to Algiers (1945)</a><br /><a href=\"http://itcamefrombeyondpulp.com/movies/terror-by-night-1946/\">Terror by Night (1946)</a></strong><br /><strong><a href=\"http://itcamefrombeyondpulp.com/movies/dressed-to-kill-1946/\">Dressed to Kill (1946)</a></strong></p>\n\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Movies','','inherit','closed','closed','','45-autosave-v1','','','2019-08-03 21:54:16','2019-08-03 21:54:16','',45,'http://itcamefrombeyondpulp.com/uncategorized/45-autosave-v1/',0,'revision','',0),(352,1,'2019-07-30 12:14:44','2019-07-30 12:14:44','[et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" custom_padding=\"0px|||||\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" custom_margin=\"||11px|||\" next_background_color=\"#000000\" global_module=\"74\"][et_pb_row global_parent=\"74\" custom_padding=\"0px||0px|||\" custom_margin=\"|auto|-66px|auto||\" _builder_version=\"3.26.3\"][et_pb_column type=\"4_4\" global_parent=\"74\" _builder_version=\"3.26.3\"][et_pb_image global_parent=\"74\" src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/header.jpg\" url=\"http://itcamefrombeyondpulp.com\" _builder_version=\"3.26.3\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.26.3\" width=\"1080px\" width_tablet=\"100%\" width_last_edited=\"on|phone\" module_alignment=\"center\" inner_module_alignment=\"center\" custom_padding=\"0px||0px||false|false\" z_index_tablet=\"500\" hover_enabled=\"0\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" prev_background_color=\"#000000\" next_background_color=\"#e02b20\" global_module=\"175\"][et_pb_fullwidth_menu global_parent=\"175\" menu_id=\"2\" submenu_direction=\"downwards\" fullwidth_menu=\"off\" dropdown_menu_text_color=\"#ffffff\" _builder_version=\"3.26.3\" menu_font=\"|800||on|||||\" menu_text_color=\"#ffffff\" menu_font_size=\"22px\" menu_letter_spacing=\"5px\" background_color=\"#e02b20\" border_width_bottom=\"5px\" text_orientation=\"center\" background_layout=\"dark\" custom_margin=\"0px||||false|false\" custom_padding=\"1px||0px||false|false\" z_index_tablet=\"500\" menu_text_shadow_horizontal_length_tablet=\"0px\" menu_text_shadow_vertical_length_tablet=\"0px\" menu_text_shadow_blur_strength_tablet=\"1px\" border_width_bottom_tablet=\"5px\" border_width_bottom_phone=\"5px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" /][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" background_color=\"#e02b20\" width=\"1080px\" module_alignment=\"center\" custom_padding=\"10px||0px|||\" prev_background_color=\"#ffffff\"][et_pb_row _builder_version=\"3.26.3\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" background_color=\"#ffffff\" custom_padding=\"10px|10px||10px|false|false\" border_width_bottom=\"5px\" border_color_bottom=\"#e02b20\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image _builder_version=\"3.26.3\" src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/claw.jpg\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\" /][et_pb_text _builder_version=\"3.26.3\" z_index_tablet=\"500\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" text_text_shadow_horizontal_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_vertical_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_blur_strength=\"text_text_shadow_style,%91object Object%93\" link_text_shadow_horizontal_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_vertical_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_blur_strength=\"link_text_shadow_style,%91object Object%93\" ul_text_shadow_horizontal_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_vertical_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_blur_strength=\"ul_text_shadow_style,%91object Object%93\" ol_text_shadow_horizontal_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_vertical_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_blur_strength=\"ol_text_shadow_style,%91object Object%93\" quote_text_shadow_horizontal_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_vertical_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_blur_strength=\"quote_text_shadow_style,%91object Object%93\" header_text_shadow_horizontal_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_vertical_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_blur_strength=\"header_text_shadow_style,%91object Object%93\" header_2_text_shadow_horizontal_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_vertical_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_blur_strength=\"header_2_text_shadow_style,%91object Object%93\" header_3_text_shadow_horizontal_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_vertical_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_blur_strength=\"header_3_text_shadow_style,%91object Object%93\" header_4_text_shadow_horizontal_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_vertical_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_blur_strength=\"header_4_text_shadow_style,%91object Object%93\" header_5_text_shadow_horizontal_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_vertical_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_blur_strength=\"header_5_text_shadow_style,%91object Object%93\" header_6_text_shadow_horizontal_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_vertical_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_blur_strength=\"header_6_text_shadow_style,%91object Object%93\"]\r\n\r\n<h3 style=\"text-align: center;\"><strong><em>The Scarlet Claw</em> (Roy William Neill, 1944, 74 min.)</strong></h3><p>Although this is one of the highest rated entries in the Basil Rathbone/Nigel Bruce series of Sherlock Holmes films—it\'s rated nearly a point higher than the superior <em>Sherlock Holmes in Washington</em> and <em>The Woman in Green</em> on the IMDB—it\'s one of the worst, barely escaping the bottom of the barrel by virtue of not being <em>Pursuit to Algiers</em>. If I describe it as basically being \"Scooby-Doo Meets Sherlock Holmes,\" I wouldn\'t be far from the film\'s basic problem: it\'s a series of red herrings where half of the characters turn out to be the bad guy in disguise. All that\'s missing is for the villain to shout \"I would have gotten away with it if it hadn\'t been for you and that fat doctor of yours!\" The plot recalls the superior <em>The Hound of the Baskervilles</em>, but also a template for a Scooby-Doo episode: a mysterious, glowing creature has been slashing the throats of sheep on the moors, but its latest victim is a woman; Holmes suspects that the killer is using a local legend as a cover for murder. I can\'t blame this film for resembling something that postdated it by over 20 years, but I can blame it for being too silly by half, for relying too much on poor Dr. Watson for comic relief, and for lacking any scenes or shots that made me take notice.</p><p><b>Baker Street Regulars:</b><br />Paul Cavanaugh (1st of 3 appearances, as Lord William Penrose)<br />Gerald Hamer (3rd of 5, as Alistair Ramson)<br />Arthur Hohl (2nd of 3, as Emile Journet)<br />Olaf Hytten (3rd of 6, as day desk clerk)<br />Eric Wilton (3rd of 3, as evening desk clerk)<br />Ian Wolfe (2nd of 4, as Drake)</p>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','The Scarlet Claw (1944)','','publish','closed','closed','','the-scarlet-claw-1944','','','2019-07-30 12:14:44','2019-07-30 12:14:44','',0,'http://itcamefrombeyondpulp.com/?p=352',0,'post','',0),(353,1,'2019-07-30 12:14:13','2019-07-30 12:14:13','','claw','','inherit','closed','closed','','claw','','','2019-07-30 12:14:13','2019-07-30 12:14:13','',352,'http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/claw.jpg',0,'attachment','image/jpeg',0),(354,1,'2019-07-30 12:14:44','2019-07-30 12:14:44','[et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" custom_padding=\"0px|||||\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" custom_margin=\"||11px|||\" next_background_color=\"#000000\" global_module=\"74\"][et_pb_row global_parent=\"74\" custom_padding=\"0px||0px|||\" custom_margin=\"|auto|-66px|auto||\" _builder_version=\"3.26.3\"][et_pb_column type=\"4_4\" global_parent=\"74\" _builder_version=\"3.26.3\"][et_pb_image global_parent=\"74\" src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/header.jpg\" url=\"http://itcamefrombeyondpulp.com\" _builder_version=\"3.26.3\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.26.3\" width=\"1080px\" width_tablet=\"100%\" width_last_edited=\"on|phone\" module_alignment=\"center\" inner_module_alignment=\"center\" custom_padding=\"0px||0px||false|false\" z_index_tablet=\"500\" hover_enabled=\"0\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" prev_background_color=\"#000000\" next_background_color=\"#e02b20\" global_module=\"175\"][et_pb_fullwidth_menu global_parent=\"175\" menu_id=\"2\" submenu_direction=\"downwards\" fullwidth_menu=\"off\" dropdown_menu_text_color=\"#ffffff\" _builder_version=\"3.26.3\" menu_font=\"|800||on|||||\" menu_text_color=\"#ffffff\" menu_font_size=\"22px\" menu_letter_spacing=\"5px\" background_color=\"#e02b20\" border_width_bottom=\"5px\" text_orientation=\"center\" background_layout=\"dark\" custom_margin=\"0px||||false|false\" custom_padding=\"1px||0px||false|false\" z_index_tablet=\"500\" menu_text_shadow_horizontal_length_tablet=\"0px\" menu_text_shadow_vertical_length_tablet=\"0px\" menu_text_shadow_blur_strength_tablet=\"1px\" border_width_bottom_tablet=\"5px\" border_width_bottom_phone=\"5px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" /][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" background_color=\"#e02b20\" width=\"1080px\" module_alignment=\"center\" custom_padding=\"10px||0px|||\" prev_background_color=\"#ffffff\"][et_pb_row _builder_version=\"3.26.3\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" background_color=\"#ffffff\" custom_padding=\"10px|10px||10px|false|false\" border_width_bottom=\"5px\" border_color_bottom=\"#e02b20\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image _builder_version=\"3.26.3\" src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/claw.jpg\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\" /][et_pb_text _builder_version=\"3.26.3\" z_index_tablet=\"500\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" text_text_shadow_horizontal_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_vertical_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_blur_strength=\"text_text_shadow_style,%91object Object%93\" link_text_shadow_horizontal_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_vertical_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_blur_strength=\"link_text_shadow_style,%91object Object%93\" ul_text_shadow_horizontal_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_vertical_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_blur_strength=\"ul_text_shadow_style,%91object Object%93\" ol_text_shadow_horizontal_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_vertical_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_blur_strength=\"ol_text_shadow_style,%91object Object%93\" quote_text_shadow_horizontal_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_vertical_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_blur_strength=\"quote_text_shadow_style,%91object Object%93\" header_text_shadow_horizontal_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_vertical_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_blur_strength=\"header_text_shadow_style,%91object Object%93\" header_2_text_shadow_horizontal_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_vertical_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_blur_strength=\"header_2_text_shadow_style,%91object Object%93\" header_3_text_shadow_horizontal_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_vertical_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_blur_strength=\"header_3_text_shadow_style,%91object Object%93\" header_4_text_shadow_horizontal_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_vertical_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_blur_strength=\"header_4_text_shadow_style,%91object Object%93\" header_5_text_shadow_horizontal_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_vertical_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_blur_strength=\"header_5_text_shadow_style,%91object Object%93\" header_6_text_shadow_horizontal_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_vertical_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_blur_strength=\"header_6_text_shadow_style,%91object Object%93\"]\r\n\r\n<h3 style=\"text-align: center;\"><strong><em>The Scarlet Claw</em> (Roy William Neill, 1944, 74 min.)</strong></h3><p>Although this is one of the highest rated entries in the Basil Rathbone/Nigel Bruce series of Sherlock Holmes films—it\'s rated nearly a point higher than the superior <em>Sherlock Holmes in Washington</em> and <em>The Woman in Green</em> on the IMDB—it\'s one of the worst, barely escaping the bottom of the barrel by virtue of not being <em>Pursuit to Algiers</em>. If I describe it as basically being \"Scooby-Doo Meets Sherlock Holmes,\" I wouldn\'t be far from the film\'s basic problem: it\'s a series of red herrings where half of the characters turn out to be the bad guy in disguise. All that\'s missing is for the villain to shout \"I would have gotten away with it if it hadn\'t been for you and that fat doctor of yours!\" The plot recalls the superior <em>The Hound of the Baskervilles</em>, but also a template for a Scooby-Doo episode: a mysterious, glowing creature has been slashing the throats of sheep on the moors, but its latest victim is a woman; Holmes suspects that the killer is using a local legend as a cover for murder. I can\'t blame this film for resembling something that postdated it by over 20 years, but I can blame it for being too silly by half, for relying too much on poor Dr. Watson for comic relief, and for lacking any scenes or shots that made me take notice.</p><p><b>Baker Street Regulars:</b><br />Paul Cavanaugh (1st of 3 appearances, as Lord William Penrose)<br />Gerald Hamer (3rd of 5, as Alistair Ramson)<br />Arthur Hohl (2nd of 3, as Emile Journet)<br />Olaf Hytten (3rd of 6, as day desk clerk)<br />Eric Wilton (3rd of 3, as evening desk clerk)<br />Ian Wolfe (2nd of 4, as Drake)</p>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','The Scarlet Claw (1944)','','inherit','closed','closed','','352-revision-v1','','','2019-07-30 12:14:44','2019-07-30 12:14:44','',352,'http://itcamefrombeyondpulp.com/uncategorized/352-revision-v1/',0,'revision','',0),(355,1,'2019-07-30 12:16:36','2019-07-30 12:16:36','[et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" custom_padding=\"0px|||||\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" custom_margin=\"||11px|||\" next_background_color=\"#000000\" global_module=\"74\"][et_pb_row global_parent=\"74\" custom_padding=\"0px||0px|||\" custom_margin=\"|auto|-66px|auto||\" _builder_version=\"3.26.3\"][et_pb_column type=\"4_4\" global_parent=\"74\" _builder_version=\"3.26.3\"][et_pb_image global_parent=\"74\" src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/header.jpg\" url=\"http://itcamefrombeyondpulp.com\" _builder_version=\"3.26.3\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.26.3\" width=\"1080px\" width_tablet=\"100%\" width_last_edited=\"on|phone\" module_alignment=\"center\" inner_module_alignment=\"center\" custom_padding=\"0px||0px||false|false\" z_index_tablet=\"500\" hover_enabled=\"0\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" prev_background_color=\"#000000\" next_background_color=\"#e02b20\" global_module=\"175\"][et_pb_fullwidth_menu global_parent=\"175\" menu_id=\"2\" submenu_direction=\"downwards\" fullwidth_menu=\"off\" dropdown_menu_text_color=\"#ffffff\" _builder_version=\"3.26.3\" menu_font=\"|800||on|||||\" menu_text_color=\"#ffffff\" menu_font_size=\"22px\" menu_letter_spacing=\"5px\" background_color=\"#e02b20\" border_width_bottom=\"5px\" text_orientation=\"center\" background_layout=\"dark\" custom_margin=\"0px||||false|false\" custom_padding=\"1px||0px||false|false\" z_index_tablet=\"500\" menu_text_shadow_horizontal_length_tablet=\"0px\" menu_text_shadow_vertical_length_tablet=\"0px\" menu_text_shadow_blur_strength_tablet=\"1px\" border_width_bottom_tablet=\"5px\" border_width_bottom_phone=\"5px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" /][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" background_color=\"#e02b20\" width=\"1080px\" module_alignment=\"center\" custom_padding=\"10px||0px|||\" prev_background_color=\"#ffffff\"][et_pb_row _builder_version=\"3.26.3\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" background_color=\"#ffffff\" custom_padding=\"10px|10px||10px|false|false\" border_width_bottom=\"5px\" border_color_bottom=\"#e02b20\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image _builder_version=\"3.26.3\" src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/claw.jpg\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\" /][et_pb_text _builder_version=\"3.26.3\" z_index_tablet=\"500\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" text_text_shadow_horizontal_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_vertical_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_blur_strength=\"text_text_shadow_style,%91object Object%93\" link_text_shadow_horizontal_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_vertical_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_blur_strength=\"link_text_shadow_style,%91object Object%93\" ul_text_shadow_horizontal_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_vertical_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_blur_strength=\"ul_text_shadow_style,%91object Object%93\" ol_text_shadow_horizontal_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_vertical_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_blur_strength=\"ol_text_shadow_style,%91object Object%93\" quote_text_shadow_horizontal_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_vertical_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_blur_strength=\"quote_text_shadow_style,%91object Object%93\" header_text_shadow_horizontal_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_vertical_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_blur_strength=\"header_text_shadow_style,%91object Object%93\" header_2_text_shadow_horizontal_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_vertical_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_blur_strength=\"header_2_text_shadow_style,%91object Object%93\" header_3_text_shadow_horizontal_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_vertical_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_blur_strength=\"header_3_text_shadow_style,%91object Object%93\" header_4_text_shadow_horizontal_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_vertical_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_blur_strength=\"header_4_text_shadow_style,%91object Object%93\" header_5_text_shadow_horizontal_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_vertical_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_blur_strength=\"header_5_text_shadow_style,%91object Object%93\" header_6_text_shadow_horizontal_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_vertical_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_blur_strength=\"header_6_text_shadow_style,%91object Object%93\"]\n\n<h3 style=\"text-align: center;\"><strong><em>The Scarlet Claw</em> (Roy William Neill, 1944, 74 min.)</strong></h3>\n<p>Although this is one of the highest rated entries in the Basil Rathbone/Nigel Bruce series of Sherlock Holmes films—it\'s rated nearly a point higher than the superior <em>Sherlock Holmes in Washington</em> and <em>The Woman in Green</em> on the IMDB—it\'s one of the worst, barely escaping the bottom of the barrel by virtue of not being <em>Pursuit to Algiers</em>. If I describe it as basically being \"Scooby-Doo Meets Sherlock Holmes,\" I wouldn\'t be far from the film\'s basic problem: it\'s a series of red herrings where half of the characters turn out to be the bad guy in disguise. All that\'s missing is for the villain to shout \"I would have gotten away with it if it hadn\'t been for you and that fat doctor of yours!\" The plot recalls the superior <em>The Hound of the Baskervilles</em>, but also a template for a Scooby-Doo episode: a mysterious, glowing creature has been slashing the throats of sheep on the moors, but its latest victim is a woman; Holmes suspects that the killer is using a local legend as a cover for murder. I can\'t blame this film for resembling something that postdated it by over 20 years, but I can blame it for being too silly by half, for relying too much on poor Dr. Watson for comic relief, and for lacking any scenes or shots that made me take notice.</p>\n<p><b>Baker Street Regulars:</b><br />Paul Cavanaugh (1st of 3 appearances, as Lord William Penrose)<br />Gerald Hamer (3rd of 5, as Alistair Ramson)<br />Arthur Hohl (2nd of 3, as Emile Journet)<br />Olaf Hytten (3rd of 6, as day desk clerk)<br />Eric Wilton (3rd of 3, as evening desk clerk)<br />Ian Wolfe (2nd of 4, as Drake)</p>\n\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','The Scarlet Claw (1944)','','inherit','closed','closed','','352-autosave-v1','','','2019-07-30 12:16:36','2019-07-30 12:16:36','',352,'http://itcamefrombeyondpulp.com/uncategorized/352-autosave-v1/',0,'revision','',0),(356,1,'2019-07-30 12:20:26','2019-07-30 12:20:26','[et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" custom_padding=\"0px|||||\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" custom_margin=\"||11px|||\" next_background_color=\"#000000\" global_module=\"74\"][et_pb_row global_parent=\"74\" custom_padding=\"0px||0px|||\" custom_margin=\"|auto|-66px|auto||\" _builder_version=\"3.26.3\"][et_pb_column type=\"4_4\" global_parent=\"74\" _builder_version=\"3.26.3\"][et_pb_image global_parent=\"74\" src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/header.jpg\" url=\"http://itcamefrombeyondpulp.com\" _builder_version=\"3.26.3\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.26.3\" width=\"1080px\" width_tablet=\"100%\" width_last_edited=\"on|phone\" module_alignment=\"center\" inner_module_alignment=\"center\" custom_padding=\"0px||0px||false|false\" z_index_tablet=\"500\" hover_enabled=\"0\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" prev_background_color=\"#000000\" next_background_color=\"#e02b20\" global_module=\"175\"][et_pb_fullwidth_menu global_parent=\"175\" menu_id=\"2\" submenu_direction=\"downwards\" fullwidth_menu=\"off\" dropdown_menu_text_color=\"#ffffff\" _builder_version=\"3.26.3\" menu_font=\"|800||on|||||\" menu_text_color=\"#ffffff\" menu_font_size=\"22px\" menu_letter_spacing=\"5px\" background_color=\"#e02b20\" border_width_bottom=\"5px\" text_orientation=\"center\" background_layout=\"dark\" custom_margin=\"0px||||false|false\" custom_padding=\"1px||0px||false|false\" z_index_tablet=\"500\" menu_text_shadow_horizontal_length_tablet=\"0px\" menu_text_shadow_vertical_length_tablet=\"0px\" menu_text_shadow_blur_strength_tablet=\"1px\" border_width_bottom_tablet=\"5px\" border_width_bottom_phone=\"5px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" /][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" background_color=\"#e02b20\" width=\"1080px\" module_alignment=\"center\" custom_padding=\"10px||0px|||\" prev_background_color=\"#ffffff\"][et_pb_row _builder_version=\"3.26.3\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" background_color=\"#ffffff\" custom_padding=\"10px|10px||10px|false|false\" border_width_bottom=\"5px\" border_color_bottom=\"#e02b20\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image _builder_version=\"3.26.3\" src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/secret-weapon.jpg\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\" /][et_pb_text _builder_version=\"3.26.3\" z_index_tablet=\"500\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" text_text_shadow_horizontal_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_vertical_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_blur_strength=\"text_text_shadow_style,%91object Object%93\" link_text_shadow_horizontal_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_vertical_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_blur_strength=\"link_text_shadow_style,%91object Object%93\" ul_text_shadow_horizontal_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_vertical_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_blur_strength=\"ul_text_shadow_style,%91object Object%93\" ol_text_shadow_horizontal_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_vertical_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_blur_strength=\"ol_text_shadow_style,%91object Object%93\" quote_text_shadow_horizontal_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_vertical_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_blur_strength=\"quote_text_shadow_style,%91object Object%93\" header_text_shadow_horizontal_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_vertical_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_blur_strength=\"header_text_shadow_style,%91object Object%93\" header_2_text_shadow_horizontal_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_vertical_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_blur_strength=\"header_2_text_shadow_style,%91object Object%93\" header_3_text_shadow_horizontal_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_vertical_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_blur_strength=\"header_3_text_shadow_style,%91object Object%93\" header_4_text_shadow_horizontal_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_vertical_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_blur_strength=\"header_4_text_shadow_style,%91object Object%93\" header_5_text_shadow_horizontal_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_vertical_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_blur_strength=\"header_5_text_shadow_style,%91object Object%93\" header_6_text_shadow_horizontal_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_vertical_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_blur_strength=\"header_6_text_shadow_style,%91object Object%93\"]\r\n\r\n<h3 style=\"text-align: center;\"><strong><em>Sherlock Holmes and the Secret Weapon</em> (Roy William Neill, 1943, 68 min.)</strong></h3><p>It took Universal a while to get a handle on their modernized Sherlock Holmes movies. After Fox\'s two films, <em>The Hound of the Baskervilles</em> and <em>The Adventures of Sherlock Holmes</em>, Universal took over, making the undercooked <em>Sherlock Holmes and the Voice of Terror</em>, which squandered a great opening sequence. This was their second outing, and it still doesn\'t show much of the poise of the Fox entries or of the later Universal films. It wasn\'t until the next film, <em>Sherlock Holmes in Washington</em>, that all the elements come together.</p><p>In this film, which is more boring than bad, the Nazis are at it again. This time they want a top-secret bomb sight developed in Switzerland by Dr. Tobel (William Post Jr.). They\'re intending to kidnap him with the help of an elderly bookseller who has Tobel\'s trust. However, the Nazis don\'t realize that the bookseller is in fact Sherlock Holmes (Basil Rathbone) in disguise (one of the better makeup jobs so far in the series). Holmes hatches a daring and successful plan to fool the Nazis and get Tobel out of the country. Back in England, Holmes leaves Tobel in the care of the not-always-dependable Watson (Nigel Bruce), whose vigil is interrupted by a deep sleep. Taking advantage of this, Tobel sneaks out to visit his girlfriend Charlotte (Kaaren Verne) and hatch a plan to make sure the Nazis can\'t get their hands on the sight even if they capture him. He disassembles it into four parts, leaves one part with each of four Swiss scientists in London, and uses an elaborate code—stick-figure dancing men, taken from the film\'s source, Arthur Conan Doyle\'s story \"The Dancing Men\"—to record who has which parts. He\'s pretty sure the Nazis will get to him—and he\'s ensuring it by running around like a fool—so he wants Holmes to know where the parts are in case of trouble. Of course there\'s trouble, and it comes in the form of Holmes\'s arch-nemesis, Professor Moriarty (Lionel Atwill). Moriarty wants to sell either the invention or the inventor to the Nazis, and he quickly gets his hands on Tobel.</p><p>The plot hinges on Holmes and Moriarty racing to find the secret of the code. Both men quickly figure out the identities of the first three scientists, because Tobel\'s code isn\'t that tough. But the identity of the fourth man is hidden by an extra layer of coding. One flaw in the film\'s attempt to modernize Holmes is the way in which he discovers the secret message, even after Moriarty has stolen the paper on which Tobel wrote it. Tobel used a pad of paper and a pencil, and anyone—even The Dude in <em>The Big Lebowski</em>—knows that all you have to do is rub a pencil lightly over the next sheet down, and the message will appear in relief. Well, that\'s not enough for Universal\'s modern Holmes. He uses an elaborate system, immersing the paper in fluorescent salts, drying it, and photographing it in ultraviolet light to reveal the hidden message. I suppose he was never a boy scout.</p><p>Another flaw of the film is how Holmes interacts with Moriarty. Lionel Atwill, who was no stranger to being a bad guy, does a good job as Moriarty, the right combination of charm and thuggery; he makes a much better Moriarty than, say, George Zucco did in <em>The Adventures of Sherlock Holmes</em>. But Holmes doesn\'t seem to take him very seriously. The most boring section of the film is the leadup to the first meeting between the two. Holmes, in disguise as an escaped criminal, goes from gin joint to speakeasy to thieves\' den, asking where to find the big guy. This sequence goes on far too long; Roy William Neill, who directed the lion\'s share of the films in this series, has some visual signatures that crop up again and again, and his \"many shots of walking feet\" trick gets stale unless it\'s used in very small bits. The fact that Holmes saunters in unarmed, aside from a small knife, shows that he puts a little too much faith in Moriarty\'s sense of theater—the criminal mastermind would never simply shoot his enemy; instead, he would concoct an elaborate death scene, something that saves Holmes in their second, even sillier meeting in this film. The one thing of interest in their second meeting is Moriarty\'s comment, \"The needle to the last, eh Holmes?\" This is a reference to Holmes\'s cocaine addiction, mentioned a few times in Doyle\'s stories but mostly dropped from the films.</p><p>As I said, it\'s more boring than bad. The cinematography is good, as it usually is; Rathbone and Bruce are stellar as always; they finally found a suitable Moriarty in Atwill. But the pacing is slack, the big mystery not mysterious enough, and the showdowns between Holmes and Moriarty a bit too silly for my taste. Still, it\'s an improvement over the first Universal outing, and the series picked up after this.</p><p><b>Baker Street Regulars</b> (actors who appeared in more than two films in the series as different characters):</p><p>John Burton, 1st of 4 appearances (as RAF officer) <br />Harry Cording, 3rd of 8 (Jack Brady) <br />Harold De Becker, 1st of 4 (Peg Leg) <br />Leslie Denison, 2nd of 6 (bobby) <br />Holmes Herbert, 3rd of 6 (Sir Reginald Bailey) <br />Leyland Hodgson, 3rd of 7 (RAF officer)</p>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Sherlock Holmes and the Secret Weapon (1943)','','publish','closed','closed','','sherlock-holmes-and-the-secret-weapon-1943','','','2019-07-30 12:20:26','2019-07-30 12:20:26','',0,'http://itcamefrombeyondpulp.com/?p=356',0,'post','',0),(357,1,'2019-07-30 12:20:04','2019-07-30 12:20:04','','secret weapon','','inherit','closed','closed','','secret-weapon','','','2019-07-30 12:20:04','2019-07-30 12:20:04','',356,'http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/secret-weapon.jpg',0,'attachment','image/jpeg',0),(358,1,'2019-07-30 12:20:26','2019-07-30 12:20:26','[et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" custom_padding=\"0px|||||\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" custom_margin=\"||11px|||\" next_background_color=\"#000000\" global_module=\"74\"][et_pb_row global_parent=\"74\" custom_padding=\"0px||0px|||\" custom_margin=\"|auto|-66px|auto||\" _builder_version=\"3.26.3\"][et_pb_column type=\"4_4\" global_parent=\"74\" _builder_version=\"3.26.3\"][et_pb_image global_parent=\"74\" src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/header.jpg\" url=\"http://itcamefrombeyondpulp.com\" _builder_version=\"3.26.3\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.26.3\" width=\"1080px\" width_tablet=\"100%\" width_last_edited=\"on|phone\" module_alignment=\"center\" inner_module_alignment=\"center\" custom_padding=\"0px||0px||false|false\" z_index_tablet=\"500\" hover_enabled=\"0\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" prev_background_color=\"#000000\" next_background_color=\"#e02b20\" global_module=\"175\"][et_pb_fullwidth_menu global_parent=\"175\" menu_id=\"2\" submenu_direction=\"downwards\" fullwidth_menu=\"off\" dropdown_menu_text_color=\"#ffffff\" _builder_version=\"3.26.3\" menu_font=\"|800||on|||||\" menu_text_color=\"#ffffff\" menu_font_size=\"22px\" menu_letter_spacing=\"5px\" background_color=\"#e02b20\" border_width_bottom=\"5px\" text_orientation=\"center\" background_layout=\"dark\" custom_margin=\"0px||||false|false\" custom_padding=\"1px||0px||false|false\" z_index_tablet=\"500\" menu_text_shadow_horizontal_length_tablet=\"0px\" menu_text_shadow_vertical_length_tablet=\"0px\" menu_text_shadow_blur_strength_tablet=\"1px\" border_width_bottom_tablet=\"5px\" border_width_bottom_phone=\"5px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" /][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" background_color=\"#e02b20\" width=\"1080px\" module_alignment=\"center\" custom_padding=\"10px||0px|||\" prev_background_color=\"#ffffff\"][et_pb_row _builder_version=\"3.26.3\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" background_color=\"#ffffff\" custom_padding=\"10px|10px||10px|false|false\" border_width_bottom=\"5px\" border_color_bottom=\"#e02b20\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image _builder_version=\"3.26.3\" src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/secret-weapon.jpg\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\" /][et_pb_text _builder_version=\"3.26.3\" z_index_tablet=\"500\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" text_text_shadow_horizontal_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_vertical_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_blur_strength=\"text_text_shadow_style,%91object Object%93\" link_text_shadow_horizontal_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_vertical_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_blur_strength=\"link_text_shadow_style,%91object Object%93\" ul_text_shadow_horizontal_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_vertical_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_blur_strength=\"ul_text_shadow_style,%91object Object%93\" ol_text_shadow_horizontal_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_vertical_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_blur_strength=\"ol_text_shadow_style,%91object Object%93\" quote_text_shadow_horizontal_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_vertical_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_blur_strength=\"quote_text_shadow_style,%91object Object%93\" header_text_shadow_horizontal_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_vertical_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_blur_strength=\"header_text_shadow_style,%91object Object%93\" header_2_text_shadow_horizontal_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_vertical_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_blur_strength=\"header_2_text_shadow_style,%91object Object%93\" header_3_text_shadow_horizontal_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_vertical_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_blur_strength=\"header_3_text_shadow_style,%91object Object%93\" header_4_text_shadow_horizontal_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_vertical_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_blur_strength=\"header_4_text_shadow_style,%91object Object%93\" header_5_text_shadow_horizontal_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_vertical_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_blur_strength=\"header_5_text_shadow_style,%91object Object%93\" header_6_text_shadow_horizontal_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_vertical_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_blur_strength=\"header_6_text_shadow_style,%91object Object%93\"]\r\n\r\n<h3 style=\"text-align: center;\"><strong><em>Sherlock Holmes and the Secret Weapon</em> (Roy William Neill, 1943, 68 min.)</strong></h3><p>It took Universal a while to get a handle on their modernized Sherlock Holmes movies. After Fox\'s two films, <em>The Hound of the Baskervilles</em> and <em>The Adventures of Sherlock Holmes</em>, Universal took over, making the undercooked <em>Sherlock Holmes and the Voice of Terror</em>, which squandered a great opening sequence. This was their second outing, and it still doesn\'t show much of the poise of the Fox entries or of the later Universal films. It wasn\'t until the next film, <em>Sherlock Holmes in Washington</em>, that all the elements come together.</p><p>In this film, which is more boring than bad, the Nazis are at it again. This time they want a top-secret bomb sight developed in Switzerland by Dr. Tobel (William Post Jr.). They\'re intending to kidnap him with the help of an elderly bookseller who has Tobel\'s trust. However, the Nazis don\'t realize that the bookseller is in fact Sherlock Holmes (Basil Rathbone) in disguise (one of the better makeup jobs so far in the series). Holmes hatches a daring and successful plan to fool the Nazis and get Tobel out of the country. Back in England, Holmes leaves Tobel in the care of the not-always-dependable Watson (Nigel Bruce), whose vigil is interrupted by a deep sleep. Taking advantage of this, Tobel sneaks out to visit his girlfriend Charlotte (Kaaren Verne) and hatch a plan to make sure the Nazis can\'t get their hands on the sight even if they capture him. He disassembles it into four parts, leaves one part with each of four Swiss scientists in London, and uses an elaborate code—stick-figure dancing men, taken from the film\'s source, Arthur Conan Doyle\'s story \"The Dancing Men\"—to record who has which parts. He\'s pretty sure the Nazis will get to him—and he\'s ensuring it by running around like a fool—so he wants Holmes to know where the parts are in case of trouble. Of course there\'s trouble, and it comes in the form of Holmes\'s arch-nemesis, Professor Moriarty (Lionel Atwill). Moriarty wants to sell either the invention or the inventor to the Nazis, and he quickly gets his hands on Tobel.</p><p>The plot hinges on Holmes and Moriarty racing to find the secret of the code. Both men quickly figure out the identities of the first three scientists, because Tobel\'s code isn\'t that tough. But the identity of the fourth man is hidden by an extra layer of coding. One flaw in the film\'s attempt to modernize Holmes is the way in which he discovers the secret message, even after Moriarty has stolen the paper on which Tobel wrote it. Tobel used a pad of paper and a pencil, and anyone—even The Dude in <em>The Big Lebowski</em>—knows that all you have to do is rub a pencil lightly over the next sheet down, and the message will appear in relief. Well, that\'s not enough for Universal\'s modern Holmes. He uses an elaborate system, immersing the paper in fluorescent salts, drying it, and photographing it in ultraviolet light to reveal the hidden message. I suppose he was never a boy scout.</p><p>Another flaw of the film is how Holmes interacts with Moriarty. Lionel Atwill, who was no stranger to being a bad guy, does a good job as Moriarty, the right combination of charm and thuggery; he makes a much better Moriarty than, say, George Zucco did in <em>The Adventures of Sherlock Holmes</em>. But Holmes doesn\'t seem to take him very seriously. The most boring section of the film is the leadup to the first meeting between the two. Holmes, in disguise as an escaped criminal, goes from gin joint to speakeasy to thieves\' den, asking where to find the big guy. This sequence goes on far too long; Roy William Neill, who directed the lion\'s share of the films in this series, has some visual signatures that crop up again and again, and his \"many shots of walking feet\" trick gets stale unless it\'s used in very small bits. The fact that Holmes saunters in unarmed, aside from a small knife, shows that he puts a little too much faith in Moriarty\'s sense of theater—the criminal mastermind would never simply shoot his enemy; instead, he would concoct an elaborate death scene, something that saves Holmes in their second, even sillier meeting in this film. The one thing of interest in their second meeting is Moriarty\'s comment, \"The needle to the last, eh Holmes?\" This is a reference to Holmes\'s cocaine addiction, mentioned a few times in Doyle\'s stories but mostly dropped from the films.</p><p>As I said, it\'s more boring than bad. The cinematography is good, as it usually is; Rathbone and Bruce are stellar as always; they finally found a suitable Moriarty in Atwill. But the pacing is slack, the big mystery not mysterious enough, and the showdowns between Holmes and Moriarty a bit too silly for my taste. Still, it\'s an improvement over the first Universal outing, and the series picked up after this.</p><p><b>Baker Street Regulars</b> (actors who appeared in more than two films in the series as different characters):</p><p>John Burton, 1st of 4 appearances (as RAF officer) <br />Harry Cording, 3rd of 8 (Jack Brady) <br />Harold De Becker, 1st of 4 (Peg Leg) <br />Leslie Denison, 2nd of 6 (bobby) <br />Holmes Herbert, 3rd of 6 (Sir Reginald Bailey) <br />Leyland Hodgson, 3rd of 7 (RAF officer)</p>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Sherlock Holmes and the Secret Weapon (1943)','','inherit','closed','closed','','356-revision-v1','','','2019-07-30 12:20:26','2019-07-30 12:20:26','',356,'http://itcamefrombeyondpulp.com/uncategorized/356-revision-v1/',0,'revision','',0),(360,1,'2019-07-30 12:23:34','2019-07-30 12:23:34','[et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" custom_padding=\"0px|||||\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" custom_margin=\"||11px|||\" next_background_color=\"#000000\" global_module=\"74\"][et_pb_row global_parent=\"74\" custom_padding=\"0px||0px|||\" custom_margin=\"|auto|-66px|auto||\" _builder_version=\"3.26.3\"][et_pb_column type=\"4_4\" global_parent=\"74\" _builder_version=\"3.26.3\"][et_pb_image global_parent=\"74\" src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/header.jpg\" url=\"http://itcamefrombeyondpulp.com\" _builder_version=\"3.26.3\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.26.3\" width=\"1080px\" width_tablet=\"100%\" width_last_edited=\"on|phone\" module_alignment=\"center\" inner_module_alignment=\"center\" custom_padding=\"0px||0px||false|false\" z_index_tablet=\"500\" hover_enabled=\"0\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" prev_background_color=\"#000000\" next_background_color=\"#e02b20\" global_module=\"175\"][et_pb_fullwidth_menu global_parent=\"175\" menu_id=\"2\" submenu_direction=\"downwards\" fullwidth_menu=\"off\" dropdown_menu_text_color=\"#ffffff\" _builder_version=\"3.26.3\" menu_font=\"|800||on|||||\" menu_text_color=\"#ffffff\" menu_font_size=\"22px\" menu_letter_spacing=\"5px\" background_color=\"#e02b20\" border_width_bottom=\"5px\" text_orientation=\"center\" background_layout=\"dark\" custom_margin=\"0px||||false|false\" custom_padding=\"1px||0px||false|false\" z_index_tablet=\"500\" menu_text_shadow_horizontal_length_tablet=\"0px\" menu_text_shadow_vertical_length_tablet=\"0px\" menu_text_shadow_blur_strength_tablet=\"1px\" border_width_bottom_tablet=\"5px\" border_width_bottom_phone=\"5px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" /][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" background_color=\"#e02b20\" width=\"1080px\" module_alignment=\"center\" custom_padding=\"10px||0px|||\" hover_enabled=\"0\" width_last_edited=\"on|tablet\" width_phone=\"100%\" width_tablet=\"100%\" prev_background_color=\"#ffffff\"][et_pb_row custom_padding=\"10px|10px||\" _builder_version=\"3.26.3\" background_color=\"#ffffff\" border_width_bottom=\"5px\" border_color_bottom=\"#e02b20\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.26.3\" z_index_tablet=\"500\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\"]\r\n\r\n<h1 style=\"text-align: center;\">Movies &amp; TV Reviews</h1>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.26.3\" background_color=\"#ffffff\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" column_structure=\"1_3,1_3,1_3\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.26.3\" z_index_tablet=\"500\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\"]\r\n\r\n<h3 style=\"text-align: center;\">Sci-Fi</h3>\r\n<p style=\"text-align: center;\"><strong><a href=\"http://itcamefrombeyondpulp.com/movies/children-of-men-2006/\">Children of Men (2006)</a><br /></strong><strong><a href=\"http://itcamefrombeyondpulp.com/movies/cloverfield-2008/\">Cloverfield (2008)</a><br /><a href=\"http://itcamefrombeyondpulp.com/movies/the-dark-knight-2008/\">The Dark Knight (2008)</a><br /><a href=\"http://itcamefrombeyondpulp.com/movies/the-fountain-2006/\">The Fountain (2006)</a><br /><a href=\"http://itcamefrombeyondpulp.com/movies/hardware-1990/\">Hardware (1990)</a><br /><a href=\"http://itcamefrombeyondpulp.com/movies/harry-potter-and-the-chamber-of-secrets-2002/\">Harry Potter and the Chamber of Secrets (2002)</a><br /><a href=\"http://itcamefrombeyondpulp.com/movies/harry-potter-and-the-sorcerers-stone-2001/\">Harry Potter and the Sorcerer\'s Stone (2001)</a><br /><a href=\"http://itcamefrombeyondpulp.com/movies/maniac-1934/\">Maniac (1934)</a><br /><a href=\"http://itcamefrombeyondpulp.com/movies/the-phantom-planet-1961/\">The Phantom Planet (1961)</a><br /><a href=\"http://itcamefrombeyondpulp.com/movies/predator-1987/\">Predator (1987)</a><br /></strong><a href=\"http://itcamefrombeyondpulp.com/movies/serenity-2005/\"><strong>Serenity (2005)</strong></a><br /><a href=\"http://itcamefrombeyondpulp.com/movies/x-men-the-last-stand-2006/\"><strong>X-Men: The Last Stand (2006)</strong></a></p>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.26.3\" z_index_tablet=\"500\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" text_text_shadow_horizontal_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_vertical_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_blur_strength=\"text_text_shadow_style,%91object Object%93\" link_text_shadow_horizontal_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_vertical_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_blur_strength=\"link_text_shadow_style,%91object Object%93\" ul_text_shadow_horizontal_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_vertical_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_blur_strength=\"ul_text_shadow_style,%91object Object%93\" ol_text_shadow_horizontal_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_vertical_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_blur_strength=\"ol_text_shadow_style,%91object Object%93\" quote_text_shadow_horizontal_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_vertical_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_blur_strength=\"quote_text_shadow_style,%91object Object%93\" header_text_shadow_horizontal_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_vertical_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_blur_strength=\"header_text_shadow_style,%91object Object%93\" header_2_text_shadow_horizontal_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_vertical_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_blur_strength=\"header_2_text_shadow_style,%91object Object%93\" header_3_text_shadow_horizontal_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_vertical_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_blur_strength=\"header_3_text_shadow_style,%91object Object%93\" header_4_text_shadow_horizontal_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_vertical_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_blur_strength=\"header_4_text_shadow_style,%91object Object%93\" header_5_text_shadow_horizontal_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_vertical_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_blur_strength=\"header_5_text_shadow_style,%91object Object%93\" header_6_text_shadow_horizontal_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_vertical_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_blur_strength=\"header_6_text_shadow_style,%91object Object%93\"]\r\n\r\n<h3 style=\"text-align: center;\">Horror</h3>\r\n<p style=\"text-align: center;\"><a href=\"http://itcamefrombeyondpulp.com/movies/bloodrayne-2-deliverance-2007/\"><strong>BloodRayne 2: Deliverance (2007)</strong></a><br /><a href=\"http://itcamefrombeyondpulp.com/movies/the-cat-and-the-canary-1927/\"><strong>The Cat and the Canary (1927)</strong></a><br /><a href=\"http://itcamefrombeyondpulp.com/movies/the-children-1980/\"><strong>The Children (1980)</strong></a><br /><strong><a href=\"http://itcamefrombeyondpulp.com/movies/colin-2008/\">Colin (2008)</a></strong><br /><strong><a href=\"http://itcamefrombeyondpulp.com/movies/dark-water-2005/\">Dark Water (2005)</a></strong><br /><strong><a href=\"http://itcamefrombeyondpulp.com/movies/the-devils-daughter-1973/\">The Devil\'s Daughter (1973)</a></strong><br /><a href=\"http://itcamefrombeyondpulp.com/movies/masters-of-horror-the-black-cat-2007/\"><strong>Masters of Horror: The Black Cat (2007)</strong></a></p>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.26.3\" z_index_tablet=\"500\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" text_text_shadow_horizontal_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_vertical_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_blur_strength=\"text_text_shadow_style,%91object Object%93\" link_text_shadow_horizontal_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_vertical_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_blur_strength=\"link_text_shadow_style,%91object Object%93\" ul_text_shadow_horizontal_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_vertical_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_blur_strength=\"ul_text_shadow_style,%91object Object%93\" ol_text_shadow_horizontal_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_vertical_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_blur_strength=\"ol_text_shadow_style,%91object Object%93\" quote_text_shadow_horizontal_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_vertical_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_blur_strength=\"quote_text_shadow_style,%91object Object%93\" header_text_shadow_horizontal_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_vertical_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_blur_strength=\"header_text_shadow_style,%91object Object%93\" header_2_text_shadow_horizontal_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_vertical_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_blur_strength=\"header_2_text_shadow_style,%91object Object%93\" header_3_text_shadow_horizontal_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_vertical_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_blur_strength=\"header_3_text_shadow_style,%91object Object%93\" header_4_text_shadow_horizontal_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_vertical_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_blur_strength=\"header_4_text_shadow_style,%91object Object%93\" header_5_text_shadow_horizontal_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_vertical_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_blur_strength=\"header_5_text_shadow_style,%91object Object%93\" header_6_text_shadow_horizontal_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_vertical_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_blur_strength=\"header_6_text_shadow_style,%91object Object%93\"]\r\n\r\n<h3 style=\"text-align: center;\">Whatnot</h3><p style=\"text-align: center;\"><strong><em>Basil Rathbone/Nigel Bruce Sherlock Holmes Films</em></strong></p><p style=\"text-align: center;\"><a href=\"http://itcamefrombeyondpulp.com/movies/the-adventures-of-sherlock-holmes-1939/\"><strong>The Adventures of Sherlock Holmes (1939)</strong></a><br /><a href=\"http://itcamefrombeyondpulp.com/movies/the-hound-of-the-baskervilles-1939/\"><strong>The Hound of the Baskervilles (1939)</strong></a><br /><strong><a href=\"http://itcamefrombeyondpulp.com/movies/sherlock-holmes-and-the-secret-weapon-1943/\">Sherlock Holmes and the Secret Weapon (1943)</a></strong><br /><strong><a href=\"http://itcamefrombeyondpulp.com/movies/the-scarlet-claw-1944/\">The Scarlet Claw (1944)</a></strong><br /><strong><a href=\"http://itcamefrombeyondpulp.com/movies/the-pearl-of-death-1944/\">The Pearl of Death (1944)</a></strong><br /><strong><a href=\"http://itcamefrombeyondpulp.com/movies/the-house-of-fear-1945/\">The House of Fear (1945)</a></strong><br /><strong><a href=\"http://itcamefrombeyondpulp.com/movies/pursuit-to-algiers-1945/\">Pursuit to Algiers (1945)</a></strong><br /><strong><a href=\"http://itcamefrombeyondpulp.com/movies/dressed-to-kill-1946/\">Dressed to Kill (1946)</a></strong></p>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Movies','','inherit','closed','closed','','45-revision-v1','','','2019-07-30 12:23:34','2019-07-30 12:23:34','',45,'http://itcamefrombeyondpulp.com/uncategorized/45-revision-v1/',0,'revision','',0),(361,1,'2019-07-30 15:32:13','2019-07-30 15:32:13','[et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" custom_padding=\"0px|||||\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" custom_margin=\"||11px|||\" next_background_color=\"#000000\" global_module=\"74\"][et_pb_row global_parent=\"74\" custom_padding=\"0px||0px|||\" custom_margin=\"|auto|-66px|auto||\" _builder_version=\"3.26.3\"][et_pb_column type=\"4_4\" global_parent=\"74\" _builder_version=\"3.26.3\"][et_pb_image global_parent=\"74\" src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/header.jpg\" url=\"http://itcamefrombeyondpulp.com\" _builder_version=\"3.26.3\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.26.3\" width=\"1080px\" width_tablet=\"100%\" width_last_edited=\"on|phone\" module_alignment=\"center\" inner_module_alignment=\"center\" custom_padding=\"0px||0px||false|false\" z_index_tablet=\"500\" hover_enabled=\"0\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" prev_background_color=\"#000000\" next_background_color=\"#e02b20\" global_module=\"175\"][et_pb_fullwidth_menu global_parent=\"175\" menu_id=\"2\" submenu_direction=\"downwards\" fullwidth_menu=\"off\" dropdown_menu_text_color=\"#ffffff\" _builder_version=\"3.26.3\" menu_font=\"|800||on|||||\" menu_text_color=\"#ffffff\" menu_font_size=\"22px\" menu_letter_spacing=\"5px\" background_color=\"#e02b20\" border_width_bottom=\"5px\" text_orientation=\"center\" background_layout=\"dark\" custom_margin=\"0px||||false|false\" custom_padding=\"1px||0px||false|false\" z_index_tablet=\"500\" menu_text_shadow_horizontal_length_tablet=\"0px\" menu_text_shadow_vertical_length_tablet=\"0px\" menu_text_shadow_blur_strength_tablet=\"1px\" border_width_bottom_tablet=\"5px\" border_width_bottom_phone=\"5px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" /][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" background_color=\"#e02b20\" width=\"1080px\" module_alignment=\"center\" custom_padding=\"10px||0px|||\" prev_background_color=\"#ffffff\"][et_pb_row _builder_version=\"3.26.3\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" background_color=\"#ffffff\" custom_padding=\"10px|10px||10px|false|false\" border_width_bottom=\"5px\" border_color_bottom=\"#e02b20\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image _builder_version=\"3.26.3\" src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/voice.jpg\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\" /][et_pb_text _builder_version=\"3.26.3\" z_index_tablet=\"500\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" text_text_shadow_horizontal_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_vertical_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_blur_strength=\"text_text_shadow_style,%91object Object%93\" link_text_shadow_horizontal_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_vertical_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_blur_strength=\"link_text_shadow_style,%91object Object%93\" ul_text_shadow_horizontal_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_vertical_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_blur_strength=\"ul_text_shadow_style,%91object Object%93\" ol_text_shadow_horizontal_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_vertical_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_blur_strength=\"ol_text_shadow_style,%91object Object%93\" quote_text_shadow_horizontal_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_vertical_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_blur_strength=\"quote_text_shadow_style,%91object Object%93\" header_text_shadow_horizontal_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_vertical_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_blur_strength=\"header_text_shadow_style,%91object Object%93\" header_2_text_shadow_horizontal_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_vertical_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_blur_strength=\"header_2_text_shadow_style,%91object Object%93\" header_3_text_shadow_horizontal_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_vertical_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_blur_strength=\"header_3_text_shadow_style,%91object Object%93\" header_4_text_shadow_horizontal_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_vertical_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_blur_strength=\"header_4_text_shadow_style,%91object Object%93\" header_5_text_shadow_horizontal_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_vertical_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_blur_strength=\"header_5_text_shadow_style,%91object Object%93\" header_6_text_shadow_horizontal_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_vertical_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_blur_strength=\"header_6_text_shadow_style,%91object Object%93\"]\r\n\r\n<h3 style=\"text-align: center;\"><strong><em>Sherlock Holmes and the Voice of Terror</em> (John Rawlins, 1942, 66 min.)</strong></h3><p>This first, \"modernized\" entry in the long-running Rathbone/Bruce series of Sherlock Holmes films can\'t be described as a rousing success. In fact, I wouldn\'t count it as a success at all. When Universal decided to revive the Holmes series by placing them in modern times and having them deal with modern problems, it was bound to undergo some growing pains; those pains are quite apparent here. The film is loosely based on one of Arthur Conan Doyle\'s original Sherlock Holmes stories, \"His Last Bow,\" but it doesn\'t <i>feel</i> right. Perhaps the studio hadn\'t quite nailed down a formula; I don\'t know, as I haven\'t seen the later entries yet. Perhaps I just balk at hearing Sherlock Holmes shout \"The Nazis killed him!\"</p><p>It\'s 1942, or thereabouts, and in a thrilling, perfectly constructed opening, we learn of the Voice of Terror, a taunting Nazi propagandist who berates the British for being weak and taunts them about a series of terrorist attacks carried out by Nazi agents operating with impunity. The authorities have no way of stopping the attacks or of finding out who the voice of terror really is, and the people of Britain are getting spooked. At a high-security meeting of a group called \"The Council\" (of what, I don\'t know), Sir Evan Barnham (Reginald Denny) informs his colleagues that he\'s solicited the help of the legendary detective. The other members of the council, especially Sir Alfred Lloyd (Henry Daniell), are upset at bringing in an eccentric civilian on the case, but when Holmes (Basil Rathbone) and Watson (Nigel Bruce) show up and give one of Holmes\'s patented \"you ate Brie on Tottenham Road last Tuesday\" demonstrations of his deductive reasoning, they mostly agree to let him help.</p><p>When Holmes\'s assistant Gavin (Robert Barron) is murdered by a mysterious Bavarian knife-thrower, Holmes turns to London\'s underworld for assistance, beseeching his widow Kitty (Evelyn Ankers) to help him not for her own sake but for the sake of England. The scene where Holmes and then Kitty appeal to the assorted lowlifes and criminals in a shady bar is a bit tough to watch; Universal used the revived series, like most films released during the war, to trumpet patriotism and pro-Allied gung-ho can-do-it-ness. It hasn\'t aged well at all, coming off as shrill and completely incongruous for Arthur Conan Doyle\'s character. The criminal element fall in line behind Holmes, serving as his super-efficient information-gathering squad and ready muscle. Holmes quickly tracks the voice of terror to its source, and that\'s when it all gets highly silly.</p><p>The rest of the film, from the revelation of the covert Nazi agent\'s identity to the finale, where we learn the identity of the inner-circle diplomat responsible for information leaks, depends on two incredible and impossible bits of knowledge that Holmes acquires without any apparent source. It\'s as if the screenwriters couldn\'t be bothered to explain how he came to know these tidbits; it\'s Sherlock Holmes, perhaps they argued, and he knows stuff like that. Or perhaps the film\'s short 66-minute running time prevented them from filling in the Maginot line of plot holes. First is the identity of the Nazi agent, a man named Meade (Thomas Gomez). Can anyone explain how Holmes got from letting Meade escape the waterfront warehouse to knowing his name and address? Holmes enlists the help of Kitty again, sending her to infiltrate Meade\'s affections and figure out his grand plans. The second big revelation comes at the end, when Holmes reveals that a major character is in fact a fraud, a German plant done up to look like a British nobleman and inserted into British society back in 1924, when, apparently, the Germans were already planning World War II. Holmes orchestrates one of his patented gatherings-of-suspects and dramatically reveals his damning information, and I guess viewers were supposed to be so shocked that they wouldn\'t question the source of Holmes\'s information.</p><p>The sense that this Holmes is disconnected from his past incarnations did not abate throughout. Time after time, I was taken out of the film, reacting to such things as Holmes\'s modern haircut and the fedora he wears (although there\'s a funny scene where he\'s about to put on his signature deerstalker and Watson won\'t let him). It almost completely lacks the moody atmosphere and tight pacing of the previous two films, <em>The Adventures of Sherlock Holmes</em> and <em>The Hound of the Baskervilles</em>. Universal released eleven more films in this series in four years; thankfully the series gets better.</p><p><b>Baker Street Regulars</b> (actors who appeared in more than two films in the series as different characters):</p><p>Hillary Brooke, 1st of 3 appearances (as Jill Grandis) <br />Harry Cording, 2rd of 8 (Camberwell, dive patron) <br />Henry Daniell, 1st of 3 (Sir Alfred Lloyd) <br />Leslie Denison, 1st of 6 (Air Raid Warden Dobson) <br />Leyland Hodgson, 2nd of 7 (Capt. Roland Shore) <br />Olaf Hytten, 1st of 6 (Adm. Sir John Prentiss) <br />Gavin Muir, 1st of 4 (BBC radio announcer) <br />Arthur Stenning, 1st of 3 (unidentified officer)</p>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Sherlock Holmes and the Voice of Terror (1942)','','publish','closed','closed','','sherlock-holmes-and-the-voice-of-terror-1942','','','2019-07-30 15:32:13','2019-07-30 15:32:13','',0,'http://itcamefrombeyondpulp.com/?p=361',0,'post','',0),(362,1,'2019-07-30 15:31:51','2019-07-30 15:31:51','','voice','','inherit','closed','closed','','voice','','','2019-07-30 15:31:51','2019-07-30 15:31:51','',361,'http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/voice.jpg',0,'attachment','image/jpeg',0),(363,1,'2019-07-30 15:32:13','2019-07-30 15:32:13','[et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" custom_padding=\"0px|||||\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" custom_margin=\"||11px|||\" next_background_color=\"#000000\" global_module=\"74\"][et_pb_row global_parent=\"74\" custom_padding=\"0px||0px|||\" custom_margin=\"|auto|-66px|auto||\" _builder_version=\"3.26.3\"][et_pb_column type=\"4_4\" global_parent=\"74\" _builder_version=\"3.26.3\"][et_pb_image global_parent=\"74\" src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/header.jpg\" url=\"http://itcamefrombeyondpulp.com\" _builder_version=\"3.26.3\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.26.3\" width=\"1080px\" width_tablet=\"100%\" width_last_edited=\"on|phone\" module_alignment=\"center\" inner_module_alignment=\"center\" custom_padding=\"0px||0px||false|false\" z_index_tablet=\"500\" hover_enabled=\"0\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" prev_background_color=\"#000000\" next_background_color=\"#e02b20\" global_module=\"175\"][et_pb_fullwidth_menu global_parent=\"175\" menu_id=\"2\" submenu_direction=\"downwards\" fullwidth_menu=\"off\" dropdown_menu_text_color=\"#ffffff\" _builder_version=\"3.26.3\" menu_font=\"|800||on|||||\" menu_text_color=\"#ffffff\" menu_font_size=\"22px\" menu_letter_spacing=\"5px\" background_color=\"#e02b20\" border_width_bottom=\"5px\" text_orientation=\"center\" background_layout=\"dark\" custom_margin=\"0px||||false|false\" custom_padding=\"1px||0px||false|false\" z_index_tablet=\"500\" menu_text_shadow_horizontal_length_tablet=\"0px\" menu_text_shadow_vertical_length_tablet=\"0px\" menu_text_shadow_blur_strength_tablet=\"1px\" border_width_bottom_tablet=\"5px\" border_width_bottom_phone=\"5px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" /][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" background_color=\"#e02b20\" width=\"1080px\" module_alignment=\"center\" custom_padding=\"10px||0px|||\" prev_background_color=\"#ffffff\"][et_pb_row _builder_version=\"3.26.3\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" background_color=\"#ffffff\" custom_padding=\"10px|10px||10px|false|false\" border_width_bottom=\"5px\" border_color_bottom=\"#e02b20\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image _builder_version=\"3.26.3\" src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/voice.jpg\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\" /][et_pb_text _builder_version=\"3.26.3\" z_index_tablet=\"500\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" text_text_shadow_horizontal_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_vertical_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_blur_strength=\"text_text_shadow_style,%91object Object%93\" link_text_shadow_horizontal_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_vertical_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_blur_strength=\"link_text_shadow_style,%91object Object%93\" ul_text_shadow_horizontal_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_vertical_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_blur_strength=\"ul_text_shadow_style,%91object Object%93\" ol_text_shadow_horizontal_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_vertical_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_blur_strength=\"ol_text_shadow_style,%91object Object%93\" quote_text_shadow_horizontal_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_vertical_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_blur_strength=\"quote_text_shadow_style,%91object Object%93\" header_text_shadow_horizontal_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_vertical_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_blur_strength=\"header_text_shadow_style,%91object Object%93\" header_2_text_shadow_horizontal_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_vertical_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_blur_strength=\"header_2_text_shadow_style,%91object Object%93\" header_3_text_shadow_horizontal_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_vertical_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_blur_strength=\"header_3_text_shadow_style,%91object Object%93\" header_4_text_shadow_horizontal_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_vertical_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_blur_strength=\"header_4_text_shadow_style,%91object Object%93\" header_5_text_shadow_horizontal_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_vertical_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_blur_strength=\"header_5_text_shadow_style,%91object Object%93\" header_6_text_shadow_horizontal_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_vertical_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_blur_strength=\"header_6_text_shadow_style,%91object Object%93\"]\r\n\r\n<h3 style=\"text-align: center;\"><strong><em>Sherlock Holmes and the Voice of Terror</em> (John Rawlins, 1942, 66 min.)</strong></h3><p>This first, \"modernized\" entry in the long-running Rathbone/Bruce series of Sherlock Holmes films can\'t be described as a rousing success. In fact, I wouldn\'t count it as a success at all. When Universal decided to revive the Holmes series by placing them in modern times and having them deal with modern problems, it was bound to undergo some growing pains; those pains are quite apparent here. The film is loosely based on one of Arthur Conan Doyle\'s original Sherlock Holmes stories, \"His Last Bow,\" but it doesn\'t <i>feel</i> right. Perhaps the studio hadn\'t quite nailed down a formula; I don\'t know, as I haven\'t seen the later entries yet. Perhaps I just balk at hearing Sherlock Holmes shout \"The Nazis killed him!\"</p><p>It\'s 1942, or thereabouts, and in a thrilling, perfectly constructed opening, we learn of the Voice of Terror, a taunting Nazi propagandist who berates the British for being weak and taunts them about a series of terrorist attacks carried out by Nazi agents operating with impunity. The authorities have no way of stopping the attacks or of finding out who the voice of terror really is, and the people of Britain are getting spooked. At a high-security meeting of a group called \"The Council\" (of what, I don\'t know), Sir Evan Barnham (Reginald Denny) informs his colleagues that he\'s solicited the help of the legendary detective. The other members of the council, especially Sir Alfred Lloyd (Henry Daniell), are upset at bringing in an eccentric civilian on the case, but when Holmes (Basil Rathbone) and Watson (Nigel Bruce) show up and give one of Holmes\'s patented \"you ate Brie on Tottenham Road last Tuesday\" demonstrations of his deductive reasoning, they mostly agree to let him help.</p><p>When Holmes\'s assistant Gavin (Robert Barron) is murdered by a mysterious Bavarian knife-thrower, Holmes turns to London\'s underworld for assistance, beseeching his widow Kitty (Evelyn Ankers) to help him not for her own sake but for the sake of England. The scene where Holmes and then Kitty appeal to the assorted lowlifes and criminals in a shady bar is a bit tough to watch; Universal used the revived series, like most films released during the war, to trumpet patriotism and pro-Allied gung-ho can-do-it-ness. It hasn\'t aged well at all, coming off as shrill and completely incongruous for Arthur Conan Doyle\'s character. The criminal element fall in line behind Holmes, serving as his super-efficient information-gathering squad and ready muscle. Holmes quickly tracks the voice of terror to its source, and that\'s when it all gets highly silly.</p><p>The rest of the film, from the revelation of the covert Nazi agent\'s identity to the finale, where we learn the identity of the inner-circle diplomat responsible for information leaks, depends on two incredible and impossible bits of knowledge that Holmes acquires without any apparent source. It\'s as if the screenwriters couldn\'t be bothered to explain how he came to know these tidbits; it\'s Sherlock Holmes, perhaps they argued, and he knows stuff like that. Or perhaps the film\'s short 66-minute running time prevented them from filling in the Maginot line of plot holes. First is the identity of the Nazi agent, a man named Meade (Thomas Gomez). Can anyone explain how Holmes got from letting Meade escape the waterfront warehouse to knowing his name and address? Holmes enlists the help of Kitty again, sending her to infiltrate Meade\'s affections and figure out his grand plans. The second big revelation comes at the end, when Holmes reveals that a major character is in fact a fraud, a German plant done up to look like a British nobleman and inserted into British society back in 1924, when, apparently, the Germans were already planning World War II. Holmes orchestrates one of his patented gatherings-of-suspects and dramatically reveals his damning information, and I guess viewers were supposed to be so shocked that they wouldn\'t question the source of Holmes\'s information.</p><p>The sense that this Holmes is disconnected from his past incarnations did not abate throughout. Time after time, I was taken out of the film, reacting to such things as Holmes\'s modern haircut and the fedora he wears (although there\'s a funny scene where he\'s about to put on his signature deerstalker and Watson won\'t let him). It almost completely lacks the moody atmosphere and tight pacing of the previous two films, <em>The Adventures of Sherlock Holmes</em> and <em>The Hound of the Baskervilles</em>. Universal released eleven more films in this series in four years; thankfully the series gets better.</p><p><b>Baker Street Regulars</b> (actors who appeared in more than two films in the series as different characters):</p><p>Hillary Brooke, 1st of 3 appearances (as Jill Grandis) <br />Harry Cording, 2rd of 8 (Camberwell, dive patron) <br />Henry Daniell, 1st of 3 (Sir Alfred Lloyd) <br />Leslie Denison, 1st of 6 (Air Raid Warden Dobson) <br />Leyland Hodgson, 2nd of 7 (Capt. Roland Shore) <br />Olaf Hytten, 1st of 6 (Adm. Sir John Prentiss) <br />Gavin Muir, 1st of 4 (BBC radio announcer) <br />Arthur Stenning, 1st of 3 (unidentified officer)</p>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Sherlock Holmes and the Voice of Terror (1942)','','inherit','closed','closed','','361-revision-v1','','','2019-07-30 15:32:13','2019-07-30 15:32:13','',361,'http://itcamefrombeyondpulp.com/uncategorized/361-revision-v1/',0,'revision','',0),(364,1,'2019-07-30 15:33:39','2019-07-30 15:33:39','[et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" custom_padding=\"0px|||||\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" custom_margin=\"||11px|||\" next_background_color=\"#000000\" global_module=\"74\"][et_pb_row global_parent=\"74\" custom_padding=\"0px||0px|||\" custom_margin=\"|auto|-66px|auto||\" _builder_version=\"3.26.3\"][et_pb_column type=\"4_4\" global_parent=\"74\" _builder_version=\"3.26.3\"][et_pb_image global_parent=\"74\" src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/header.jpg\" url=\"http://itcamefrombeyondpulp.com\" _builder_version=\"3.26.3\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.26.3\" width=\"1080px\" width_tablet=\"100%\" width_last_edited=\"on|phone\" module_alignment=\"center\" inner_module_alignment=\"center\" custom_padding=\"0px||0px||false|false\" z_index_tablet=\"500\" hover_enabled=\"0\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" prev_background_color=\"#000000\" next_background_color=\"#e02b20\" global_module=\"175\"][et_pb_fullwidth_menu global_parent=\"175\" menu_id=\"2\" submenu_direction=\"downwards\" fullwidth_menu=\"off\" dropdown_menu_text_color=\"#ffffff\" _builder_version=\"3.26.3\" menu_font=\"|800||on|||||\" menu_text_color=\"#ffffff\" menu_font_size=\"22px\" menu_letter_spacing=\"5px\" background_color=\"#e02b20\" border_width_bottom=\"5px\" text_orientation=\"center\" background_layout=\"dark\" custom_margin=\"0px||||false|false\" custom_padding=\"1px||0px||false|false\" z_index_tablet=\"500\" menu_text_shadow_horizontal_length_tablet=\"0px\" menu_text_shadow_vertical_length_tablet=\"0px\" menu_text_shadow_blur_strength_tablet=\"1px\" border_width_bottom_tablet=\"5px\" border_width_bottom_phone=\"5px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" /][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" background_color=\"#e02b20\" width=\"1080px\" module_alignment=\"center\" custom_padding=\"10px||0px|||\" hover_enabled=\"0\" width_last_edited=\"on|tablet\" width_phone=\"100%\" width_tablet=\"100%\" prev_background_color=\"#ffffff\"][et_pb_row custom_padding=\"10px|10px||\" _builder_version=\"3.26.3\" background_color=\"#ffffff\" border_width_bottom=\"5px\" border_color_bottom=\"#e02b20\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.26.3\" z_index_tablet=\"500\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\"]\r\n\r\n<h1 style=\"text-align: center;\">Movies &amp; TV Reviews</h1>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.26.3\" background_color=\"#ffffff\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" column_structure=\"1_3,1_3,1_3\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.26.3\" z_index_tablet=\"500\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\"]\r\n\r\n<h3 style=\"text-align: center;\">Sci-Fi</h3>\r\n<p style=\"text-align: center;\"><strong><a href=\"http://itcamefrombeyondpulp.com/movies/children-of-men-2006/\">Children of Men (2006)</a><br /></strong><strong><a href=\"http://itcamefrombeyondpulp.com/movies/cloverfield-2008/\">Cloverfield (2008)</a><br /><a href=\"http://itcamefrombeyondpulp.com/movies/the-dark-knight-2008/\">The Dark Knight (2008)</a><br /><a href=\"http://itcamefrombeyondpulp.com/movies/the-fountain-2006/\">The Fountain (2006)</a><br /><a href=\"http://itcamefrombeyondpulp.com/movies/hardware-1990/\">Hardware (1990)</a><br /><a href=\"http://itcamefrombeyondpulp.com/movies/harry-potter-and-the-chamber-of-secrets-2002/\">Harry Potter and the Chamber of Secrets (2002)</a><br /><a href=\"http://itcamefrombeyondpulp.com/movies/harry-potter-and-the-sorcerers-stone-2001/\">Harry Potter and the Sorcerer\'s Stone (2001)</a><br /><a href=\"http://itcamefrombeyondpulp.com/movies/maniac-1934/\">Maniac (1934)</a><br /><a href=\"http://itcamefrombeyondpulp.com/movies/the-phantom-planet-1961/\">The Phantom Planet (1961)</a><br /><a href=\"http://itcamefrombeyondpulp.com/movies/predator-1987/\">Predator (1987)</a><br /></strong><a href=\"http://itcamefrombeyondpulp.com/movies/serenity-2005/\"><strong>Serenity (2005)</strong></a><br /><a href=\"http://itcamefrombeyondpulp.com/movies/x-men-the-last-stand-2006/\"><strong>X-Men: The Last Stand (2006)</strong></a></p>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.26.3\" z_index_tablet=\"500\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" text_text_shadow_horizontal_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_vertical_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_blur_strength=\"text_text_shadow_style,%91object Object%93\" link_text_shadow_horizontal_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_vertical_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_blur_strength=\"link_text_shadow_style,%91object Object%93\" ul_text_shadow_horizontal_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_vertical_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_blur_strength=\"ul_text_shadow_style,%91object Object%93\" ol_text_shadow_horizontal_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_vertical_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_blur_strength=\"ol_text_shadow_style,%91object Object%93\" quote_text_shadow_horizontal_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_vertical_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_blur_strength=\"quote_text_shadow_style,%91object Object%93\" header_text_shadow_horizontal_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_vertical_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_blur_strength=\"header_text_shadow_style,%91object Object%93\" header_2_text_shadow_horizontal_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_vertical_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_blur_strength=\"header_2_text_shadow_style,%91object Object%93\" header_3_text_shadow_horizontal_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_vertical_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_blur_strength=\"header_3_text_shadow_style,%91object Object%93\" header_4_text_shadow_horizontal_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_vertical_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_blur_strength=\"header_4_text_shadow_style,%91object Object%93\" header_5_text_shadow_horizontal_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_vertical_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_blur_strength=\"header_5_text_shadow_style,%91object Object%93\" header_6_text_shadow_horizontal_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_vertical_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_blur_strength=\"header_6_text_shadow_style,%91object Object%93\"]\r\n\r\n<h3 style=\"text-align: center;\">Horror</h3>\r\n<p style=\"text-align: center;\"><a href=\"http://itcamefrombeyondpulp.com/movies/bloodrayne-2-deliverance-2007/\"><strong>BloodRayne 2: Deliverance (2007)</strong></a><br /><a href=\"http://itcamefrombeyondpulp.com/movies/the-cat-and-the-canary-1927/\"><strong>The Cat and the Canary (1927)</strong></a><br /><a href=\"http://itcamefrombeyondpulp.com/movies/the-children-1980/\"><strong>The Children (1980)</strong></a><br /><strong><a href=\"http://itcamefrombeyondpulp.com/movies/colin-2008/\">Colin (2008)</a></strong><br /><strong><a href=\"http://itcamefrombeyondpulp.com/movies/dark-water-2005/\">Dark Water (2005)</a></strong><br /><strong><a href=\"http://itcamefrombeyondpulp.com/movies/the-devils-daughter-1973/\">The Devil\'s Daughter (1973)</a></strong><br /><a href=\"http://itcamefrombeyondpulp.com/movies/masters-of-horror-the-black-cat-2007/\"><strong>Masters of Horror: The Black Cat (2007)</strong></a></p>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.26.3\" z_index_tablet=\"500\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" text_text_shadow_horizontal_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_vertical_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_blur_strength=\"text_text_shadow_style,%91object Object%93\" link_text_shadow_horizontal_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_vertical_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_blur_strength=\"link_text_shadow_style,%91object Object%93\" ul_text_shadow_horizontal_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_vertical_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_blur_strength=\"ul_text_shadow_style,%91object Object%93\" ol_text_shadow_horizontal_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_vertical_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_blur_strength=\"ol_text_shadow_style,%91object Object%93\" quote_text_shadow_horizontal_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_vertical_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_blur_strength=\"quote_text_shadow_style,%91object Object%93\" header_text_shadow_horizontal_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_vertical_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_blur_strength=\"header_text_shadow_style,%91object Object%93\" header_2_text_shadow_horizontal_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_vertical_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_blur_strength=\"header_2_text_shadow_style,%91object Object%93\" header_3_text_shadow_horizontal_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_vertical_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_blur_strength=\"header_3_text_shadow_style,%91object Object%93\" header_4_text_shadow_horizontal_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_vertical_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_blur_strength=\"header_4_text_shadow_style,%91object Object%93\" header_5_text_shadow_horizontal_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_vertical_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_blur_strength=\"header_5_text_shadow_style,%91object Object%93\" header_6_text_shadow_horizontal_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_vertical_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_blur_strength=\"header_6_text_shadow_style,%91object Object%93\"]\r\n\r\n<h3 style=\"text-align: center;\">Whatnot</h3><p style=\"text-align: center;\"><strong><em>Basil Rathbone/Nigel Bruce Sherlock Holmes Films</em></strong></p><p style=\"text-align: center;\"><a href=\"http://itcamefrombeyondpulp.com/movies/the-adventures-of-sherlock-holmes-1939/\"><strong>The Adventures of Sherlock Holmes (1939)</strong></a><br /><a href=\"http://itcamefrombeyondpulp.com/movies/the-hound-of-the-baskervilles-1939/\"><strong>The Hound of the Baskervilles (1939)</strong></a><br /><a href=\"http://itcamefrombeyondpulp.com/movies/sherlock-holmes-and-the-voice-of-terror-1942/\"><strong>Sherlock Holmes and the Voice of Terror (1942)</strong></a><br /><strong><a href=\"http://itcamefrombeyondpulp.com/movies/sherlock-holmes-and-the-secret-weapon-1943/\">Sherlock Holmes and the Secret Weapon (1943)</a></strong><br /><strong><a href=\"http://itcamefrombeyondpulp.com/movies/the-scarlet-claw-1944/\">The Scarlet Claw (1944)</a></strong><br /><strong><a href=\"http://itcamefrombeyondpulp.com/movies/the-pearl-of-death-1944/\">The Pearl of Death (1944)</a></strong><br /><strong><a href=\"http://itcamefrombeyondpulp.com/movies/the-house-of-fear-1945/\">The House of Fear (1945)</a></strong><br /><strong><a href=\"http://itcamefrombeyondpulp.com/movies/pursuit-to-algiers-1945/\">Pursuit to Algiers (1945)</a></strong><br /><strong><a href=\"http://itcamefrombeyondpulp.com/movies/dressed-to-kill-1946/\">Dressed to Kill (1946)</a></strong></p>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Movies','','inherit','closed','closed','','45-revision-v1','','','2019-07-30 15:33:39','2019-07-30 15:33:39','',45,'http://itcamefrombeyondpulp.com/uncategorized/45-revision-v1/',0,'revision','',0),(365,1,'2019-07-30 21:14:19','2019-07-30 21:14:19','[et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" custom_padding=\"0px|||||\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" custom_margin=\"||11px|||\" next_background_color=\"#000000\" global_module=\"74\"][et_pb_row global_parent=\"74\" custom_padding=\"0px||0px|||\" custom_margin=\"|auto|-66px|auto||\" _builder_version=\"3.26.3\"][et_pb_column type=\"4_4\" global_parent=\"74\" _builder_version=\"3.26.3\"][et_pb_image global_parent=\"74\" src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/header.jpg\" url=\"http://itcamefrombeyondpulp.com\" _builder_version=\"3.26.3\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.26.3\" width=\"1080px\" width_tablet=\"100%\" width_last_edited=\"on|phone\" module_alignment=\"center\" inner_module_alignment=\"center\" custom_padding=\"0px||0px||false|false\" z_index_tablet=\"500\" hover_enabled=\"0\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" prev_background_color=\"#000000\" next_background_color=\"#e02b20\" global_module=\"175\"][et_pb_fullwidth_menu global_parent=\"175\" menu_id=\"2\" submenu_direction=\"downwards\" fullwidth_menu=\"off\" dropdown_menu_text_color=\"#ffffff\" _builder_version=\"3.26.3\" menu_font=\"|800||on|||||\" menu_text_color=\"#ffffff\" menu_font_size=\"22px\" menu_letter_spacing=\"5px\" background_color=\"#e02b20\" border_width_bottom=\"5px\" text_orientation=\"center\" background_layout=\"dark\" custom_margin=\"0px||||false|false\" custom_padding=\"1px||0px||false|false\" z_index_tablet=\"500\" menu_text_shadow_horizontal_length_tablet=\"0px\" menu_text_shadow_vertical_length_tablet=\"0px\" menu_text_shadow_blur_strength_tablet=\"1px\" border_width_bottom_tablet=\"5px\" border_width_bottom_phone=\"5px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" /][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" background_color=\"#e02b20\" width=\"1080px\" module_alignment=\"center\" custom_padding=\"10px||0px|||\" prev_background_color=\"#ffffff\"][et_pb_row _builder_version=\"3.26.3\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" background_color=\"#ffffff\" custom_padding=\"10px|10px||10px|false|false\" border_width_bottom=\"5px\" border_color_bottom=\"#e02b20\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image _builder_version=\"3.26.3\" src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/faces-death.jpg\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\" /][et_pb_text _builder_version=\"3.26.3\" z_index_tablet=\"500\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" text_text_shadow_horizontal_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_vertical_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_blur_strength=\"text_text_shadow_style,%91object Object%93\" link_text_shadow_horizontal_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_vertical_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_blur_strength=\"link_text_shadow_style,%91object Object%93\" ul_text_shadow_horizontal_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_vertical_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_blur_strength=\"ul_text_shadow_style,%91object Object%93\" ol_text_shadow_horizontal_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_vertical_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_blur_strength=\"ol_text_shadow_style,%91object Object%93\" quote_text_shadow_horizontal_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_vertical_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_blur_strength=\"quote_text_shadow_style,%91object Object%93\" header_text_shadow_horizontal_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_vertical_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_blur_strength=\"header_text_shadow_style,%91object Object%93\" header_2_text_shadow_horizontal_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_vertical_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_blur_strength=\"header_2_text_shadow_style,%91object Object%93\" header_3_text_shadow_horizontal_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_vertical_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_blur_strength=\"header_3_text_shadow_style,%91object Object%93\" header_4_text_shadow_horizontal_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_vertical_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_blur_strength=\"header_4_text_shadow_style,%91object Object%93\" header_5_text_shadow_horizontal_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_vertical_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_blur_strength=\"header_5_text_shadow_style,%91object Object%93\" header_6_text_shadow_horizontal_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_vertical_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_blur_strength=\"header_6_text_shadow_style,%91object Object%93\"]\r\n\r\n<h3 style=\"text-align: center;\"><strong><em>Sherlock Holmes Faces Death</em> (Roy William Neill, 1943, 68 min.)</strong></h3><p>If you see the title of this film and think, \"What\'s new?\" you\'re both right and wrong. Sure, the brilliant Holmes (Basil Rathbone) faces death in every adventure, especially in the modernized series of Universal films where he faces off against Nazis and spies. But there is a newness to this installment—even though that newness is a return to an older mode, so perhaps I\'ve just talked myself into a corner. Although this film, like the three before it, places Holmes and his trusty friend Watson (Nigel Bruce) in Word War II–era England, for the first time since Universal took over the series they\'re up against good, old-fashioned murderers. Sir Arthur Conan Doyle would have been pleased.</p><p>This film, which is actually based on an original Holmes story by Doyle, \"The Musgrave Ritual,\" has our heroes investigating an apparently cursed family. While Watson is helping out at Musgrave Manor, which is serving as a convalescent home for shell-shocked officers, his young assistant, Dr. Sexton (Arthur Margetson), is attacked and nearly killed. Watson heads for London to bring Holmes back with him, but it\'s too late: upon their return, they find the head of the household, Geoffrey Musgrave (Frederick Worlock), dead. The lead suspect is an American airman, Vickery (Milburn Stone), who is in love with Musgrave\'s younger sister Sally (Hillary Brooke) and planned to marry her against Geoffrey\'s wishes. The always-befuddled Inspector Lestrade (Dennis Hoey) quickly arrests him, but Holmes isn\'t convinced.</p><p>Suspects abound: there\'s the angry, drunken, eavesdropping manservant Brunton (Halliwell Hobbes); his secret wife Mrs. Howells (Minna Phillips); Musgrave\'s cocky younger brother Phillip (Gavin Muir); and several of the convalescing soldiers, all of whom act suspiciously. The great fun in this film is watching as all of the red herrings develop, and attempting to read Rathbone\'s face for clues as to whom he believes and whom he suspects. Watson manages to be something more than comic relief, although he does provide plenty of that. More annoying is Lestrade, who is a long way from London and who is present only to act like an idiot.</p><p>There are welcome elements of the supernatural that were missing from the first three Universal outings: a clock that strikes thirteen just before someone dies, an ancient family ritual that speaks of murder, a raven that can say the word \"blood,\" and a catacomb of hidden passages through the ancient house. The only real problem with the film is that it takes a while to get going; almost the first half-hour is spent shoveling in backstory and introducing the bevy of characters. Once the fireworks start, though, it\'s nonstop action and suspense, with a particularly ingenious ending that pits Holmes against the killer\'s ego.</p><p>Rathbone and Bruce are great, as always. Director Roy William Neill, helming his third of eleven Holmes films, flounders a bit at first, but when he\'s on, he\'s a master of efficient action and suspense. Screenwriter Bertram Millhauser, writing his second of four films in the series, likely can\'t be blamed for the awkward and chatty first half of the film, since he provided the backstory in as efficient a manner as possible. Watch for future Rat Pack member Peter Lawford as a sailor in the bar at the beginning of the film.</p><p><b>Baker Street Regulars</b> (actors who appeared in more than two films in the series as different characters):</p><p>Hillary Brooke, 2nd of 3 appearances (as Sally Musgrave) <br />Harold De Becker, 2nd of 4 (Pub Proprietor) <br />Gerald Hamer, 2nd of 5 (Major Langford) <br />Olaf Hytten, 2nd of 6 (Capt. MacIntosh) <br />Gavin Muir, 3rd of 4 (Phillip Musgrave) <br />Frederick Worlock, 2nd of 6 (Geoffrey Musgrave)</p>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Sherlock Holmes Faces Death (1943)','','publish','closed','closed','','sherlock-holmes-faces-death-1943','','','2019-07-30 21:14:19','2019-07-30 21:14:19','',0,'http://itcamefrombeyondpulp.com/?p=365',0,'post','',0),(366,1,'2019-07-30 21:12:56','2019-07-30 21:12:56','','faces death','','inherit','closed','closed','','faces-death','','','2019-07-30 21:12:56','2019-07-30 21:12:56','',365,'http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/faces-death.jpg',0,'attachment','image/jpeg',0),(367,1,'2019-07-30 21:14:19','2019-07-30 21:14:19','[et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" custom_padding=\"0px|||||\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" custom_margin=\"||11px|||\" next_background_color=\"#000000\" global_module=\"74\"][et_pb_row global_parent=\"74\" custom_padding=\"0px||0px|||\" custom_margin=\"|auto|-66px|auto||\" _builder_version=\"3.26.3\"][et_pb_column type=\"4_4\" global_parent=\"74\" _builder_version=\"3.26.3\"][et_pb_image global_parent=\"74\" src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/header.jpg\" url=\"http://itcamefrombeyondpulp.com\" _builder_version=\"3.26.3\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.26.3\" width=\"1080px\" width_tablet=\"100%\" width_last_edited=\"on|phone\" module_alignment=\"center\" inner_module_alignment=\"center\" custom_padding=\"0px||0px||false|false\" z_index_tablet=\"500\" hover_enabled=\"0\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" prev_background_color=\"#000000\" next_background_color=\"#e02b20\" global_module=\"175\"][et_pb_fullwidth_menu global_parent=\"175\" menu_id=\"2\" submenu_direction=\"downwards\" fullwidth_menu=\"off\" dropdown_menu_text_color=\"#ffffff\" _builder_version=\"3.26.3\" menu_font=\"|800||on|||||\" menu_text_color=\"#ffffff\" menu_font_size=\"22px\" menu_letter_spacing=\"5px\" background_color=\"#e02b20\" border_width_bottom=\"5px\" text_orientation=\"center\" background_layout=\"dark\" custom_margin=\"0px||||false|false\" custom_padding=\"1px||0px||false|false\" z_index_tablet=\"500\" menu_text_shadow_horizontal_length_tablet=\"0px\" menu_text_shadow_vertical_length_tablet=\"0px\" menu_text_shadow_blur_strength_tablet=\"1px\" border_width_bottom_tablet=\"5px\" border_width_bottom_phone=\"5px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" /][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" background_color=\"#e02b20\" width=\"1080px\" module_alignment=\"center\" custom_padding=\"10px||0px|||\" prev_background_color=\"#ffffff\"][et_pb_row _builder_version=\"3.26.3\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" background_color=\"#ffffff\" custom_padding=\"10px|10px||10px|false|false\" border_width_bottom=\"5px\" border_color_bottom=\"#e02b20\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image _builder_version=\"3.26.3\" src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/faces-death.jpg\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\" /][et_pb_text _builder_version=\"3.26.3\" z_index_tablet=\"500\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" text_text_shadow_horizontal_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_vertical_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_blur_strength=\"text_text_shadow_style,%91object Object%93\" link_text_shadow_horizontal_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_vertical_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_blur_strength=\"link_text_shadow_style,%91object Object%93\" ul_text_shadow_horizontal_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_vertical_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_blur_strength=\"ul_text_shadow_style,%91object Object%93\" ol_text_shadow_horizontal_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_vertical_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_blur_strength=\"ol_text_shadow_style,%91object Object%93\" quote_text_shadow_horizontal_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_vertical_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_blur_strength=\"quote_text_shadow_style,%91object Object%93\" header_text_shadow_horizontal_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_vertical_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_blur_strength=\"header_text_shadow_style,%91object Object%93\" header_2_text_shadow_horizontal_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_vertical_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_blur_strength=\"header_2_text_shadow_style,%91object Object%93\" header_3_text_shadow_horizontal_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_vertical_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_blur_strength=\"header_3_text_shadow_style,%91object Object%93\" header_4_text_shadow_horizontal_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_vertical_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_blur_strength=\"header_4_text_shadow_style,%91object Object%93\" header_5_text_shadow_horizontal_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_vertical_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_blur_strength=\"header_5_text_shadow_style,%91object Object%93\" header_6_text_shadow_horizontal_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_vertical_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_blur_strength=\"header_6_text_shadow_style,%91object Object%93\"]\r\n\r\n<h3 style=\"text-align: center;\"><strong><em>Sherlock Holmes Faces Death</em> (Roy William Neill, 1943, 68 min.)</strong></h3><p>If you see the title of this film and think, \"What\'s new?\" you\'re both right and wrong. Sure, the brilliant Holmes (Basil Rathbone) faces death in every adventure, especially in the modernized series of Universal films where he faces off against Nazis and spies. But there is a newness to this installment—even though that newness is a return to an older mode, so perhaps I\'ve just talked myself into a corner. Although this film, like the three before it, places Holmes and his trusty friend Watson (Nigel Bruce) in Word War II–era England, for the first time since Universal took over the series they\'re up against good, old-fashioned murderers. Sir Arthur Conan Doyle would have been pleased.</p><p>This film, which is actually based on an original Holmes story by Doyle, \"The Musgrave Ritual,\" has our heroes investigating an apparently cursed family. While Watson is helping out at Musgrave Manor, which is serving as a convalescent home for shell-shocked officers, his young assistant, Dr. Sexton (Arthur Margetson), is attacked and nearly killed. Watson heads for London to bring Holmes back with him, but it\'s too late: upon their return, they find the head of the household, Geoffrey Musgrave (Frederick Worlock), dead. The lead suspect is an American airman, Vickery (Milburn Stone), who is in love with Musgrave\'s younger sister Sally (Hillary Brooke) and planned to marry her against Geoffrey\'s wishes. The always-befuddled Inspector Lestrade (Dennis Hoey) quickly arrests him, but Holmes isn\'t convinced.</p><p>Suspects abound: there\'s the angry, drunken, eavesdropping manservant Brunton (Halliwell Hobbes); his secret wife Mrs. Howells (Minna Phillips); Musgrave\'s cocky younger brother Phillip (Gavin Muir); and several of the convalescing soldiers, all of whom act suspiciously. The great fun in this film is watching as all of the red herrings develop, and attempting to read Rathbone\'s face for clues as to whom he believes and whom he suspects. Watson manages to be something more than comic relief, although he does provide plenty of that. More annoying is Lestrade, who is a long way from London and who is present only to act like an idiot.</p><p>There are welcome elements of the supernatural that were missing from the first three Universal outings: a clock that strikes thirteen just before someone dies, an ancient family ritual that speaks of murder, a raven that can say the word \"blood,\" and a catacomb of hidden passages through the ancient house. The only real problem with the film is that it takes a while to get going; almost the first half-hour is spent shoveling in backstory and introducing the bevy of characters. Once the fireworks start, though, it\'s nonstop action and suspense, with a particularly ingenious ending that pits Holmes against the killer\'s ego.</p><p>Rathbone and Bruce are great, as always. Director Roy William Neill, helming his third of eleven Holmes films, flounders a bit at first, but when he\'s on, he\'s a master of efficient action and suspense. Screenwriter Bertram Millhauser, writing his second of four films in the series, likely can\'t be blamed for the awkward and chatty first half of the film, since he provided the backstory in as efficient a manner as possible. Watch for future Rat Pack member Peter Lawford as a sailor in the bar at the beginning of the film.</p><p><b>Baker Street Regulars</b> (actors who appeared in more than two films in the series as different characters):</p><p>Hillary Brooke, 2nd of 3 appearances (as Sally Musgrave) <br />Harold De Becker, 2nd of 4 (Pub Proprietor) <br />Gerald Hamer, 2nd of 5 (Major Langford) <br />Olaf Hytten, 2nd of 6 (Capt. MacIntosh) <br />Gavin Muir, 3rd of 4 (Phillip Musgrave) <br />Frederick Worlock, 2nd of 6 (Geoffrey Musgrave)</p>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Sherlock Holmes Faces Death (1943)','','inherit','closed','closed','','365-revision-v1','','','2019-07-30 21:14:19','2019-07-30 21:14:19','',365,'http://itcamefrombeyondpulp.com/uncategorized/365-revision-v1/',0,'revision','',0),(368,1,'2019-07-30 21:16:02','2019-07-30 21:16:02','[et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" custom_padding=\"0px|||||\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" custom_margin=\"||11px|||\" next_background_color=\"#000000\" global_module=\"74\"][et_pb_row global_parent=\"74\" custom_padding=\"0px||0px|||\" custom_margin=\"|auto|-66px|auto||\" _builder_version=\"3.26.3\"][et_pb_column type=\"4_4\" global_parent=\"74\" _builder_version=\"3.26.3\"][et_pb_image global_parent=\"74\" src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/header.jpg\" url=\"http://itcamefrombeyondpulp.com\" _builder_version=\"3.26.3\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.26.3\" width=\"1080px\" width_tablet=\"100%\" width_last_edited=\"on|phone\" module_alignment=\"center\" inner_module_alignment=\"center\" custom_padding=\"0px||0px||false|false\" z_index_tablet=\"500\" hover_enabled=\"0\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" prev_background_color=\"#000000\" next_background_color=\"#e02b20\" global_module=\"175\"][et_pb_fullwidth_menu global_parent=\"175\" menu_id=\"2\" submenu_direction=\"downwards\" fullwidth_menu=\"off\" dropdown_menu_text_color=\"#ffffff\" _builder_version=\"3.26.3\" menu_font=\"|800||on|||||\" menu_text_color=\"#ffffff\" menu_font_size=\"22px\" menu_letter_spacing=\"5px\" background_color=\"#e02b20\" border_width_bottom=\"5px\" text_orientation=\"center\" background_layout=\"dark\" custom_margin=\"0px||||false|false\" custom_padding=\"1px||0px||false|false\" z_index_tablet=\"500\" menu_text_shadow_horizontal_length_tablet=\"0px\" menu_text_shadow_vertical_length_tablet=\"0px\" menu_text_shadow_blur_strength_tablet=\"1px\" border_width_bottom_tablet=\"5px\" border_width_bottom_phone=\"5px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" /][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" background_color=\"#e02b20\" width=\"1080px\" module_alignment=\"center\" custom_padding=\"10px||0px|||\" prev_background_color=\"#ffffff\"][et_pb_row _builder_version=\"3.26.3\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" background_color=\"#ffffff\" custom_padding=\"10px|10px||10px|false|false\" border_width_bottom=\"5px\" border_color_bottom=\"#e02b20\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image _builder_version=\"3.26.3\" src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/faces-death.jpg\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\" /][et_pb_text _builder_version=\"3.26.3\" z_index_tablet=\"500\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" text_text_shadow_horizontal_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_vertical_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_blur_strength=\"text_text_shadow_style,%91object Object%93\" link_text_shadow_horizontal_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_vertical_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_blur_strength=\"link_text_shadow_style,%91object Object%93\" ul_text_shadow_horizontal_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_vertical_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_blur_strength=\"ul_text_shadow_style,%91object Object%93\" ol_text_shadow_horizontal_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_vertical_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_blur_strength=\"ol_text_shadow_style,%91object Object%93\" quote_text_shadow_horizontal_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_vertical_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_blur_strength=\"quote_text_shadow_style,%91object Object%93\" header_text_shadow_horizontal_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_vertical_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_blur_strength=\"header_text_shadow_style,%91object Object%93\" header_2_text_shadow_horizontal_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_vertical_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_blur_strength=\"header_2_text_shadow_style,%91object Object%93\" header_3_text_shadow_horizontal_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_vertical_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_blur_strength=\"header_3_text_shadow_style,%91object Object%93\" header_4_text_shadow_horizontal_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_vertical_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_blur_strength=\"header_4_text_shadow_style,%91object Object%93\" header_5_text_shadow_horizontal_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_vertical_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_blur_strength=\"header_5_text_shadow_style,%91object Object%93\" header_6_text_shadow_horizontal_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_vertical_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_blur_strength=\"header_6_text_shadow_style,%91object Object%93\"]\n\n<h3 style=\"text-align: center;\"><strong><em>Sherlock Holmes Faces Death</em> (Roy William Neill, 1943, 68 min.)</strong></h3>\n<p>If you see the title of this film and think, \"What\'s new?\" you\'re both right and wrong. Sure, the brilliant Holmes (Basil Rathbone) faces death in every adventure, especially in the modernized series of Universal films where he faces off against Nazis and spies. But there is a newness to this installment—even though that newness is a return to an older mode, so perhaps I\'ve just talked myself into a corner. Although this film, like the three before it, places Holmes and his trusty friend Watson (Nigel Bruce) in Word War II–era England, for the first time since Universal took over the series they\'re up against good, old-fashioned murderers. Sir Arthur Conan Doyle would have been pleased.</p>\n<p>This film, which is actually based on an original Holmes story by Doyle, \"The Musgrave Ritual,\" has our heroes investigating an apparently cursed family. While Watson is helping out at Musgrave Manor, which is serving as a convalescent home for shell-shocked officers, his young assistant, Dr. Sexton (Arthur Margetson), is attacked and nearly killed. Watson heads for London to bring Holmes back with him, but it\'s too late: upon their return, they find the head of the household, Geoffrey Musgrave (Frederick Worlock), dead. The lead suspect is an American airman, Vickery (Milburn Stone), who is in love with Musgrave\'s younger sister Sally (Hillary Brooke) and planned to marry her against Geoffrey\'s wishes. The always-befuddled Inspector Lestrade (Dennis Hoey) quickly arrests him, but Holmes isn\'t convinced.</p>\n<p>Suspects abound: there\'s the angry, drunken, eavesdropping manservant Brunton (Halliwell Hobbes); his secret wife Mrs. Howells (Minna Phillips); Musgrave\'s cocky younger brother Phillip (Gavin Muir); and several of the convalescing soldiers, all of whom act suspiciously. The great fun in this film is watching as all of the red herrings develop, and attempting to read Rathbone\'s face for clues as to whom he believes and whom he suspects. Watson manages to be something more than comic relief, although he does provide plenty of that. More annoying is Lestrade, who is a long way from London and who is present only to act like an idiot.</p>\n<p>There are welcome elements of the supernatural that were missing from the first three Universal outings: a clock that strikes thirteen just before someone dies, an ancient family ritual that speaks of murder, a raven that can say the word \"blood,\" and a catacomb of hidden passages through the ancient house. The only real problem with the film is that it takes a while to get going; almost the first half-hour is spent shoveling in backstory and introducing the bevy of characters. Once the fireworks start, though, it\'s nonstop action and suspense, with a particularly ingenious ending that pits Holmes against the killer\'s ego.</p>\n<p>Rathbone and Bruce are great, as always. Director Roy William Neill, helming his third of eleven Holmes films, flounders a bit at first, but when he\'s on, he\'s a master of efficient action and suspense. Screenwriter Bertram Millhauser, writing his second of four films in the series, likely can\'t be blamed for the awkward and chatty first half of the film, since he provided the backstory in as efficient a manner as possible. Watch for future Rat Pack member Peter Lawford as a sailor in the bar at the beginning of the film.</p>\n<p><b>Baker Street Regulars</b> (actors who appeared in more than two films in the series as different characters):</p>\n<p>Hillary Brooke, 2nd of 3 appearances (as Sally Musgrave) <br />Harold De Becker, 2nd of 4 (Pub Proprietor) <br />Gerald Hamer, 2nd of 5 (Major Langford) <br />Olaf Hytten, 2nd of 6 (Capt. MacIntosh) <br />Gavin Muir, 3rd of 4 (Phillip Musgrave) <br />Frederick Worlock, 2nd of 6 (Geoffrey Musgrave)</p>\n\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Sherlock Holmes Faces Death (1943)','','inherit','closed','closed','','365-autosave-v1','','','2019-07-30 21:16:02','2019-07-30 21:16:02','',365,'http://itcamefrombeyondpulp.com/uncategorized/365-autosave-v1/',0,'revision','',0),(369,1,'2019-07-30 21:20:44','2019-07-30 21:20:44','[et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" custom_padding=\"0px|||||\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" custom_margin=\"||11px|||\" next_background_color=\"#000000\" global_module=\"74\"][et_pb_row global_parent=\"74\" custom_padding=\"0px||0px|||\" custom_margin=\"|auto|-66px|auto||\" _builder_version=\"3.26.3\"][et_pb_column type=\"4_4\" global_parent=\"74\" _builder_version=\"3.26.3\"][et_pb_image global_parent=\"74\" src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/header.jpg\" url=\"http://itcamefrombeyondpulp.com\" _builder_version=\"3.26.3\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.26.3\" width=\"1080px\" width_tablet=\"100%\" width_last_edited=\"on|phone\" module_alignment=\"center\" inner_module_alignment=\"center\" custom_padding=\"0px||0px||false|false\" z_index_tablet=\"500\" hover_enabled=\"0\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" prev_background_color=\"#000000\" next_background_color=\"#e02b20\" global_module=\"175\"][et_pb_fullwidth_menu global_parent=\"175\" menu_id=\"2\" submenu_direction=\"downwards\" fullwidth_menu=\"off\" dropdown_menu_text_color=\"#ffffff\" _builder_version=\"3.26.3\" menu_font=\"|800||on|||||\" menu_text_color=\"#ffffff\" menu_font_size=\"22px\" menu_letter_spacing=\"5px\" background_color=\"#e02b20\" border_width_bottom=\"5px\" text_orientation=\"center\" background_layout=\"dark\" custom_margin=\"0px||||false|false\" custom_padding=\"1px||0px||false|false\" z_index_tablet=\"500\" menu_text_shadow_horizontal_length_tablet=\"0px\" menu_text_shadow_vertical_length_tablet=\"0px\" menu_text_shadow_blur_strength_tablet=\"1px\" border_width_bottom_tablet=\"5px\" border_width_bottom_phone=\"5px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" /][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" background_color=\"#e02b20\" width=\"1080px\" module_alignment=\"center\" custom_padding=\"10px||0px|||\" prev_background_color=\"#ffffff\"][et_pb_row _builder_version=\"3.26.3\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" background_color=\"#ffffff\" custom_padding=\"10px|10px||10px|false|false\" border_width_bottom=\"5px\" border_color_bottom=\"#e02b20\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image _builder_version=\"3.26.3\" src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/washington.jpg\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\" /][et_pb_text _builder_version=\"3.26.3\" z_index_tablet=\"500\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" text_text_shadow_horizontal_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_vertical_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_blur_strength=\"text_text_shadow_style,%91object Object%93\" link_text_shadow_horizontal_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_vertical_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_blur_strength=\"link_text_shadow_style,%91object Object%93\" ul_text_shadow_horizontal_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_vertical_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_blur_strength=\"ul_text_shadow_style,%91object Object%93\" ol_text_shadow_horizontal_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_vertical_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_blur_strength=\"ol_text_shadow_style,%91object Object%93\" quote_text_shadow_horizontal_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_vertical_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_blur_strength=\"quote_text_shadow_style,%91object Object%93\" header_text_shadow_horizontal_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_vertical_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_blur_strength=\"header_text_shadow_style,%91object Object%93\" header_2_text_shadow_horizontal_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_vertical_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_blur_strength=\"header_2_text_shadow_style,%91object Object%93\" header_3_text_shadow_horizontal_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_vertical_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_blur_strength=\"header_3_text_shadow_style,%91object Object%93\" header_4_text_shadow_horizontal_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_vertical_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_blur_strength=\"header_4_text_shadow_style,%91object Object%93\" header_5_text_shadow_horizontal_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_vertical_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_blur_strength=\"header_5_text_shadow_style,%91object Object%93\" header_6_text_shadow_horizontal_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_vertical_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_blur_strength=\"header_6_text_shadow_style,%91object Object%93\"]\r\n\r\n<h3 style=\"text-align: center;\"><strong><em>Sherlock Holmes in Washington</em> (Roy William Neill, 1943, 71 min.)</strong></h3><p>Once you get over the studied weirdness of seeing Holmes and Watson running around in modern dress, riding in cars, and dealing with World War II issues, these films settle down into an enjoyable, if never groundbreaking, series of entertainments. Sometimes repetition in film can be annoying, and sometimes it can be comforting. I\'m sure by the end of this fourteen-film series, hearing Holmes say \"It\'s elementary, my dear Watson\" or \"Watson is the very soul of discretion\" might get tiring, as might hearing Watson say \"It\'s clear as mud to me.\" But at this point, after seeing only three of the films, it\'s still charming, like a comfortable pair of well-worn slippers.</p><p>This film is a marked improvement over the first Universal, modernized film, <em>Sherlock Holmes and the Voice of Terror</em>. This is the fifth film in the series, and the third since the transplant to the 20th century. It again features the timeless duo of Basil Rathbone as Holmes and Nigel Bruce as his dedicated, if ever-more-daft, assistant Watson. It\'s a fun movie, with a clever premise and the usual dependable performances by Rathbone and Bruce, and it works because it feels more decidedly like one of Arthur Conan Doyle\'s short stories: it\'s focused, and it all ties up rather neatly.</p><p>War is afoot, and the British government must get a secret document to the Americans. The bad guys know that someone on a British military flight to the United States is carrying the document, but they don\'t know who. Among the suspects are Sir Henry (Gilbert Emery) and John Grayson (Gerald Hamer). When the flight lands in New York, the passengers enter a train car bound for Washington, and the bad guys have them trapped, if only they can figure out who has the document. They decide it must be Grayson after a Holmes-worthy bout of deductive reasoning, and they arrange a daring kidnapping. But Grayson got rid of the document somehow, and the bad guys must track it down. Possible recipients include the bellicose Senator Babcock (Thurston Hall), mouse woman Mrs. Pringle (Margaret Seddon), and the beautiful young Nancy Partridge (Marjorie Lord).</p><p>When Grayson turns up missing, the British Home Office calls on Holmes (and, of course, Watson). Tickled at the prospect of going to the States, Watson amusingly embarks on a quest to learn local customs, leading to some funny scenes where he attempts to use American slang—scenes that reminded me, with good reason, of <em>Star Trek IV: The Voyage Home</em>. Holmes isn\'t as interested in the setting, of course: he wants to know everything there is to know about Grayson, who turns out to have been a secret agent named Pettibone. He discovers that Pettibone made microfilms of the documents and hid them in a matchbook. The pair set off on a bomber to America, hoping to find that matchbook before the bad guys figure out how and where the documents were hidden.</p><p>Meanwhile, the bad guys, led by criminal mastermind George Stanley (George Zucco), a former German agent, have been robbing and ransacking the homes of the people who were on that train car. I was a little disappointed to learn that Zucco, who played Moriarty in <em>The Adventures of Sherlock Holmes</em>, played a different character here. I\'d have loved to see the two face off in modern times (something that happened the year before in <i>The Secret Weapon</i>, which I haven\'t seen yet). However, I have to admit that Zucco makes a better American criminal in disguise as an antiques dealer than he did as Holmes\'s arch-nemesis. After Stanley\'s thugs kidnap Nancy Partridge—who, unknown to her, has the matchbook, which Grayson dropped in her purse before being kidnapped—Holmes must use his super-deduction to track the gang down and save both Partridge and the microfilm.</p><p>There are signs that the filmmakers were starting to realize that the iconic scenes in which Holmes deduces the entire history of a subject or item from a cursory glance with a magnifying glass were becoming a little silly, and they wisely played up the one here. After complimenting the American investigators on their high-tech methods, he uses his trusty glass to examine a blanket and figures out the entire mystery. The highlight of the film is a dazzling dinner party where the diners trade off the pack of matches as the camera struggles to keep up. It goes from good guy to bad guy and back, even resting for a moment in the hands of the man who was intended to receive it, until it ends up back in Partridge\'s purse just before she\'s kidnapped. It was an almost Hitchcockian display of cinematic virtuosity, and director Roy William Neill (who directed eleven films in the series before dying immediately after the last one was released) keeps up the tension as the matchbook winds up in Stanley\'s possession without his knowledge of its contents. Lynn Riggs, who wrote the deficient <i>Voice of Terror</i>, and Bertram Millhauser, who would go on to write three more Holmes films, keep things moving with deftly paced scenes and snappy dialog. There\'s not a wasted moment in the film, from the nail-biter of an opening to the satisfying closing battle of brains between Holmes and Stanley. Any guesses who wins?</p><p><b>Baker Street Regulars</b> (actors who appeared in more than two films in the series as different characters):</p><p>John Burton, 2nd of 4 appearances (as Army Inspector) <br />Henry Daniell, 2nd of 3 (William Easter) <br />Leslie Denison, 3rd of 6 (Transport Pilot) <br />Mary Forbes, 2nd of 3 (Mother Pettibone) <br />Gerald Hamer, 1st of 5 (Alfred Pettibone, alias John Grayson) <br />Holmes Herbert, 3rd of 6 (Mr. Ahrens) <br />Leyland Hodgson, 3rd of 7 (Airport Official) <br />Gavin Muir, 2nd of 4 (Mr. Lang, government agent) <br />Frederick Worlock, 1st of 6 (Radio announcer)</p>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Sherlock Holmes in Washington (1943)','','publish','closed','closed','','sherlock-holmes-in-washington-1943','','','2019-07-30 21:20:44','2019-07-30 21:20:44','',0,'http://itcamefrombeyondpulp.com/?p=369',0,'post','',0),(370,1,'2019-07-30 21:20:22','2019-07-30 21:20:22','','washington','','inherit','closed','closed','','washington','','','2019-07-30 21:20:22','2019-07-30 21:20:22','',369,'http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/washington.jpg',0,'attachment','image/jpeg',0),(371,1,'2019-07-30 21:20:44','2019-07-30 21:20:44','[et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" custom_padding=\"0px|||||\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" custom_margin=\"||11px|||\" next_background_color=\"#000000\" global_module=\"74\"][et_pb_row global_parent=\"74\" custom_padding=\"0px||0px|||\" custom_margin=\"|auto|-66px|auto||\" _builder_version=\"3.26.3\"][et_pb_column type=\"4_4\" global_parent=\"74\" _builder_version=\"3.26.3\"][et_pb_image global_parent=\"74\" src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/header.jpg\" url=\"http://itcamefrombeyondpulp.com\" _builder_version=\"3.26.3\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.26.3\" width=\"1080px\" width_tablet=\"100%\" width_last_edited=\"on|phone\" module_alignment=\"center\" inner_module_alignment=\"center\" custom_padding=\"0px||0px||false|false\" z_index_tablet=\"500\" hover_enabled=\"0\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" prev_background_color=\"#000000\" next_background_color=\"#e02b20\" global_module=\"175\"][et_pb_fullwidth_menu global_parent=\"175\" menu_id=\"2\" submenu_direction=\"downwards\" fullwidth_menu=\"off\" dropdown_menu_text_color=\"#ffffff\" _builder_version=\"3.26.3\" menu_font=\"|800||on|||||\" menu_text_color=\"#ffffff\" menu_font_size=\"22px\" menu_letter_spacing=\"5px\" background_color=\"#e02b20\" border_width_bottom=\"5px\" text_orientation=\"center\" background_layout=\"dark\" custom_margin=\"0px||||false|false\" custom_padding=\"1px||0px||false|false\" z_index_tablet=\"500\" menu_text_shadow_horizontal_length_tablet=\"0px\" menu_text_shadow_vertical_length_tablet=\"0px\" menu_text_shadow_blur_strength_tablet=\"1px\" border_width_bottom_tablet=\"5px\" border_width_bottom_phone=\"5px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" /][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" background_color=\"#e02b20\" width=\"1080px\" module_alignment=\"center\" custom_padding=\"10px||0px|||\" prev_background_color=\"#ffffff\"][et_pb_row _builder_version=\"3.26.3\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" background_color=\"#ffffff\" custom_padding=\"10px|10px||10px|false|false\" border_width_bottom=\"5px\" border_color_bottom=\"#e02b20\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image _builder_version=\"3.26.3\" src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/washington.jpg\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\" /][et_pb_text _builder_version=\"3.26.3\" z_index_tablet=\"500\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" text_text_shadow_horizontal_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_vertical_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_blur_strength=\"text_text_shadow_style,%91object Object%93\" link_text_shadow_horizontal_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_vertical_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_blur_strength=\"link_text_shadow_style,%91object Object%93\" ul_text_shadow_horizontal_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_vertical_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_blur_strength=\"ul_text_shadow_style,%91object Object%93\" ol_text_shadow_horizontal_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_vertical_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_blur_strength=\"ol_text_shadow_style,%91object Object%93\" quote_text_shadow_horizontal_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_vertical_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_blur_strength=\"quote_text_shadow_style,%91object Object%93\" header_text_shadow_horizontal_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_vertical_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_blur_strength=\"header_text_shadow_style,%91object Object%93\" header_2_text_shadow_horizontal_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_vertical_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_blur_strength=\"header_2_text_shadow_style,%91object Object%93\" header_3_text_shadow_horizontal_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_vertical_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_blur_strength=\"header_3_text_shadow_style,%91object Object%93\" header_4_text_shadow_horizontal_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_vertical_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_blur_strength=\"header_4_text_shadow_style,%91object Object%93\" header_5_text_shadow_horizontal_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_vertical_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_blur_strength=\"header_5_text_shadow_style,%91object Object%93\" header_6_text_shadow_horizontal_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_vertical_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_blur_strength=\"header_6_text_shadow_style,%91object Object%93\"]\r\n\r\n<h3 style=\"text-align: center;\"><strong><em>Sherlock Holmes in Washington</em> (Roy William Neill, 1943, 71 min.)</strong></h3><p>Once you get over the studied weirdness of seeing Holmes and Watson running around in modern dress, riding in cars, and dealing with World War II issues, these films settle down into an enjoyable, if never groundbreaking, series of entertainments. Sometimes repetition in film can be annoying, and sometimes it can be comforting. I\'m sure by the end of this fourteen-film series, hearing Holmes say \"It\'s elementary, my dear Watson\" or \"Watson is the very soul of discretion\" might get tiring, as might hearing Watson say \"It\'s clear as mud to me.\" But at this point, after seeing only three of the films, it\'s still charming, like a comfortable pair of well-worn slippers.</p><p>This film is a marked improvement over the first Universal, modernized film, <em>Sherlock Holmes and the Voice of Terror</em>. This is the fifth film in the series, and the third since the transplant to the 20th century. It again features the timeless duo of Basil Rathbone as Holmes and Nigel Bruce as his dedicated, if ever-more-daft, assistant Watson. It\'s a fun movie, with a clever premise and the usual dependable performances by Rathbone and Bruce, and it works because it feels more decidedly like one of Arthur Conan Doyle\'s short stories: it\'s focused, and it all ties up rather neatly.</p><p>War is afoot, and the British government must get a secret document to the Americans. The bad guys know that someone on a British military flight to the United States is carrying the document, but they don\'t know who. Among the suspects are Sir Henry (Gilbert Emery) and John Grayson (Gerald Hamer). When the flight lands in New York, the passengers enter a train car bound for Washington, and the bad guys have them trapped, if only they can figure out who has the document. They decide it must be Grayson after a Holmes-worthy bout of deductive reasoning, and they arrange a daring kidnapping. But Grayson got rid of the document somehow, and the bad guys must track it down. Possible recipients include the bellicose Senator Babcock (Thurston Hall), mouse woman Mrs. Pringle (Margaret Seddon), and the beautiful young Nancy Partridge (Marjorie Lord).</p><p>When Grayson turns up missing, the British Home Office calls on Holmes (and, of course, Watson). Tickled at the prospect of going to the States, Watson amusingly embarks on a quest to learn local customs, leading to some funny scenes where he attempts to use American slang—scenes that reminded me, with good reason, of <em>Star Trek IV: The Voyage Home</em>. Holmes isn\'t as interested in the setting, of course: he wants to know everything there is to know about Grayson, who turns out to have been a secret agent named Pettibone. He discovers that Pettibone made microfilms of the documents and hid them in a matchbook. The pair set off on a bomber to America, hoping to find that matchbook before the bad guys figure out how and where the documents were hidden.</p><p>Meanwhile, the bad guys, led by criminal mastermind George Stanley (George Zucco), a former German agent, have been robbing and ransacking the homes of the people who were on that train car. I was a little disappointed to learn that Zucco, who played Moriarty in <em>The Adventures of Sherlock Holmes</em>, played a different character here. I\'d have loved to see the two face off in modern times (something that happened the year before in <i>The Secret Weapon</i>, which I haven\'t seen yet). However, I have to admit that Zucco makes a better American criminal in disguise as an antiques dealer than he did as Holmes\'s arch-nemesis. After Stanley\'s thugs kidnap Nancy Partridge—who, unknown to her, has the matchbook, which Grayson dropped in her purse before being kidnapped—Holmes must use his super-deduction to track the gang down and save both Partridge and the microfilm.</p><p>There are signs that the filmmakers were starting to realize that the iconic scenes in which Holmes deduces the entire history of a subject or item from a cursory glance with a magnifying glass were becoming a little silly, and they wisely played up the one here. After complimenting the American investigators on their high-tech methods, he uses his trusty glass to examine a blanket and figures out the entire mystery. The highlight of the film is a dazzling dinner party where the diners trade off the pack of matches as the camera struggles to keep up. It goes from good guy to bad guy and back, even resting for a moment in the hands of the man who was intended to receive it, until it ends up back in Partridge\'s purse just before she\'s kidnapped. It was an almost Hitchcockian display of cinematic virtuosity, and director Roy William Neill (who directed eleven films in the series before dying immediately after the last one was released) keeps up the tension as the matchbook winds up in Stanley\'s possession without his knowledge of its contents. Lynn Riggs, who wrote the deficient <i>Voice of Terror</i>, and Bertram Millhauser, who would go on to write three more Holmes films, keep things moving with deftly paced scenes and snappy dialog. There\'s not a wasted moment in the film, from the nail-biter of an opening to the satisfying closing battle of brains between Holmes and Stanley. Any guesses who wins?</p><p><b>Baker Street Regulars</b> (actors who appeared in more than two films in the series as different characters):</p><p>John Burton, 2nd of 4 appearances (as Army Inspector) <br />Henry Daniell, 2nd of 3 (William Easter) <br />Leslie Denison, 3rd of 6 (Transport Pilot) <br />Mary Forbes, 2nd of 3 (Mother Pettibone) <br />Gerald Hamer, 1st of 5 (Alfred Pettibone, alias John Grayson) <br />Holmes Herbert, 3rd of 6 (Mr. Ahrens) <br />Leyland Hodgson, 3rd of 7 (Airport Official) <br />Gavin Muir, 2nd of 4 (Mr. Lang, government agent) <br />Frederick Worlock, 1st of 6 (Radio announcer)</p>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Sherlock Holmes in Washington (1943)','','inherit','closed','closed','','369-revision-v1','','','2019-07-30 21:20:44','2019-07-30 21:20:44','',369,'http://itcamefrombeyondpulp.com/uncategorized/369-revision-v1/',0,'revision','',0),(372,1,'2019-07-30 21:21:45','2019-07-30 21:21:45','[et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" custom_padding=\"0px|||||\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" custom_margin=\"||11px|||\" next_background_color=\"#000000\" global_module=\"74\"][et_pb_row global_parent=\"74\" custom_padding=\"0px||0px|||\" custom_margin=\"|auto|-66px|auto||\" _builder_version=\"3.26.3\"][et_pb_column type=\"4_4\" global_parent=\"74\" _builder_version=\"3.26.3\"][et_pb_image global_parent=\"74\" src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/header.jpg\" url=\"http://itcamefrombeyondpulp.com\" _builder_version=\"3.26.3\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.26.3\" width=\"1080px\" width_tablet=\"100%\" width_last_edited=\"on|phone\" module_alignment=\"center\" inner_module_alignment=\"center\" custom_padding=\"0px||0px||false|false\" z_index_tablet=\"500\" hover_enabled=\"0\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" prev_background_color=\"#000000\" next_background_color=\"#e02b20\" global_module=\"175\"][et_pb_fullwidth_menu global_parent=\"175\" menu_id=\"2\" submenu_direction=\"downwards\" fullwidth_menu=\"off\" dropdown_menu_text_color=\"#ffffff\" _builder_version=\"3.26.3\" menu_font=\"|800||on|||||\" menu_text_color=\"#ffffff\" menu_font_size=\"22px\" menu_letter_spacing=\"5px\" background_color=\"#e02b20\" border_width_bottom=\"5px\" text_orientation=\"center\" background_layout=\"dark\" custom_margin=\"0px||||false|false\" custom_padding=\"1px||0px||false|false\" z_index_tablet=\"500\" menu_text_shadow_horizontal_length_tablet=\"0px\" menu_text_shadow_vertical_length_tablet=\"0px\" menu_text_shadow_blur_strength_tablet=\"1px\" border_width_bottom_tablet=\"5px\" border_width_bottom_phone=\"5px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" /][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" background_color=\"#e02b20\" width=\"1080px\" module_alignment=\"center\" custom_padding=\"10px||0px|||\" prev_background_color=\"#ffffff\"][et_pb_row _builder_version=\"3.26.3\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" background_color=\"#ffffff\" custom_padding=\"10px|10px||10px|false|false\" border_width_bottom=\"5px\" border_color_bottom=\"#e02b20\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image _builder_version=\"3.26.3\" src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/washington.jpg\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\" /][et_pb_text _builder_version=\"3.26.3\" z_index_tablet=\"500\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" text_text_shadow_horizontal_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_vertical_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_blur_strength=\"text_text_shadow_style,%91object Object%93\" link_text_shadow_horizontal_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_vertical_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_blur_strength=\"link_text_shadow_style,%91object Object%93\" ul_text_shadow_horizontal_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_vertical_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_blur_strength=\"ul_text_shadow_style,%91object Object%93\" ol_text_shadow_horizontal_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_vertical_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_blur_strength=\"ol_text_shadow_style,%91object Object%93\" quote_text_shadow_horizontal_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_vertical_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_blur_strength=\"quote_text_shadow_style,%91object Object%93\" header_text_shadow_horizontal_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_vertical_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_blur_strength=\"header_text_shadow_style,%91object Object%93\" header_2_text_shadow_horizontal_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_vertical_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_blur_strength=\"header_2_text_shadow_style,%91object Object%93\" header_3_text_shadow_horizontal_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_vertical_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_blur_strength=\"header_3_text_shadow_style,%91object Object%93\" header_4_text_shadow_horizontal_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_vertical_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_blur_strength=\"header_4_text_shadow_style,%91object Object%93\" header_5_text_shadow_horizontal_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_vertical_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_blur_strength=\"header_5_text_shadow_style,%91object Object%93\" header_6_text_shadow_horizontal_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_vertical_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_blur_strength=\"header_6_text_shadow_style,%91object Object%93\"]\n\n<h3 style=\"text-align: center;\"><strong><em>Sherlock Holmes in Washington</em> (Roy William Neill, 1943, 71 min.)</strong></h3>\n<p>Once you get over the studied weirdness of seeing Holmes and Watson running around in modern dress, riding in cars, and dealing with World War II issues, these films settle down into an enjoyable, if never groundbreaking, series of entertainments. Sometimes repetition in film can be annoying, and sometimes it can be comforting. I\'m sure by the end of this fourteen-film series, hearing Holmes say \"It\'s elementary, my dear Watson\" or \"Watson is the very soul of discretion\" might get tiring, as might hearing Watson say \"It\'s clear as mud to me.\" But at this point, after seeing only three of the films, it\'s still charming, like a comfortable pair of well-worn slippers.</p>\n<p>This film is a marked improvement over the first Universal, modernized film, <em>Sherlock Holmes and the Voice of Terror</em>. This is the fifth film in the series, and the third since the transplant to the 20th century. It again features the timeless duo of Basil Rathbone as Holmes and Nigel Bruce as his dedicated, if ever-more-daft, assistant Watson. It\'s a fun movie, with a clever premise and the usual dependable performances by Rathbone and Bruce, and it works because it feels more decidedly like one of Arthur Conan Doyle\'s short stories: it\'s focused, and it all ties up rather neatly.</p>\n<p>War is afoot, and the British government must get a secret document to the Americans. The bad guys know that someone on a British military flight to the United States is carrying the document, but they don\'t know who. Among the suspects are Sir Henry (Gilbert Emery) and John Grayson (Gerald Hamer). When the flight lands in New York, the passengers enter a train car bound for Washington, and the bad guys have them trapped, if only they can figure out who has the document. They decide it must be Grayson after a Holmes-worthy bout of deductive reasoning, and they arrange a daring kidnapping. But Grayson got rid of the document somehow, and the bad guys must track it down. Possible recipients include the bellicose Senator Babcock (Thurston Hall), mouse woman Mrs. Pringle (Margaret Seddon), and the beautiful young Nancy Partridge (Marjorie Lord).</p>\n<p>When Grayson turns up missing, the British Home Office calls on Holmes (and, of course, Watson). Tickled at the prospect of going to the States, Watson amusingly embarks on a quest to learn local customs, leading to some funny scenes where he attempts to use American slang—scenes that reminded me, with good reason, of <em>Star Trek IV: The Voyage Home</em>. Holmes isn\'t as interested in the setting, of course: he wants to know everything there is to know about Grayson, who turns out to have been a secret agent named Pettibone. He discovers that Pettibone made microfilms of the documents and hid them in a matchbook. The pair set off on a bomber to America, hoping to find that matchbook before the bad guys figure out how and where the documents were hidden.</p>\n<p>Meanwhile, the bad guys, led by criminal mastermind George Stanley (George Zucco), a former German agent, have been robbing and ransacking the homes of the people who were on that train car. I was a little disappointed to learn that Zucco, who played Moriarty in <em>The Adventures of Sherlock Holmes</em>, played a different character here. I\'d have loved to see the two face off in modern times (something that happened the year before in <i>The Secret Weapon</i>, which I haven\'t seen yet). However, I have to admit that Zucco makes a better American criminal in disguise as an antiques dealer than he did as Holmes\'s arch-nemesis. After Stanley\'s thugs kidnap Nancy Partridge—who, unknown to her, has the matchbook, which Grayson dropped in her purse before being kidnapped—Holmes must use his super-deduction to track the gang down and save both Partridge and the microfilm.</p>\n<p>There are signs that the filmmakers were starting to realize that the iconic scenes in which Holmes deduces the entire history of a subject or item from a cursory glance with a magnifying glass were becoming a little silly, and they wisely played up the one here. After complimenting the American investigators on their high-tech methods, he uses his trusty glass to examine a blanket and figures out the entire mystery. The highlight of the film is a dazzling dinner party where the diners trade off the pack of matches as the camera struggles to keep up. It goes from good guy to bad guy and back, even resting for a moment in the hands of the man who was intended to receive it, until it ends up back in Partridge\'s purse just before she\'s kidnapped. It was an almost Hitchcockian display of cinematic virtuosity, and director Roy William Neill (who directed eleven films in the series before dying immediately after the last one was released) keeps up the tension as the matchbook winds up in Stanley\'s possession without his knowledge of its contents. Lynn Riggs, who wrote the deficient <i>Voice of Terror</i>, and Bertram Millhauser, who would go on to write three more Holmes films, keep things moving with deftly paced scenes and snappy dialog. There\'s not a wasted moment in the film, from the nail-biter of an opening to the satisfying closing battle of brains between Holmes and Stanley. Any guesses who wins?</p>\n<p><b>Baker Street Regulars</b> (actors who appeared in more than two films in the series as different characters):</p>\n<p>John Burton, 2nd of 4 appearances (as Army Inspector) <br />Henry Daniell, 2nd of 3 (William Easter) <br />Leslie Denison, 3rd of 6 (Transport Pilot) <br />Mary Forbes, 2nd of 3 (Mother Pettibone) <br />Gerald Hamer, 1st of 5 (Alfred Pettibone, alias John Grayson) <br />Holmes Herbert, 3rd of 6 (Mr. Ahrens) <br />Leyland Hodgson, 3rd of 7 (Airport Official) <br />Gavin Muir, 2nd of 4 (Mr. Lang, government agent) <br />Frederick Worlock, 1st of 6 (Radio announcer)</p>\n\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Sherlock Holmes in Washington (1943)','','inherit','closed','closed','','369-autosave-v1','','','2019-07-30 21:21:45','2019-07-30 21:21:45','',369,'http://itcamefrombeyondpulp.com/uncategorized/369-autosave-v1/',0,'revision','',0),(373,1,'2019-07-30 21:26:30','2019-07-30 21:26:30','[et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" custom_padding=\"0px|||||\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" custom_margin=\"||11px|||\" next_background_color=\"#000000\" global_module=\"74\"][et_pb_row global_parent=\"74\" custom_padding=\"0px||0px|||\" custom_margin=\"|auto|-66px|auto||\" _builder_version=\"3.26.3\"][et_pb_column type=\"4_4\" global_parent=\"74\" _builder_version=\"3.26.3\"][et_pb_image global_parent=\"74\" src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/header.jpg\" url=\"http://itcamefrombeyondpulp.com\" _builder_version=\"3.26.3\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.26.3\" width=\"1080px\" width_tablet=\"100%\" width_last_edited=\"on|phone\" module_alignment=\"center\" inner_module_alignment=\"center\" custom_padding=\"0px||0px||false|false\" z_index_tablet=\"500\" hover_enabled=\"0\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" prev_background_color=\"#000000\" next_background_color=\"#e02b20\" global_module=\"175\"][et_pb_fullwidth_menu global_parent=\"175\" menu_id=\"2\" submenu_direction=\"downwards\" fullwidth_menu=\"off\" dropdown_menu_text_color=\"#ffffff\" _builder_version=\"3.26.3\" menu_font=\"|800||on|||||\" menu_text_color=\"#ffffff\" menu_font_size=\"22px\" menu_letter_spacing=\"5px\" background_color=\"#e02b20\" border_width_bottom=\"5px\" text_orientation=\"center\" background_layout=\"dark\" custom_margin=\"0px||||false|false\" custom_padding=\"1px||0px||false|false\" z_index_tablet=\"500\" menu_text_shadow_horizontal_length_tablet=\"0px\" menu_text_shadow_vertical_length_tablet=\"0px\" menu_text_shadow_blur_strength_tablet=\"1px\" border_width_bottom_tablet=\"5px\" border_width_bottom_phone=\"5px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" /][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" background_color=\"#e02b20\" width=\"1080px\" module_alignment=\"center\" custom_padding=\"10px||0px|||\" prev_background_color=\"#ffffff\"][et_pb_row _builder_version=\"3.26.3\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" background_color=\"#ffffff\" custom_padding=\"10px|10px||10px|false|false\" border_width_bottom=\"5px\" border_color_bottom=\"#e02b20\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image _builder_version=\"3.26.3\" src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/spider-woman.jpg\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\" /][et_pb_text _builder_version=\"3.26.3\" z_index_tablet=\"500\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" text_text_shadow_horizontal_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_vertical_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_blur_strength=\"text_text_shadow_style,%91object Object%93\" link_text_shadow_horizontal_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_vertical_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_blur_strength=\"link_text_shadow_style,%91object Object%93\" ul_text_shadow_horizontal_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_vertical_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_blur_strength=\"ul_text_shadow_style,%91object Object%93\" ol_text_shadow_horizontal_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_vertical_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_blur_strength=\"ol_text_shadow_style,%91object Object%93\" quote_text_shadow_horizontal_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_vertical_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_blur_strength=\"quote_text_shadow_style,%91object Object%93\" header_text_shadow_horizontal_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_vertical_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_blur_strength=\"header_text_shadow_style,%91object Object%93\" header_2_text_shadow_horizontal_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_vertical_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_blur_strength=\"header_2_text_shadow_style,%91object Object%93\" header_3_text_shadow_horizontal_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_vertical_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_blur_strength=\"header_3_text_shadow_style,%91object Object%93\" header_4_text_shadow_horizontal_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_vertical_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_blur_strength=\"header_4_text_shadow_style,%91object Object%93\" header_5_text_shadow_horizontal_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_vertical_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_blur_strength=\"header_5_text_shadow_style,%91object Object%93\" header_6_text_shadow_horizontal_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_vertical_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_blur_strength=\"header_6_text_shadow_style,%91object Object%93\"]\r\n\r\n<h3 style=\"text-align: center;\"><strong><em>The Spider Woman</em> (Roy William Neill, 1944, 63 min.)</strong></h3><p>In this highly enjoyable seventh entry in the Basil Rathbone/Nigel Bruce series of Sherlock Holmes films, everyone\'s favorite detective faces his most challenging foe, and it\'s not Moriarty. London is being plagued by a rash of suicides of wealthy men; only the fact that they\'re all the same—the men throw themselves out of their windows—convinces Holmes that there\'s a murderer behind it. But he\'s done with all that: we join him on a fishing trip in Scotland, where he and Watson are attempting to get some relaxation in. Holmes confesses to dizzy spells and tells his faithful friend, \"I\'m sorry, Watson. The pleasures of the chase are no longer for me. I\'m through with crime forever.\" With that, he faints and tumbles to his death. Watson doesn\'t find his body, but his cap is floating in the river.</p><p>Which is decidedly odd to people who have read the original Sir Arthur Conan Doyle stories. This is the ending of \"The Final Problem,\" in which Doyle attempted to kill of his most famous creation, except for one decided difference: in the story, Moriarty tumbled off into the gorge with him. After I got over my confusion, I began to think that this is one of the most clever reimaginings of Doyle\'s stories to make it into this series of films. There\'s something roguish in Bertram Millhauser\'s reworking of the most dramatic moment in the entire Holmes canon; Millhauser wrote five of the films, and his efforts just happen to include the best of the modernized ones, including <em>Sherlock Holmes in Washington</em>, <em>The Woman in Green</em>, and this one. This film also borrows elements from \"The Sign of Four,\" which was the second Holmes story Doyle wrote.</p><p>Holmes returns from \"death\" soon enough, but he wants Watson to keep it a secret so that he can work on the mystery unnoticed. He quickly discovers the connection between the victims: they all lost large amounts of money gambling. Holmes enters the casino in one of the most tasteless and silly disguises that Rathbone was ever asked to wear: a wealthy Indian man, complete with dark shading in his skin, a pointy little beard, and a turban. It\'s no surprise that the woman behind the murders, Adrea Spedding (Gale Sondergaard), sees right through his disguise. This film features the best verbal parrying between Holmes and a nemesis: Spedding comes to visit Holmes after her minions fail to murder him, and the two have a conversation that is decidedly <i>not</i> about the fact that they\'re mortal enemies.</p><p>The villains in these films are a mixed bag. Although I love Moriarty from the stories, the various incarnations of Moriarty in the films tend to be disappointing, aside from Henry Daniell in <em>The Woman in Green</em>. Other films in the series have downright silly villains. Because of this, Gale Sondergaard is a delight to watch. She\'s one of the few bad guys who has seemed to be Holmes\'s match. In addition to being the deadliest opponent Holmes faced in any of the films, she\'s beautiful and cocky, with her perpetually arched eyebrows seeming to mock him. It\'s almost sad when she resorts to proto-James Bond theatrics in her final attempt to do away with him.</p><p>This is one of the best films in the series, ranked somewhere close behind <em>The Adventures of Sherlock Holmes</em>. Aside from Rathbone\'s bad makeup and a slightly disappointing ending, there are few flaws. Even the obligatory scene where poor Nigel Bruce has to act like a dunce was pretty funny—he mistakes a bearded Arthur Hohl for a disguised Holmes, and both actors play the scene well. It\'s also one of the most genuinely creepy films in the series, what with all the spiders. I don\'t like spiders.</p><p><b>Baker Street Regulars (actors who appeared in more than two films in the series as different characters):</b></p><p>Wilson Benge, 1st of 5 appearances (as unspecified clerk)<br />John Burton, 2nd of 4 (as announcer)<br />Harry Cording, 4th of 8 (as henchman on roof)<br />Arthur Hohl, 3rd of 3 (as Adam Gilflower)</p>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','The Spider Woman (1944)','','publish','closed','closed','','the-spider-woman-1944','','','2019-07-30 21:26:30','2019-07-30 21:26:30','',0,'http://itcamefrombeyondpulp.com/?p=373',0,'post','',0),(374,1,'2019-07-30 21:25:35','2019-07-30 21:25:35','','spider woman','','inherit','closed','closed','','spider-woman','','','2019-07-30 21:25:35','2019-07-30 21:25:35','',373,'http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/spider-woman.jpg',0,'attachment','image/jpeg',0),(375,1,'2019-07-30 21:26:30','2019-07-30 21:26:30','[et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" custom_padding=\"0px|||||\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" custom_margin=\"||11px|||\" next_background_color=\"#000000\" global_module=\"74\"][et_pb_row global_parent=\"74\" custom_padding=\"0px||0px|||\" custom_margin=\"|auto|-66px|auto||\" _builder_version=\"3.26.3\"][et_pb_column type=\"4_4\" global_parent=\"74\" _builder_version=\"3.26.3\"][et_pb_image global_parent=\"74\" src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/header.jpg\" url=\"http://itcamefrombeyondpulp.com\" _builder_version=\"3.26.3\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.26.3\" width=\"1080px\" width_tablet=\"100%\" width_last_edited=\"on|phone\" module_alignment=\"center\" inner_module_alignment=\"center\" custom_padding=\"0px||0px||false|false\" z_index_tablet=\"500\" hover_enabled=\"0\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" prev_background_color=\"#000000\" next_background_color=\"#e02b20\" global_module=\"175\"][et_pb_fullwidth_menu global_parent=\"175\" menu_id=\"2\" submenu_direction=\"downwards\" fullwidth_menu=\"off\" dropdown_menu_text_color=\"#ffffff\" _builder_version=\"3.26.3\" menu_font=\"|800||on|||||\" menu_text_color=\"#ffffff\" menu_font_size=\"22px\" menu_letter_spacing=\"5px\" background_color=\"#e02b20\" border_width_bottom=\"5px\" text_orientation=\"center\" background_layout=\"dark\" custom_margin=\"0px||||false|false\" custom_padding=\"1px||0px||false|false\" z_index_tablet=\"500\" menu_text_shadow_horizontal_length_tablet=\"0px\" menu_text_shadow_vertical_length_tablet=\"0px\" menu_text_shadow_blur_strength_tablet=\"1px\" border_width_bottom_tablet=\"5px\" border_width_bottom_phone=\"5px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" /][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" background_color=\"#e02b20\" width=\"1080px\" module_alignment=\"center\" custom_padding=\"10px||0px|||\" prev_background_color=\"#ffffff\"][et_pb_row _builder_version=\"3.26.3\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" background_color=\"#ffffff\" custom_padding=\"10px|10px||10px|false|false\" border_width_bottom=\"5px\" border_color_bottom=\"#e02b20\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image _builder_version=\"3.26.3\" src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/spider-woman.jpg\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\" /][et_pb_text _builder_version=\"3.26.3\" z_index_tablet=\"500\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" text_text_shadow_horizontal_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_vertical_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_blur_strength=\"text_text_shadow_style,%91object Object%93\" link_text_shadow_horizontal_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_vertical_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_blur_strength=\"link_text_shadow_style,%91object Object%93\" ul_text_shadow_horizontal_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_vertical_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_blur_strength=\"ul_text_shadow_style,%91object Object%93\" ol_text_shadow_horizontal_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_vertical_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_blur_strength=\"ol_text_shadow_style,%91object Object%93\" quote_text_shadow_horizontal_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_vertical_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_blur_strength=\"quote_text_shadow_style,%91object Object%93\" header_text_shadow_horizontal_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_vertical_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_blur_strength=\"header_text_shadow_style,%91object Object%93\" header_2_text_shadow_horizontal_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_vertical_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_blur_strength=\"header_2_text_shadow_style,%91object Object%93\" header_3_text_shadow_horizontal_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_vertical_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_blur_strength=\"header_3_text_shadow_style,%91object Object%93\" header_4_text_shadow_horizontal_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_vertical_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_blur_strength=\"header_4_text_shadow_style,%91object Object%93\" header_5_text_shadow_horizontal_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_vertical_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_blur_strength=\"header_5_text_shadow_style,%91object Object%93\" header_6_text_shadow_horizontal_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_vertical_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_blur_strength=\"header_6_text_shadow_style,%91object Object%93\"]\r\n\r\n<h3 style=\"text-align: center;\"><strong><em>The Spider Woman</em> (Roy William Neill, 1944, 63 min.)</strong></h3><p>In this highly enjoyable seventh entry in the Basil Rathbone/Nigel Bruce series of Sherlock Holmes films, everyone\'s favorite detective faces his most challenging foe, and it\'s not Moriarty. London is being plagued by a rash of suicides of wealthy men; only the fact that they\'re all the same—the men throw themselves out of their windows—convinces Holmes that there\'s a murderer behind it. But he\'s done with all that: we join him on a fishing trip in Scotland, where he and Watson are attempting to get some relaxation in. Holmes confesses to dizzy spells and tells his faithful friend, \"I\'m sorry, Watson. The pleasures of the chase are no longer for me. I\'m through with crime forever.\" With that, he faints and tumbles to his death. Watson doesn\'t find his body, but his cap is floating in the river.</p><p>Which is decidedly odd to people who have read the original Sir Arthur Conan Doyle stories. This is the ending of \"The Final Problem,\" in which Doyle attempted to kill of his most famous creation, except for one decided difference: in the story, Moriarty tumbled off into the gorge with him. After I got over my confusion, I began to think that this is one of the most clever reimaginings of Doyle\'s stories to make it into this series of films. There\'s something roguish in Bertram Millhauser\'s reworking of the most dramatic moment in the entire Holmes canon; Millhauser wrote five of the films, and his efforts just happen to include the best of the modernized ones, including <em>Sherlock Holmes in Washington</em>, <em>The Woman in Green</em>, and this one. This film also borrows elements from \"The Sign of Four,\" which was the second Holmes story Doyle wrote.</p><p>Holmes returns from \"death\" soon enough, but he wants Watson to keep it a secret so that he can work on the mystery unnoticed. He quickly discovers the connection between the victims: they all lost large amounts of money gambling. Holmes enters the casino in one of the most tasteless and silly disguises that Rathbone was ever asked to wear: a wealthy Indian man, complete with dark shading in his skin, a pointy little beard, and a turban. It\'s no surprise that the woman behind the murders, Adrea Spedding (Gale Sondergaard), sees right through his disguise. This film features the best verbal parrying between Holmes and a nemesis: Spedding comes to visit Holmes after her minions fail to murder him, and the two have a conversation that is decidedly <i>not</i> about the fact that they\'re mortal enemies.</p><p>The villains in these films are a mixed bag. Although I love Moriarty from the stories, the various incarnations of Moriarty in the films tend to be disappointing, aside from Henry Daniell in <em>The Woman in Green</em>. Other films in the series have downright silly villains. Because of this, Gale Sondergaard is a delight to watch. She\'s one of the few bad guys who has seemed to be Holmes\'s match. In addition to being the deadliest opponent Holmes faced in any of the films, she\'s beautiful and cocky, with her perpetually arched eyebrows seeming to mock him. It\'s almost sad when she resorts to proto-James Bond theatrics in her final attempt to do away with him.</p><p>This is one of the best films in the series, ranked somewhere close behind <em>The Adventures of Sherlock Holmes</em>. Aside from Rathbone\'s bad makeup and a slightly disappointing ending, there are few flaws. Even the obligatory scene where poor Nigel Bruce has to act like a dunce was pretty funny—he mistakes a bearded Arthur Hohl for a disguised Holmes, and both actors play the scene well. It\'s also one of the most genuinely creepy films in the series, what with all the spiders. I don\'t like spiders.</p><p><b>Baker Street Regulars (actors who appeared in more than two films in the series as different characters):</b></p><p>Wilson Benge, 1st of 5 appearances (as unspecified clerk)<br />John Burton, 2nd of 4 (as announcer)<br />Harry Cording, 4th of 8 (as henchman on roof)<br />Arthur Hohl, 3rd of 3 (as Adam Gilflower)</p>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','The Spider Woman (1944)','','inherit','closed','closed','','373-revision-v1','','','2019-07-30 21:26:30','2019-07-30 21:26:30','',373,'http://itcamefrombeyondpulp.com/uncategorized/373-revision-v1/',0,'revision','',0),(376,1,'2019-07-30 21:27:26','2019-07-30 21:27:26','[et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" custom_padding=\"0px|||||\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" custom_margin=\"||11px|||\" next_background_color=\"#000000\" global_module=\"74\"][et_pb_row global_parent=\"74\" custom_padding=\"0px||0px|||\" custom_margin=\"|auto|-66px|auto||\" _builder_version=\"3.26.3\"][et_pb_column type=\"4_4\" global_parent=\"74\" _builder_version=\"3.26.3\"][et_pb_image global_parent=\"74\" src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/header.jpg\" url=\"http://itcamefrombeyondpulp.com\" _builder_version=\"3.26.3\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.26.3\" width=\"1080px\" width_tablet=\"100%\" width_last_edited=\"on|phone\" module_alignment=\"center\" inner_module_alignment=\"center\" custom_padding=\"0px||0px||false|false\" z_index_tablet=\"500\" hover_enabled=\"0\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" prev_background_color=\"#000000\" next_background_color=\"#e02b20\" global_module=\"175\"][et_pb_fullwidth_menu global_parent=\"175\" menu_id=\"2\" submenu_direction=\"downwards\" fullwidth_menu=\"off\" dropdown_menu_text_color=\"#ffffff\" _builder_version=\"3.26.3\" menu_font=\"|800||on|||||\" menu_text_color=\"#ffffff\" menu_font_size=\"22px\" menu_letter_spacing=\"5px\" background_color=\"#e02b20\" border_width_bottom=\"5px\" text_orientation=\"center\" background_layout=\"dark\" custom_margin=\"0px||||false|false\" custom_padding=\"1px||0px||false|false\" z_index_tablet=\"500\" menu_text_shadow_horizontal_length_tablet=\"0px\" menu_text_shadow_vertical_length_tablet=\"0px\" menu_text_shadow_blur_strength_tablet=\"1px\" border_width_bottom_tablet=\"5px\" border_width_bottom_phone=\"5px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" /][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" background_color=\"#e02b20\" width=\"1080px\" module_alignment=\"center\" custom_padding=\"10px||0px|||\" prev_background_color=\"#ffffff\"][et_pb_row _builder_version=\"3.26.3\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" background_color=\"#ffffff\" custom_padding=\"10px|10px||10px|false|false\" border_width_bottom=\"5px\" border_color_bottom=\"#e02b20\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image _builder_version=\"3.26.3\" src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/spider-woman.jpg\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\" /][et_pb_text _builder_version=\"3.26.3\" z_index_tablet=\"500\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" text_text_shadow_horizontal_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_vertical_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_blur_strength=\"text_text_shadow_style,%91object Object%93\" link_text_shadow_horizontal_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_vertical_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_blur_strength=\"link_text_shadow_style,%91object Object%93\" ul_text_shadow_horizontal_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_vertical_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_blur_strength=\"ul_text_shadow_style,%91object Object%93\" ol_text_shadow_horizontal_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_vertical_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_blur_strength=\"ol_text_shadow_style,%91object Object%93\" quote_text_shadow_horizontal_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_vertical_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_blur_strength=\"quote_text_shadow_style,%91object Object%93\" header_text_shadow_horizontal_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_vertical_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_blur_strength=\"header_text_shadow_style,%91object Object%93\" header_2_text_shadow_horizontal_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_vertical_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_blur_strength=\"header_2_text_shadow_style,%91object Object%93\" header_3_text_shadow_horizontal_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_vertical_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_blur_strength=\"header_3_text_shadow_style,%91object Object%93\" header_4_text_shadow_horizontal_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_vertical_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_blur_strength=\"header_4_text_shadow_style,%91object Object%93\" header_5_text_shadow_horizontal_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_vertical_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_blur_strength=\"header_5_text_shadow_style,%91object Object%93\" header_6_text_shadow_horizontal_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_vertical_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_blur_strength=\"header_6_text_shadow_style,%91object Object%93\"]\n\n<h3 style=\"text-align: center;\"><strong><em>The Spider Woman</em> (Roy William Neill, 1944, 63 min.)</strong></h3>\n<p>In this highly enjoyable seventh entry in the Basil Rathbone/Nigel Bruce series of Sherlock Holmes films, everyone\'s favorite detective faces his most challenging foe, and it\'s not Moriarty. London is being plagued by a rash of suicides of wealthy men; only the fact that they\'re all the same—the men throw themselves out of their windows—convinces Holmes that there\'s a murderer behind it. But he\'s done with all that: we join him on a fishing trip in Scotland, where he and Watson are attempting to get some relaxation in. Holmes confesses to dizzy spells and tells his faithful friend, \"I\'m sorry, Watson. The pleasures of the chase are no longer for me. I\'m through with crime forever.\" With that, he faints and tumbles to his death. Watson doesn\'t find his body, but his cap is floating in the river.</p>\n<p>Which is decidedly odd to people who have read the original Sir Arthur Conan Doyle stories. This is the ending of \"The Final Problem,\" in which Doyle attempted to kill of his most famous creation, except for one decided difference: in the story, Moriarty tumbled off into the gorge with him. After I got over my confusion, I began to think that this is one of the most clever reimaginings of Doyle\'s stories to make it into this series of films. There\'s something roguish in Bertram Millhauser\'s reworking of the most dramatic moment in the entire Holmes canon; Millhauser wrote five of the films, and his efforts just happen to include the best of the modernized ones, including <em>Sherlock Holmes in Washington</em>, <em>The Woman in Green</em>, and this one. This film also borrows elements from \"The Sign of Four,\" which was the second Holmes story Doyle wrote.</p>\n<p>Holmes returns from \"death\" soon enough, but he wants Watson to keep it a secret so that he can work on the mystery unnoticed. He quickly discovers the connection between the victims: they all lost large amounts of money gambling. Holmes enters the casino in one of the most tasteless and silly disguises that Rathbone was ever asked to wear: a wealthy Indian man, complete with dark shading in his skin, a pointy little beard, and a turban. It\'s no surprise that the woman behind the murders, Adrea Spedding (Gale Sondergaard), sees right through his disguise. This film features the best verbal parrying between Holmes and a nemesis: Spedding comes to visit Holmes after her minions fail to murder him, and the two have a conversation that is decidedly <i>not</i> about the fact that they\'re mortal enemies.</p>\n<p>The villains in these films are a mixed bag. Although I love Moriarty from the stories, the various incarnations of Moriarty in the films tend to be disappointing, aside from Henry Daniell in <em>The Woman in Green</em>. Other films in the series have downright silly villains. Because of this, Gale Sondergaard is a delight to watch. She\'s one of the few bad guys who has seemed to be Holmes\'s match. In addition to being the deadliest opponent Holmes faced in any of the films, she\'s beautiful and cocky, with her perpetually arched eyebrows seeming to mock him. It\'s almost sad when she resorts to proto-James Bond theatrics in her final attempt to do away with him.</p>\n<p>This is one of the best films in the series, ranked somewhere close behind <em>The Adventures of Sherlock Holmes</em>. Aside from Rathbone\'s bad makeup and a slightly disappointing ending, there are few flaws. Even the obligatory scene where poor Nigel Bruce has to act like a dunce was pretty funny—he mistakes a bearded Arthur Hohl for a disguised Holmes, and both actors play the scene well. It\'s also one of the most genuinely creepy films in the series, what with all the spiders. I don\'t like spiders.</p>\n<p><b>Baker Street Regulars (actors who appeared in more than two films in the series as different characters):</b></p>\n<p>Wilson Benge, 1st of 5 appearances (as unspecified clerk)<br />John Burton, 2nd of 4 (as announcer)<br />Harry Cording, 4th of 8 (as henchman on roof)<br />Arthur Hohl, 3rd of 3 (as Adam Gilflower)</p>\n\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','The Spider Woman (1944)','','inherit','closed','closed','','373-autosave-v1','','','2019-07-30 21:27:26','2019-07-30 21:27:26','',373,'http://itcamefrombeyondpulp.com/uncategorized/373-autosave-v1/',0,'revision','',0),(377,1,'2019-07-30 21:29:11','2019-07-30 21:29:11','[et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" custom_padding=\"0px|||||\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" custom_margin=\"||11px|||\" next_background_color=\"#000000\" global_module=\"74\"][et_pb_row global_parent=\"74\" custom_padding=\"0px||0px|||\" custom_margin=\"|auto|-66px|auto||\" _builder_version=\"3.26.3\"][et_pb_column type=\"4_4\" global_parent=\"74\" _builder_version=\"3.26.3\"][et_pb_image global_parent=\"74\" src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/header.jpg\" url=\"http://itcamefrombeyondpulp.com\" _builder_version=\"3.26.3\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.26.3\" width=\"1080px\" width_tablet=\"100%\" width_last_edited=\"on|phone\" module_alignment=\"center\" inner_module_alignment=\"center\" custom_padding=\"0px||0px||false|false\" z_index_tablet=\"500\" hover_enabled=\"0\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" prev_background_color=\"#000000\" next_background_color=\"#e02b20\" global_module=\"175\"][et_pb_fullwidth_menu global_parent=\"175\" menu_id=\"2\" submenu_direction=\"downwards\" fullwidth_menu=\"off\" dropdown_menu_text_color=\"#ffffff\" _builder_version=\"3.26.3\" menu_font=\"|800||on|||||\" menu_text_color=\"#ffffff\" menu_font_size=\"22px\" menu_letter_spacing=\"5px\" background_color=\"#e02b20\" border_width_bottom=\"5px\" text_orientation=\"center\" background_layout=\"dark\" custom_margin=\"0px||||false|false\" custom_padding=\"1px||0px||false|false\" z_index_tablet=\"500\" menu_text_shadow_horizontal_length_tablet=\"0px\" menu_text_shadow_vertical_length_tablet=\"0px\" menu_text_shadow_blur_strength_tablet=\"1px\" border_width_bottom_tablet=\"5px\" border_width_bottom_phone=\"5px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" /][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" background_color=\"#e02b20\" width=\"1080px\" module_alignment=\"center\" custom_padding=\"10px||0px|||\" hover_enabled=\"0\" width_last_edited=\"on|tablet\" width_phone=\"100%\" width_tablet=\"100%\" prev_background_color=\"#ffffff\"][et_pb_row custom_padding=\"10px|10px||\" _builder_version=\"3.26.3\" background_color=\"#ffffff\" border_width_bottom=\"5px\" border_color_bottom=\"#e02b20\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.26.3\" z_index_tablet=\"500\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\"]\r\n\r\n<h1 style=\"text-align: center;\">Movies &amp; TV Reviews</h1>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.26.3\" background_color=\"#ffffff\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" column_structure=\"1_3,1_3,1_3\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.26.3\" z_index_tablet=\"500\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\"]\r\n\r\n<h3 style=\"text-align: center;\">Sci-Fi</h3>\r\n<p style=\"text-align: center;\"><strong><a href=\"http://itcamefrombeyondpulp.com/movies/children-of-men-2006/\">Children of Men (2006)</a><br /></strong><strong><a href=\"http://itcamefrombeyondpulp.com/movies/cloverfield-2008/\">Cloverfield (2008)</a><br /><a href=\"http://itcamefrombeyondpulp.com/movies/the-dark-knight-2008/\">The Dark Knight (2008)</a><br /><a href=\"http://itcamefrombeyondpulp.com/movies/the-fountain-2006/\">The Fountain (2006)</a><br /><a href=\"http://itcamefrombeyondpulp.com/movies/hardware-1990/\">Hardware (1990)</a><br /><a href=\"http://itcamefrombeyondpulp.com/movies/harry-potter-and-the-chamber-of-secrets-2002/\">Harry Potter and the Chamber of Secrets (2002)</a><br /><a href=\"http://itcamefrombeyondpulp.com/movies/harry-potter-and-the-sorcerers-stone-2001/\">Harry Potter and the Sorcerer\'s Stone (2001)</a><br /><a href=\"http://itcamefrombeyondpulp.com/movies/maniac-1934/\">Maniac (1934)</a><br /><a href=\"http://itcamefrombeyondpulp.com/movies/the-phantom-planet-1961/\">The Phantom Planet (1961)</a><br /><a href=\"http://itcamefrombeyondpulp.com/movies/predator-1987/\">Predator (1987)</a><br /></strong><a href=\"http://itcamefrombeyondpulp.com/movies/serenity-2005/\"><strong>Serenity (2005)</strong></a><br /><a href=\"http://itcamefrombeyondpulp.com/movies/x-men-the-last-stand-2006/\"><strong>X-Men: The Last Stand (2006)</strong></a></p>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.26.3\" z_index_tablet=\"500\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" text_text_shadow_horizontal_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_vertical_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_blur_strength=\"text_text_shadow_style,%91object Object%93\" link_text_shadow_horizontal_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_vertical_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_blur_strength=\"link_text_shadow_style,%91object Object%93\" ul_text_shadow_horizontal_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_vertical_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_blur_strength=\"ul_text_shadow_style,%91object Object%93\" ol_text_shadow_horizontal_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_vertical_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_blur_strength=\"ol_text_shadow_style,%91object Object%93\" quote_text_shadow_horizontal_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_vertical_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_blur_strength=\"quote_text_shadow_style,%91object Object%93\" header_text_shadow_horizontal_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_vertical_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_blur_strength=\"header_text_shadow_style,%91object Object%93\" header_2_text_shadow_horizontal_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_vertical_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_blur_strength=\"header_2_text_shadow_style,%91object Object%93\" header_3_text_shadow_horizontal_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_vertical_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_blur_strength=\"header_3_text_shadow_style,%91object Object%93\" header_4_text_shadow_horizontal_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_vertical_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_blur_strength=\"header_4_text_shadow_style,%91object Object%93\" header_5_text_shadow_horizontal_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_vertical_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_blur_strength=\"header_5_text_shadow_style,%91object Object%93\" header_6_text_shadow_horizontal_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_vertical_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_blur_strength=\"header_6_text_shadow_style,%91object Object%93\"]\r\n\r\n<h3 style=\"text-align: center;\">Horror</h3>\r\n<p style=\"text-align: center;\"><a href=\"http://itcamefrombeyondpulp.com/movies/bloodrayne-2-deliverance-2007/\"><strong>BloodRayne 2: Deliverance (2007)</strong></a><br /><a href=\"http://itcamefrombeyondpulp.com/movies/the-cat-and-the-canary-1927/\"><strong>The Cat and the Canary (1927)</strong></a><br /><a href=\"http://itcamefrombeyondpulp.com/movies/the-children-1980/\"><strong>The Children (1980)</strong></a><br /><strong><a href=\"http://itcamefrombeyondpulp.com/movies/colin-2008/\">Colin (2008)</a></strong><br /><strong><a href=\"http://itcamefrombeyondpulp.com/movies/dark-water-2005/\">Dark Water (2005)</a></strong><br /><strong><a href=\"http://itcamefrombeyondpulp.com/movies/the-devils-daughter-1973/\">The Devil\'s Daughter (1973)</a></strong><br /><a href=\"http://itcamefrombeyondpulp.com/movies/masters-of-horror-the-black-cat-2007/\"><strong>Masters of Horror: The Black Cat (2007)</strong></a></p>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.26.3\" z_index_tablet=\"500\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" text_text_shadow_horizontal_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_vertical_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_blur_strength=\"text_text_shadow_style,%91object Object%93\" link_text_shadow_horizontal_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_vertical_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_blur_strength=\"link_text_shadow_style,%91object Object%93\" ul_text_shadow_horizontal_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_vertical_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_blur_strength=\"ul_text_shadow_style,%91object Object%93\" ol_text_shadow_horizontal_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_vertical_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_blur_strength=\"ol_text_shadow_style,%91object Object%93\" quote_text_shadow_horizontal_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_vertical_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_blur_strength=\"quote_text_shadow_style,%91object Object%93\" header_text_shadow_horizontal_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_vertical_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_blur_strength=\"header_text_shadow_style,%91object Object%93\" header_2_text_shadow_horizontal_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_vertical_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_blur_strength=\"header_2_text_shadow_style,%91object Object%93\" header_3_text_shadow_horizontal_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_vertical_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_blur_strength=\"header_3_text_shadow_style,%91object Object%93\" header_4_text_shadow_horizontal_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_vertical_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_blur_strength=\"header_4_text_shadow_style,%91object Object%93\" header_5_text_shadow_horizontal_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_vertical_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_blur_strength=\"header_5_text_shadow_style,%91object Object%93\" header_6_text_shadow_horizontal_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_vertical_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_blur_strength=\"header_6_text_shadow_style,%91object Object%93\"]\r\n\r\n<h3 style=\"text-align: center;\">Whatnot</h3><p style=\"text-align: center;\"><strong><em>Basil Rathbone/Nigel Bruce Sherlock Holmes Films</em></strong></p><p style=\"text-align: center;\"><a href=\"http://itcamefrombeyondpulp.com/movies/the-adventures-of-sherlock-holmes-1939/\"><strong>The Adventures of Sherlock Holmes (1939)</strong></a><br /><a href=\"http://itcamefrombeyondpulp.com/movies/the-hound-of-the-baskervilles-1939/\"><strong>The Hound of the Baskervilles (1939)</strong></a><br /><a href=\"http://itcamefrombeyondpulp.com/movies/sherlock-holmes-and-the-voice-of-terror-1942/\"><strong>Sherlock Holmes and the Voice of Terror (1942)</strong></a><br /><strong><a href=\"http://itcamefrombeyondpulp.com/movies/sherlock-holmes-and-the-secret-weapon-1943/\">Sherlock Holmes and the Secret Weapon (1943)</a></strong><br /><strong><a href=\"http://itcamefrombeyondpulp.com/movies/sherlock-holmes-in-washington-1943/\">Sherlock Holmes in Washington (1943)</a><br /><a href=\"http://itcamefrombeyondpulp.com/movies/sherlock-holmes-faces-death-1943/\">Sherlock Holmes Faces Death (1943)</a><br /><a href=\"http://itcamefrombeyondpulp.com/movies/the-scarlet-claw-1944/\">The Scarlet Claw (1944)</a></strong><br /><strong><a href=\"http://itcamefrombeyondpulp.com/movies/the-pearl-of-death-1944/\">The Pearl of Death (1944)</a><br /><a href=\"http://itcamefrombeyondpulp.com/movies/the-spider-woman-1944/\">The Spider Woman (1944)</a></strong><br /><strong><a href=\"http://itcamefrombeyondpulp.com/movies/the-house-of-fear-1945/\">The House of Fear (1945)</a></strong><br /><strong><a href=\"http://itcamefrombeyondpulp.com/movies/pursuit-to-algiers-1945/\">Pursuit to Algiers (1945)</a></strong><br /><strong><a href=\"http://itcamefrombeyondpulp.com/movies/dressed-to-kill-1946/\">Dressed to Kill (1946)</a></strong></p>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Movies','','inherit','closed','closed','','45-revision-v1','','','2019-07-30 21:29:11','2019-07-30 21:29:11','',45,'http://itcamefrombeyondpulp.com/uncategorized/45-revision-v1/',0,'revision','',0),(378,1,'2019-07-30 21:40:21','2019-07-30 21:40:21','[et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" custom_padding=\"0px|||||\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" custom_margin=\"||11px|||\" next_background_color=\"#000000\" global_module=\"74\"][et_pb_row global_parent=\"74\" custom_padding=\"0px||0px|||\" custom_margin=\"|auto|-66px|auto||\" _builder_version=\"3.26.3\"][et_pb_column type=\"4_4\" global_parent=\"74\" _builder_version=\"3.26.3\"][et_pb_image global_parent=\"74\" src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/header.jpg\" url=\"http://itcamefrombeyondpulp.com\" _builder_version=\"3.26.3\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.26.3\" width=\"1080px\" width_tablet=\"100%\" width_last_edited=\"on|phone\" module_alignment=\"center\" inner_module_alignment=\"center\" custom_padding=\"0px||0px||false|false\" z_index_tablet=\"500\" hover_enabled=\"0\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" prev_background_color=\"#000000\" next_background_color=\"#e02b20\" global_module=\"175\"][et_pb_fullwidth_menu global_parent=\"175\" menu_id=\"2\" submenu_direction=\"downwards\" fullwidth_menu=\"off\" dropdown_menu_text_color=\"#ffffff\" _builder_version=\"3.26.3\" menu_font=\"|800||on|||||\" menu_text_color=\"#ffffff\" menu_font_size=\"22px\" menu_letter_spacing=\"5px\" background_color=\"#e02b20\" border_width_bottom=\"5px\" text_orientation=\"center\" background_layout=\"dark\" custom_margin=\"0px||||false|false\" custom_padding=\"1px||0px||false|false\" z_index_tablet=\"500\" menu_text_shadow_horizontal_length_tablet=\"0px\" menu_text_shadow_vertical_length_tablet=\"0px\" menu_text_shadow_blur_strength_tablet=\"1px\" border_width_bottom_tablet=\"5px\" border_width_bottom_phone=\"5px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" /][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" background_color=\"#e02b20\" width=\"1080px\" module_alignment=\"center\" custom_padding=\"10px||0px|||\" prev_background_color=\"#ffffff\"][et_pb_row _builder_version=\"3.26.3\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" background_color=\"#ffffff\" custom_padding=\"10px|10px||10px|false|false\" border_width_bottom=\"5px\" border_color_bottom=\"#e02b20\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image _builder_version=\"3.26.3\" src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/terror.jpg\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\" /][et_pb_text _builder_version=\"3.26.3\" z_index_tablet=\"500\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" text_text_shadow_horizontal_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_vertical_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_blur_strength=\"text_text_shadow_style,%91object Object%93\" link_text_shadow_horizontal_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_vertical_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_blur_strength=\"link_text_shadow_style,%91object Object%93\" ul_text_shadow_horizontal_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_vertical_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_blur_strength=\"ul_text_shadow_style,%91object Object%93\" ol_text_shadow_horizontal_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_vertical_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_blur_strength=\"ol_text_shadow_style,%91object Object%93\" quote_text_shadow_horizontal_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_vertical_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_blur_strength=\"quote_text_shadow_style,%91object Object%93\" header_text_shadow_horizontal_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_vertical_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_blur_strength=\"header_text_shadow_style,%91object Object%93\" header_2_text_shadow_horizontal_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_vertical_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_blur_strength=\"header_2_text_shadow_style,%91object Object%93\" header_3_text_shadow_horizontal_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_vertical_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_blur_strength=\"header_3_text_shadow_style,%91object Object%93\" header_4_text_shadow_horizontal_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_vertical_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_blur_strength=\"header_4_text_shadow_style,%91object Object%93\" header_5_text_shadow_horizontal_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_vertical_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_blur_strength=\"header_5_text_shadow_style,%91object Object%93\" header_6_text_shadow_horizontal_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_vertical_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_blur_strength=\"header_6_text_shadow_style,%91object Object%93\"]\r\n\r\n<h3 style=\"text-align: center;\"><strong><em>Terror by Night</em> (Roy William Neill, 1946, 60 min.)</strong></h3><p>The penultimate film in the popular Basil Rathbone/Nigel Bruce series of Sherlock Holmes films is a lesser entry, flawed by too much reliance on Bruce\'s Dr. Watson and Dennis Hoey\'s Lestrade for comic relief, as well as an Agatha Christie–level bevy of red herring suspects. Rathbone is good as usual, and this film is one of the first to demonstrate the seeming heartlessness of the master detective as originally conceived by Sir Arthur Conan Doyle—these things make it better than, say, the previous entry, <em>Pursuit to Algiers</em>. But it\'s obvious that the series was limping to a close.</p><p>Holmes and Watson are again playing nursemaids, but this time to a valuable diamond, the Star of Rhodesia, a stone whose history is marked by the painful deaths of those who have owned it. Now it\'s in possession of Lady Margaret Carstairs (Mary Forbes, appearing in her third film in the series), an irritable woman who insults Holmes and Watson by implying that they\'re policemen for hire. She\'s taking the train from London to Edinburgh, and her son Ronald (Geoffrey Steele) has enlisted the master detective and his increasingly bumbling sidekick to prevent the theft of the diamond.</p><p>Quickly, Ronald winds up poisoned and the diamond disappears. The traincar in which they\'re riding is full of suspects. Vivian Vedder (Renee Godfrey) is a suspicious-acting young woman transporting her dead mother\'s coffin to Edinburgh; she seems to want to keep track of Holmes. Professor Kilbane (Frederick Worlock) is an ill-tempered mathematician who refuses to cooperate with their investigation. We overhear a nervous older couple (Janet Murdoch and Gerald Hamer, the latter in his fifth Holmes film) fretting at the presence of Scotland Yard detective Lestrade (Dennis Hoey) aboard the train. And Watson\'s old friend from the army, Major Duncan-Bleek (Alan Mowbray), seems to be very interested in the case. Holmes comes to the conclusion—unsupported by any evidence, as far as I can tell—that the crime is the handiwork of the late Professor Moriarty\'s chief henchman, Colonel Sebastian Moran. He must figure out which of the passengers is Moran before they reach Edinburgh. Since all of this takes place on a train, you know going in that someone will attempt to push Holmes out of it. That\'s really the only suspense to be had in the film: when will someone try to kill Holmes? The rest of the film feels rather perfunctory.</p><p>Nigel Bruce is mistreated by the script. This is the first film in the series that uses him for more comic relief than is necessary. The scenes where he fumbles through attempted interrogations of suspects cross the line into mean-spiritedness. This is a far cry from the Watson of Doyle\'s stories. Similarly, Dennis Hoey\'s Lestrade is good for little more than laughs, although I admit that this is closer in spirit to the stories. But in this very short film—at 60 minutes, it\'s the shortest in the series—so much comic relief feels like desperate attempts to pad an already skimpy story.</p><p>The heartlessness I mentioned comes with the revelation that the diamond in Lady Carstairs\'s box is in fact a fake: Holmes had the real diamond the whole time. This means that Holmes, who knew that someone would attempt to steal it, and knew that the thief was unlikely to care about taking lives to get the diamond, put Ronald Carstairs in mortal danger for no reason other than to draw out the thief—a plan that failed, since it still took Holmes some time to figure out the guilty party. This is the Holmes of the books peeking through, the Holmes who sometimes looked at other people like bugs, who sometimes viewed a good mystery as being more interesting than keeping people out of danger.</p><p>Although the Internet Movie Database claims that this film is based on a Doyle story, I can find no evidence for this story\'s existence. Certainly Colonel Sebastian Moran existed in Doyle\'s stories, but Jack Tracy\'s <i>Encyclopedia Sherlockania</i> makes no mention of the Star of Rhodesia.</p><p><b>Baker Street Regulars</b> (actors who appeared in more than two films in the series as different characters):</p><p>Harry Cording, 7th of 8 appearances (as Coffin Maker) <br />Mary Forbes, 3rd of 3 (Lady Margaret Carstairs) <br />Gerald Hamer, 5th of 5 (Mr. Shallcross) <br />Leyland Hogdson, 7th of 7 (Train conductor) <br />Frederick Worlock, 5th of 6 (Professor William Kilbane)</p>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Terror by Night (1946)','','publish','closed','closed','','terror-by-night-1946','','','2019-07-30 21:40:21','2019-07-30 21:40:21','',0,'http://itcamefrombeyondpulp.com/?p=378',0,'post','',0),(379,1,'2019-07-30 21:39:34','2019-07-30 21:39:34','','terror','','inherit','closed','closed','','terror','','','2019-07-30 21:39:34','2019-07-30 21:39:34','',378,'http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/terror.jpg',0,'attachment','image/jpeg',0),(380,1,'2019-07-30 21:40:21','2019-07-30 21:40:21','[et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" custom_padding=\"0px|||||\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" custom_margin=\"||11px|||\" next_background_color=\"#000000\" global_module=\"74\"][et_pb_row global_parent=\"74\" custom_padding=\"0px||0px|||\" custom_margin=\"|auto|-66px|auto||\" _builder_version=\"3.26.3\"][et_pb_column type=\"4_4\" global_parent=\"74\" _builder_version=\"3.26.3\"][et_pb_image global_parent=\"74\" src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/header.jpg\" url=\"http://itcamefrombeyondpulp.com\" _builder_version=\"3.26.3\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.26.3\" width=\"1080px\" width_tablet=\"100%\" width_last_edited=\"on|phone\" module_alignment=\"center\" inner_module_alignment=\"center\" custom_padding=\"0px||0px||false|false\" z_index_tablet=\"500\" hover_enabled=\"0\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" prev_background_color=\"#000000\" next_background_color=\"#e02b20\" global_module=\"175\"][et_pb_fullwidth_menu global_parent=\"175\" menu_id=\"2\" submenu_direction=\"downwards\" fullwidth_menu=\"off\" dropdown_menu_text_color=\"#ffffff\" _builder_version=\"3.26.3\" menu_font=\"|800||on|||||\" menu_text_color=\"#ffffff\" menu_font_size=\"22px\" menu_letter_spacing=\"5px\" background_color=\"#e02b20\" border_width_bottom=\"5px\" text_orientation=\"center\" background_layout=\"dark\" custom_margin=\"0px||||false|false\" custom_padding=\"1px||0px||false|false\" z_index_tablet=\"500\" menu_text_shadow_horizontal_length_tablet=\"0px\" menu_text_shadow_vertical_length_tablet=\"0px\" menu_text_shadow_blur_strength_tablet=\"1px\" border_width_bottom_tablet=\"5px\" border_width_bottom_phone=\"5px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" /][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" background_color=\"#e02b20\" width=\"1080px\" module_alignment=\"center\" custom_padding=\"10px||0px|||\" prev_background_color=\"#ffffff\"][et_pb_row _builder_version=\"3.26.3\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" background_color=\"#ffffff\" custom_padding=\"10px|10px||10px|false|false\" border_width_bottom=\"5px\" border_color_bottom=\"#e02b20\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image _builder_version=\"3.26.3\" src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/terror.jpg\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\" /][et_pb_text _builder_version=\"3.26.3\" z_index_tablet=\"500\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" text_text_shadow_horizontal_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_vertical_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_blur_strength=\"text_text_shadow_style,%91object Object%93\" link_text_shadow_horizontal_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_vertical_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_blur_strength=\"link_text_shadow_style,%91object Object%93\" ul_text_shadow_horizontal_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_vertical_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_blur_strength=\"ul_text_shadow_style,%91object Object%93\" ol_text_shadow_horizontal_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_vertical_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_blur_strength=\"ol_text_shadow_style,%91object Object%93\" quote_text_shadow_horizontal_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_vertical_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_blur_strength=\"quote_text_shadow_style,%91object Object%93\" header_text_shadow_horizontal_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_vertical_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_blur_strength=\"header_text_shadow_style,%91object Object%93\" header_2_text_shadow_horizontal_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_vertical_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_blur_strength=\"header_2_text_shadow_style,%91object Object%93\" header_3_text_shadow_horizontal_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_vertical_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_blur_strength=\"header_3_text_shadow_style,%91object Object%93\" header_4_text_shadow_horizontal_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_vertical_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_blur_strength=\"header_4_text_shadow_style,%91object Object%93\" header_5_text_shadow_horizontal_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_vertical_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_blur_strength=\"header_5_text_shadow_style,%91object Object%93\" header_6_text_shadow_horizontal_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_vertical_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_blur_strength=\"header_6_text_shadow_style,%91object Object%93\"]\r\n\r\n<h3 style=\"text-align: center;\"><strong><em>Terror by Night</em> (Roy William Neill, 1946, 60 min.)</strong></h3><p>The penultimate film in the popular Basil Rathbone/Nigel Bruce series of Sherlock Holmes films is a lesser entry, flawed by too much reliance on Bruce\'s Dr. Watson and Dennis Hoey\'s Lestrade for comic relief, as well as an Agatha Christie–level bevy of red herring suspects. Rathbone is good as usual, and this film is one of the first to demonstrate the seeming heartlessness of the master detective as originally conceived by Sir Arthur Conan Doyle—these things make it better than, say, the previous entry, <em>Pursuit to Algiers</em>. But it\'s obvious that the series was limping to a close.</p><p>Holmes and Watson are again playing nursemaids, but this time to a valuable diamond, the Star of Rhodesia, a stone whose history is marked by the painful deaths of those who have owned it. Now it\'s in possession of Lady Margaret Carstairs (Mary Forbes, appearing in her third film in the series), an irritable woman who insults Holmes and Watson by implying that they\'re policemen for hire. She\'s taking the train from London to Edinburgh, and her son Ronald (Geoffrey Steele) has enlisted the master detective and his increasingly bumbling sidekick to prevent the theft of the diamond.</p><p>Quickly, Ronald winds up poisoned and the diamond disappears. The traincar in which they\'re riding is full of suspects. Vivian Vedder (Renee Godfrey) is a suspicious-acting young woman transporting her dead mother\'s coffin to Edinburgh; she seems to want to keep track of Holmes. Professor Kilbane (Frederick Worlock) is an ill-tempered mathematician who refuses to cooperate with their investigation. We overhear a nervous older couple (Janet Murdoch and Gerald Hamer, the latter in his fifth Holmes film) fretting at the presence of Scotland Yard detective Lestrade (Dennis Hoey) aboard the train. And Watson\'s old friend from the army, Major Duncan-Bleek (Alan Mowbray), seems to be very interested in the case. Holmes comes to the conclusion—unsupported by any evidence, as far as I can tell—that the crime is the handiwork of the late Professor Moriarty\'s chief henchman, Colonel Sebastian Moran. He must figure out which of the passengers is Moran before they reach Edinburgh. Since all of this takes place on a train, you know going in that someone will attempt to push Holmes out of it. That\'s really the only suspense to be had in the film: when will someone try to kill Holmes? The rest of the film feels rather perfunctory.</p><p>Nigel Bruce is mistreated by the script. This is the first film in the series that uses him for more comic relief than is necessary. The scenes where he fumbles through attempted interrogations of suspects cross the line into mean-spiritedness. This is a far cry from the Watson of Doyle\'s stories. Similarly, Dennis Hoey\'s Lestrade is good for little more than laughs, although I admit that this is closer in spirit to the stories. But in this very short film—at 60 minutes, it\'s the shortest in the series—so much comic relief feels like desperate attempts to pad an already skimpy story.</p><p>The heartlessness I mentioned comes with the revelation that the diamond in Lady Carstairs\'s box is in fact a fake: Holmes had the real diamond the whole time. This means that Holmes, who knew that someone would attempt to steal it, and knew that the thief was unlikely to care about taking lives to get the diamond, put Ronald Carstairs in mortal danger for no reason other than to draw out the thief—a plan that failed, since it still took Holmes some time to figure out the guilty party. This is the Holmes of the books peeking through, the Holmes who sometimes looked at other people like bugs, who sometimes viewed a good mystery as being more interesting than keeping people out of danger.</p><p>Although the Internet Movie Database claims that this film is based on a Doyle story, I can find no evidence for this story\'s existence. Certainly Colonel Sebastian Moran existed in Doyle\'s stories, but Jack Tracy\'s <i>Encyclopedia Sherlockania</i> makes no mention of the Star of Rhodesia.</p><p><b>Baker Street Regulars</b> (actors who appeared in more than two films in the series as different characters):</p><p>Harry Cording, 7th of 8 appearances (as Coffin Maker) <br />Mary Forbes, 3rd of 3 (Lady Margaret Carstairs) <br />Gerald Hamer, 5th of 5 (Mr. Shallcross) <br />Leyland Hogdson, 7th of 7 (Train conductor) <br />Frederick Worlock, 5th of 6 (Professor William Kilbane)</p>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Terror by Night (1946)','','inherit','closed','closed','','378-revision-v1','','','2019-07-30 21:40:21','2019-07-30 21:40:21','',378,'http://itcamefrombeyondpulp.com/uncategorized/378-revision-v1/',0,'revision','',0),(381,1,'2019-07-30 21:43:04','2019-07-30 21:43:04','[et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" custom_padding=\"0px|||||\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" custom_margin=\"||11px|||\" next_background_color=\"#000000\" global_module=\"74\"][et_pb_row global_parent=\"74\" custom_padding=\"0px||0px|||\" custom_margin=\"|auto|-66px|auto||\" _builder_version=\"3.26.3\"][et_pb_column type=\"4_4\" global_parent=\"74\" _builder_version=\"3.26.3\"][et_pb_image global_parent=\"74\" src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/header.jpg\" url=\"http://itcamefrombeyondpulp.com\" _builder_version=\"3.26.3\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.26.3\" width=\"1080px\" width_tablet=\"100%\" width_last_edited=\"on|phone\" module_alignment=\"center\" inner_module_alignment=\"center\" custom_padding=\"0px||0px||false|false\" z_index_tablet=\"500\" hover_enabled=\"0\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" prev_background_color=\"#000000\" next_background_color=\"#e02b20\" global_module=\"175\"][et_pb_fullwidth_menu global_parent=\"175\" menu_id=\"2\" submenu_direction=\"downwards\" fullwidth_menu=\"off\" dropdown_menu_text_color=\"#ffffff\" _builder_version=\"3.26.3\" menu_font=\"|800||on|||||\" menu_text_color=\"#ffffff\" menu_font_size=\"22px\" menu_letter_spacing=\"5px\" background_color=\"#e02b20\" border_width_bottom=\"5px\" text_orientation=\"center\" background_layout=\"dark\" custom_margin=\"0px||||false|false\" custom_padding=\"1px||0px||false|false\" z_index_tablet=\"500\" menu_text_shadow_horizontal_length_tablet=\"0px\" menu_text_shadow_vertical_length_tablet=\"0px\" menu_text_shadow_blur_strength_tablet=\"1px\" border_width_bottom_tablet=\"5px\" border_width_bottom_phone=\"5px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" /][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" background_color=\"#e02b20\" width=\"1080px\" module_alignment=\"center\" custom_padding=\"10px||0px|||\" prev_background_color=\"#ffffff\"][et_pb_row _builder_version=\"3.26.3\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" background_color=\"#ffffff\" custom_padding=\"10px|10px||10px|false|false\" border_width_bottom=\"5px\" border_color_bottom=\"#e02b20\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image _builder_version=\"3.26.3\" src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/terror.jpg\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\" /][et_pb_text _builder_version=\"3.26.3\" z_index_tablet=\"500\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" text_text_shadow_horizontal_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_vertical_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_blur_strength=\"text_text_shadow_style,%91object Object%93\" link_text_shadow_horizontal_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_vertical_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_blur_strength=\"link_text_shadow_style,%91object Object%93\" ul_text_shadow_horizontal_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_vertical_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_blur_strength=\"ul_text_shadow_style,%91object Object%93\" ol_text_shadow_horizontal_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_vertical_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_blur_strength=\"ol_text_shadow_style,%91object Object%93\" quote_text_shadow_horizontal_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_vertical_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_blur_strength=\"quote_text_shadow_style,%91object Object%93\" header_text_shadow_horizontal_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_vertical_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_blur_strength=\"header_text_shadow_style,%91object Object%93\" header_2_text_shadow_horizontal_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_vertical_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_blur_strength=\"header_2_text_shadow_style,%91object Object%93\" header_3_text_shadow_horizontal_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_vertical_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_blur_strength=\"header_3_text_shadow_style,%91object Object%93\" header_4_text_shadow_horizontal_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_vertical_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_blur_strength=\"header_4_text_shadow_style,%91object Object%93\" header_5_text_shadow_horizontal_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_vertical_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_blur_strength=\"header_5_text_shadow_style,%91object Object%93\" header_6_text_shadow_horizontal_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_vertical_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_blur_strength=\"header_6_text_shadow_style,%91object Object%93\"]\n\n<h3 style=\"text-align: center;\"><strong><em>Terror by Night</em> (Roy William Neill, 1946, 60 min.)</strong></h3>\n<p>The penultimate film in the popular Basil Rathbone/Nigel Bruce series of Sherlock Holmes films is a lesser entry, flawed by too much reliance on Bruce\'s Dr. Watson and Dennis Hoey\'s Lestrade for comic relief, as well as an Agatha Christie–level bevy of red herring suspects. Rathbone is good as usual, and this film is one of the first to demonstrate the seeming heartlessness of the master detective as originally conceived by Sir Arthur Conan Doyle—these things make it better than, say, the previous entry, <em>Pursuit to Algiers</em>. But it\'s obvious that the series was limping to a close.</p>\n<p>Holmes and Watson are again playing nursemaids, but this time to a valuable diamond, the Star of Rhodesia, a stone whose history is marked by the painful deaths of those who have owned it. Now it\'s in possession of Lady Margaret Carstairs (Mary Forbes, appearing in her third film in the series), an irritable woman who insults Holmes and Watson by implying that they\'re policemen for hire. She\'s taking the train from London to Edinburgh, and her son Ronald (Geoffrey Steele) has enlisted the master detective and his increasingly bumbling sidekick to prevent the theft of the diamond.</p>\n<p>Quickly, Ronald winds up poisoned and the diamond disappears. The traincar in which they\'re riding is full of suspects. Vivian Vedder (Renee Godfrey) is a suspicious-acting young woman transporting her dead mother\'s coffin to Edinburgh; she seems to want to keep track of Holmes. Professor Kilbane (Frederick Worlock) is an ill-tempered mathematician who refuses to cooperate with their investigation. We overhear a nervous older couple (Janet Murdoch and Gerald Hamer, the latter in his fifth Holmes film) fretting at the presence of Scotland Yard detective Lestrade (Dennis Hoey) aboard the train. And Watson\'s old friend from the army, Major Duncan-Bleek (Alan Mowbray), seems to be very interested in the case. Holmes comes to the conclusion—unsupported by any evidence, as far as I can tell—that the crime is the handiwork of the late Professor Moriarty\'s chief henchman, Colonel Sebastian Moran. He must figure out which of the passengers is Moran before they reach Edinburgh. Since all of this takes place on a train, you know going in that someone will attempt to push Holmes out of it. That\'s really the only suspense to be had in the film: when will someone try to kill Holmes? The rest of the film feels rather perfunctory.</p>\n<p>Nigel Bruce is mistreated by the script. This is the first film in the series that uses him for more comic relief than is necessary. The scenes where he fumbles through attempted interrogations of suspects cross the line into mean-spiritedness. This is a far cry from the Watson of Doyle\'s stories. Similarly, Dennis Hoey\'s Lestrade is good for little more than laughs, although I admit that this is closer in spirit to the stories. But in this very short film—at 60 minutes, it\'s the shortest in the series—so much comic relief feels like desperate attempts to pad an already skimpy story.</p>\n<p>The heartlessness I mentioned comes with the revelation that the diamond in Lady Carstairs\'s box is in fact a fake: Holmes had the real diamond the whole time. This means that Holmes, who knew that someone would attempt to steal it, and knew that the thief was unlikely to care about taking lives to get the diamond, put Ronald Carstairs in mortal danger for no reason other than to draw out the thief—a plan that failed, since it still took Holmes some time to figure out the guilty party. This is the Holmes of the books peeking through, the Holmes who sometimes looked at other people like bugs, who sometimes viewed a good mystery as being more interesting than keeping people out of danger.</p>\n<p>Although the Internet Movie Database claims that this film is based on a Doyle story, I can find no evidence for this story\'s existence. Certainly Colonel Sebastian Moran existed in Doyle\'s stories, but Jack Tracy\'s <i>Encyclopedia Sherlockania</i> makes no mention of the Star of Rhodesia.</p>\n<p><b>Baker Street Regulars</b> (actors who appeared in more than two films in the series as different characters):</p>\n<p>Harry Cording, 7th of 8 appearances (as Coffin Maker) <br />Mary Forbes, 3rd of 3 (Lady Margaret Carstairs) <br />Gerald Hamer, 5th of 5 (Mr. Shallcross) <br />Leyland Hogdson, 7th of 7 (Train conductor) <br />Frederick Worlock, 5th of 6 (Professor William Kilbane)</p>\n\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Terror by Night (1946)','','inherit','closed','closed','','378-autosave-v1','','','2019-07-30 21:43:04','2019-07-30 21:43:04','',378,'http://itcamefrombeyondpulp.com/uncategorized/378-autosave-v1/',0,'revision','',0),(382,1,'2019-07-30 21:47:25','2019-07-30 21:47:25','[et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" custom_padding=\"0px|||||\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" custom_margin=\"||11px|||\" next_background_color=\"#000000\" global_module=\"74\"][et_pb_row global_parent=\"74\" custom_padding=\"0px||0px|||\" custom_margin=\"|auto|-66px|auto||\" _builder_version=\"3.26.3\"][et_pb_column type=\"4_4\" global_parent=\"74\" _builder_version=\"3.26.3\"][et_pb_image global_parent=\"74\" src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/header.jpg\" url=\"http://itcamefrombeyondpulp.com\" _builder_version=\"3.26.3\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.26.3\" width=\"1080px\" width_tablet=\"100%\" width_last_edited=\"on|phone\" module_alignment=\"center\" inner_module_alignment=\"center\" custom_padding=\"0px||0px||false|false\" z_index_tablet=\"500\" hover_enabled=\"0\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" prev_background_color=\"#000000\" next_background_color=\"#e02b20\" global_module=\"175\"][et_pb_fullwidth_menu global_parent=\"175\" menu_id=\"2\" submenu_direction=\"downwards\" fullwidth_menu=\"off\" dropdown_menu_text_color=\"#ffffff\" _builder_version=\"3.26.3\" menu_font=\"|800||on|||||\" menu_text_color=\"#ffffff\" menu_font_size=\"22px\" menu_letter_spacing=\"5px\" background_color=\"#e02b20\" border_width_bottom=\"5px\" text_orientation=\"center\" background_layout=\"dark\" custom_margin=\"0px||||false|false\" custom_padding=\"1px||0px||false|false\" z_index_tablet=\"500\" menu_text_shadow_horizontal_length_tablet=\"0px\" menu_text_shadow_vertical_length_tablet=\"0px\" menu_text_shadow_blur_strength_tablet=\"1px\" border_width_bottom_tablet=\"5px\" border_width_bottom_phone=\"5px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" /][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" background_color=\"#e02b20\" width=\"1080px\" module_alignment=\"center\" custom_padding=\"10px||0px|||\" prev_background_color=\"#ffffff\"][et_pb_row _builder_version=\"3.26.3\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" background_color=\"#ffffff\" custom_padding=\"10px|10px||10px|false|false\" border_width_bottom=\"5px\" border_color_bottom=\"#e02b20\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image _builder_version=\"3.26.3\" src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/woman-in-green.jpg\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\" /][et_pb_text _builder_version=\"3.26.3\" z_index_tablet=\"500\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" text_text_shadow_horizontal_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_vertical_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_blur_strength=\"text_text_shadow_style,%91object Object%93\" link_text_shadow_horizontal_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_vertical_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_blur_strength=\"link_text_shadow_style,%91object Object%93\" ul_text_shadow_horizontal_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_vertical_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_blur_strength=\"ul_text_shadow_style,%91object Object%93\" ol_text_shadow_horizontal_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_vertical_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_blur_strength=\"ol_text_shadow_style,%91object Object%93\" quote_text_shadow_horizontal_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_vertical_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_blur_strength=\"quote_text_shadow_style,%91object Object%93\" header_text_shadow_horizontal_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_vertical_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_blur_strength=\"header_text_shadow_style,%91object Object%93\" header_2_text_shadow_horizontal_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_vertical_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_blur_strength=\"header_2_text_shadow_style,%91object Object%93\" header_3_text_shadow_horizontal_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_vertical_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_blur_strength=\"header_3_text_shadow_style,%91object Object%93\" header_4_text_shadow_horizontal_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_vertical_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_blur_strength=\"header_4_text_shadow_style,%91object Object%93\" header_5_text_shadow_horizontal_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_vertical_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_blur_strength=\"header_5_text_shadow_style,%91object Object%93\" header_6_text_shadow_horizontal_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_vertical_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_blur_strength=\"header_6_text_shadow_style,%91object Object%93\"]\r\n\r\n<h3 style=\"text-align: center;\"><strong><em>The Woman in Green</em> (Roy William Neill, 1945, 65 min.)</strong></h3><p>This late entry in the Universal Holmes/Watson series is a welcome surprise. It\'s one of the best in the series, partly because it strays from formula and partly because it summons some genuine mystery. It spends a little too much time providing comic relief at the expense of Watson, but it has a great villain, an elaborate plot, and a hair-raising finale. It\'s very loosely based on a story by Sir Arthur Conan Doyle, \"The Adventure of the Empty House,\" but it has little to do with the story aside from the return of Moriarty and clever trick Holmes uses to draw out a bad guy.</p><p>This time around, Sherlock Holmes (Basil Rathbone) and Dr. Watson (Nigel Bruce) take on an old-fashioned murder mystery. There have been four gruesome murders in London, and the only thing connecting them is the fact that the killer has removed a finger from the victim each time. Scotland Yard is mystified, and the lead investigator, Gregson (Matthew Boulton), calls on Holmes. Holmes quickly suspects Moriarty, who was supposed to have been hanged in Uruguay, but he has to find out how the murders are connected first. This film is notable because it features a narrator, and an unlikely one at that. Gregson, the Scotland Yard inspector, tells us in an opening voiceover about the murders and how he was forced to ask Holmes for help.</p><p>In a parallel storyline, a beautiful young woman named Lydia (Hillary Brooke) has drinks with Sir George (Paul Cavanagh) and invites him back to her apartment. The film skirts the edge of Code-approved banter, as it is clear what she\'s offering and what he\'s accepting. During a very creepy scene, she hypnotizes him, and he wakes up in a flophouse in a bad part of town. He discovers something in his pocket that makes him flee in terror; from the street, newspaper hawkers trumpet another murder. He flees to Lydia\'s house, where he runs into a sad-looking man with a slow drawl, who knows where Sir George woke up and what he found in his pocket. Sir George doesn\'t know it yet, but he\'s dealing with Moriarty (Henry Daniell). Holmes must get to the bottom of the mystery of the woman in green (although you can\'t tell she\'s wearing green, since the film is black and white) and put an end to what turns out to be an elaborate blackmail plot.</p><p>Daniell, appearing in his fourth film in the series as his fourth different character, is the best Moriarty of the lot. He comes across as bored but mildly amused at the proceedings; he seems distracted and above everything, which is a perfect way to play the criminal mastermind. The scenes he shares with Holmes are among the best in the entire series; their oddly pleasant conversation about how fitting it would be to die together is a masterpiece of understatement and a showcase for the great acting that elevates this series of films.</p><p>These films are a pleasure to watch. Even the bad ones are fun, sort of like bad episodes in an otherwise good television show. Since the films are all less than 70 minutes long, the comparison to good television isn\'t far off. This was the last film written by Bertram Millhauser, who wrote five in the series, and the falloff in quality is apparent in the next entry, <em>Pursuit to Algiers</em>.</p><p><b>Baker Street Regulars</b> (actors who appeared in more than two films in the series as different characters):</p><p>Hillary Brooke, 3rd of 3 appearances (as Lydia Marlowe) <br />John Burton, 4th of 4 (Waring) <br />Paul Cavanaugh, 3rd of 3 (Sir George Fenwick) <br />Henry Daniell, 3rd of 3 (Professor Moriarty) <br />Harold De Becker, 4th of 4 (Shoelace seller) <br />Leslie Denison, 6th of 6 (Vincent) <br />Olaf Hytten, 4th of 6 (Norris, Fenwick\'s butler) <br />Boyd Irwin, 2nd of 3 (Short-tempered officer closing window) <br />Arthur Stenning, 3rd of 3 (Mesmer Club servant) <br />Frederick Worlock, 4th of 6 (Dr. Onslow)</p>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','The Woman in Green (1945)','','publish','closed','closed','','the-woman-in-green-1945','','','2019-07-30 21:47:25','2019-07-30 21:47:25','',0,'http://itcamefrombeyondpulp.com/?p=382',0,'post','',0),(383,1,'2019-07-30 21:46:46','2019-07-30 21:46:46','','woman in green','','inherit','closed','closed','','woman-in-green','','','2019-07-30 21:46:46','2019-07-30 21:46:46','',382,'http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/woman-in-green.jpg',0,'attachment','image/jpeg',0),(384,1,'2019-07-30 21:47:25','2019-07-30 21:47:25','[et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" custom_padding=\"0px|||||\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" custom_margin=\"||11px|||\" next_background_color=\"#000000\" global_module=\"74\"][et_pb_row global_parent=\"74\" custom_padding=\"0px||0px|||\" custom_margin=\"|auto|-66px|auto||\" _builder_version=\"3.26.3\"][et_pb_column type=\"4_4\" global_parent=\"74\" _builder_version=\"3.26.3\"][et_pb_image global_parent=\"74\" src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/header.jpg\" url=\"http://itcamefrombeyondpulp.com\" _builder_version=\"3.26.3\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.26.3\" width=\"1080px\" width_tablet=\"100%\" width_last_edited=\"on|phone\" module_alignment=\"center\" inner_module_alignment=\"center\" custom_padding=\"0px||0px||false|false\" z_index_tablet=\"500\" hover_enabled=\"0\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" prev_background_color=\"#000000\" next_background_color=\"#e02b20\" global_module=\"175\"][et_pb_fullwidth_menu global_parent=\"175\" menu_id=\"2\" submenu_direction=\"downwards\" fullwidth_menu=\"off\" dropdown_menu_text_color=\"#ffffff\" _builder_version=\"3.26.3\" menu_font=\"|800||on|||||\" menu_text_color=\"#ffffff\" menu_font_size=\"22px\" menu_letter_spacing=\"5px\" background_color=\"#e02b20\" border_width_bottom=\"5px\" text_orientation=\"center\" background_layout=\"dark\" custom_margin=\"0px||||false|false\" custom_padding=\"1px||0px||false|false\" z_index_tablet=\"500\" menu_text_shadow_horizontal_length_tablet=\"0px\" menu_text_shadow_vertical_length_tablet=\"0px\" menu_text_shadow_blur_strength_tablet=\"1px\" border_width_bottom_tablet=\"5px\" border_width_bottom_phone=\"5px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" /][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" background_color=\"#e02b20\" width=\"1080px\" module_alignment=\"center\" custom_padding=\"10px||0px|||\" prev_background_color=\"#ffffff\"][et_pb_row _builder_version=\"3.26.3\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" background_color=\"#ffffff\" custom_padding=\"10px|10px||10px|false|false\" border_width_bottom=\"5px\" border_color_bottom=\"#e02b20\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image _builder_version=\"3.26.3\" src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/woman-in-green.jpg\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\" /][et_pb_text _builder_version=\"3.26.3\" z_index_tablet=\"500\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" text_text_shadow_horizontal_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_vertical_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_blur_strength=\"text_text_shadow_style,%91object Object%93\" link_text_shadow_horizontal_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_vertical_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_blur_strength=\"link_text_shadow_style,%91object Object%93\" ul_text_shadow_horizontal_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_vertical_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_blur_strength=\"ul_text_shadow_style,%91object Object%93\" ol_text_shadow_horizontal_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_vertical_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_blur_strength=\"ol_text_shadow_style,%91object Object%93\" quote_text_shadow_horizontal_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_vertical_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_blur_strength=\"quote_text_shadow_style,%91object Object%93\" header_text_shadow_horizontal_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_vertical_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_blur_strength=\"header_text_shadow_style,%91object Object%93\" header_2_text_shadow_horizontal_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_vertical_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_blur_strength=\"header_2_text_shadow_style,%91object Object%93\" header_3_text_shadow_horizontal_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_vertical_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_blur_strength=\"header_3_text_shadow_style,%91object Object%93\" header_4_text_shadow_horizontal_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_vertical_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_blur_strength=\"header_4_text_shadow_style,%91object Object%93\" header_5_text_shadow_horizontal_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_vertical_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_blur_strength=\"header_5_text_shadow_style,%91object Object%93\" header_6_text_shadow_horizontal_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_vertical_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_blur_strength=\"header_6_text_shadow_style,%91object Object%93\"]\r\n\r\n<h3 style=\"text-align: center;\"><strong><em>The Woman in Green</em> (Roy William Neill, 1945, 65 min.)</strong></h3><p>This late entry in the Universal Holmes/Watson series is a welcome surprise. It\'s one of the best in the series, partly because it strays from formula and partly because it summons some genuine mystery. It spends a little too much time providing comic relief at the expense of Watson, but it has a great villain, an elaborate plot, and a hair-raising finale. It\'s very loosely based on a story by Sir Arthur Conan Doyle, \"The Adventure of the Empty House,\" but it has little to do with the story aside from the return of Moriarty and clever trick Holmes uses to draw out a bad guy.</p><p>This time around, Sherlock Holmes (Basil Rathbone) and Dr. Watson (Nigel Bruce) take on an old-fashioned murder mystery. There have been four gruesome murders in London, and the only thing connecting them is the fact that the killer has removed a finger from the victim each time. Scotland Yard is mystified, and the lead investigator, Gregson (Matthew Boulton), calls on Holmes. Holmes quickly suspects Moriarty, who was supposed to have been hanged in Uruguay, but he has to find out how the murders are connected first. This film is notable because it features a narrator, and an unlikely one at that. Gregson, the Scotland Yard inspector, tells us in an opening voiceover about the murders and how he was forced to ask Holmes for help.</p><p>In a parallel storyline, a beautiful young woman named Lydia (Hillary Brooke) has drinks with Sir George (Paul Cavanagh) and invites him back to her apartment. The film skirts the edge of Code-approved banter, as it is clear what she\'s offering and what he\'s accepting. During a very creepy scene, she hypnotizes him, and he wakes up in a flophouse in a bad part of town. He discovers something in his pocket that makes him flee in terror; from the street, newspaper hawkers trumpet another murder. He flees to Lydia\'s house, where he runs into a sad-looking man with a slow drawl, who knows where Sir George woke up and what he found in his pocket. Sir George doesn\'t know it yet, but he\'s dealing with Moriarty (Henry Daniell). Holmes must get to the bottom of the mystery of the woman in green (although you can\'t tell she\'s wearing green, since the film is black and white) and put an end to what turns out to be an elaborate blackmail plot.</p><p>Daniell, appearing in his fourth film in the series as his fourth different character, is the best Moriarty of the lot. He comes across as bored but mildly amused at the proceedings; he seems distracted and above everything, which is a perfect way to play the criminal mastermind. The scenes he shares with Holmes are among the best in the entire series; their oddly pleasant conversation about how fitting it would be to die together is a masterpiece of understatement and a showcase for the great acting that elevates this series of films.</p><p>These films are a pleasure to watch. Even the bad ones are fun, sort of like bad episodes in an otherwise good television show. Since the films are all less than 70 minutes long, the comparison to good television isn\'t far off. This was the last film written by Bertram Millhauser, who wrote five in the series, and the falloff in quality is apparent in the next entry, <em>Pursuit to Algiers</em>.</p><p><b>Baker Street Regulars</b> (actors who appeared in more than two films in the series as different characters):</p><p>Hillary Brooke, 3rd of 3 appearances (as Lydia Marlowe) <br />John Burton, 4th of 4 (Waring) <br />Paul Cavanaugh, 3rd of 3 (Sir George Fenwick) <br />Henry Daniell, 3rd of 3 (Professor Moriarty) <br />Harold De Becker, 4th of 4 (Shoelace seller) <br />Leslie Denison, 6th of 6 (Vincent) <br />Olaf Hytten, 4th of 6 (Norris, Fenwick\'s butler) <br />Boyd Irwin, 2nd of 3 (Short-tempered officer closing window) <br />Arthur Stenning, 3rd of 3 (Mesmer Club servant) <br />Frederick Worlock, 4th of 6 (Dr. Onslow)</p>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','The Woman in Green (1945)','','inherit','closed','closed','','382-revision-v1','','','2019-07-30 21:47:25','2019-07-30 21:47:25','',382,'http://itcamefrombeyondpulp.com/uncategorized/382-revision-v1/',0,'revision','',0),(385,1,'2019-07-30 21:47:49','2019-07-30 21:47:49','[et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" custom_padding=\"0px|||||\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" custom_margin=\"||11px|||\" next_background_color=\"#000000\" global_module=\"74\"][et_pb_row global_parent=\"74\" custom_padding=\"0px||0px|||\" custom_margin=\"|auto|-66px|auto||\" _builder_version=\"3.26.3\"][et_pb_column type=\"4_4\" global_parent=\"74\" _builder_version=\"3.26.3\"][et_pb_image global_parent=\"74\" src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/header.jpg\" url=\"http://itcamefrombeyondpulp.com\" _builder_version=\"3.26.3\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.26.3\" width=\"1080px\" width_tablet=\"100%\" width_last_edited=\"on|phone\" module_alignment=\"center\" inner_module_alignment=\"center\" custom_padding=\"0px||0px||false|false\" z_index_tablet=\"500\" hover_enabled=\"0\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" prev_background_color=\"#000000\" next_background_color=\"#e02b20\" global_module=\"175\"][et_pb_fullwidth_menu global_parent=\"175\" menu_id=\"2\" submenu_direction=\"downwards\" fullwidth_menu=\"off\" dropdown_menu_text_color=\"#ffffff\" _builder_version=\"3.26.3\" menu_font=\"|800||on|||||\" menu_text_color=\"#ffffff\" menu_font_size=\"22px\" menu_letter_spacing=\"5px\" background_color=\"#e02b20\" border_width_bottom=\"5px\" text_orientation=\"center\" background_layout=\"dark\" custom_margin=\"0px||||false|false\" custom_padding=\"1px||0px||false|false\" z_index_tablet=\"500\" menu_text_shadow_horizontal_length_tablet=\"0px\" menu_text_shadow_vertical_length_tablet=\"0px\" menu_text_shadow_blur_strength_tablet=\"1px\" border_width_bottom_tablet=\"5px\" border_width_bottom_phone=\"5px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" /][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" background_color=\"#e02b20\" width=\"1080px\" module_alignment=\"center\" custom_padding=\"10px||0px|||\" prev_background_color=\"#ffffff\"][et_pb_row _builder_version=\"3.26.3\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" background_color=\"#ffffff\" custom_padding=\"10px|10px||10px|false|false\" border_width_bottom=\"5px\" border_color_bottom=\"#e02b20\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image _builder_version=\"3.26.3\" src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/woman-in-green.jpg\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\" /][et_pb_text _builder_version=\"3.26.3\" z_index_tablet=\"500\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" text_text_shadow_horizontal_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_vertical_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_blur_strength=\"text_text_shadow_style,%91object Object%93\" link_text_shadow_horizontal_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_vertical_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_blur_strength=\"link_text_shadow_style,%91object Object%93\" ul_text_shadow_horizontal_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_vertical_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_blur_strength=\"ul_text_shadow_style,%91object Object%93\" ol_text_shadow_horizontal_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_vertical_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_blur_strength=\"ol_text_shadow_style,%91object Object%93\" quote_text_shadow_horizontal_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_vertical_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_blur_strength=\"quote_text_shadow_style,%91object Object%93\" header_text_shadow_horizontal_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_vertical_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_blur_strength=\"header_text_shadow_style,%91object Object%93\" header_2_text_shadow_horizontal_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_vertical_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_blur_strength=\"header_2_text_shadow_style,%91object Object%93\" header_3_text_shadow_horizontal_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_vertical_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_blur_strength=\"header_3_text_shadow_style,%91object Object%93\" header_4_text_shadow_horizontal_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_vertical_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_blur_strength=\"header_4_text_shadow_style,%91object Object%93\" header_5_text_shadow_horizontal_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_vertical_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_blur_strength=\"header_5_text_shadow_style,%91object Object%93\" header_6_text_shadow_horizontal_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_vertical_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_blur_strength=\"header_6_text_shadow_style,%91object Object%93\"]\n\n<h3 style=\"text-align: center;\"><strong><em>The Woman in Green</em> (Roy William Neill, 1945, 65 min.)</strong></h3>\n<p>This late entry in the Universal Holmes/Watson series is a welcome surprise. It\'s one of the best in the series, partly because it strays from formula and partly because it summons some genuine mystery. It spends a little too much time providing comic relief at the expense of Watson, but it has a great villain, an elaborate plot, and a hair-raising finale. It\'s very loosely based on a story by Sir Arthur Conan Doyle, \"The Adventure of the Empty House,\" but it has little to do with the story aside from the return of Moriarty and clever trick Holmes uses to draw out a bad guy.</p>\n<p>This time around, Sherlock Holmes (Basil Rathbone) and Dr. Watson (Nigel Bruce) take on an old-fashioned murder mystery. There have been four gruesome murders in London, and the only thing connecting them is the fact that the killer has removed a finger from the victim each time. Scotland Yard is mystified, and the lead investigator, Gregson (Matthew Boulton), calls on Holmes. Holmes quickly suspects Moriarty, who was supposed to have been hanged in Uruguay, but he has to find out how the murders are connected first. This film is notable because it features a narrator, and an unlikely one at that. Gregson, the Scotland Yard inspector, tells us in an opening voiceover about the murders and how he was forced to ask Holmes for help.</p>\n<p>In a parallel storyline, a beautiful young woman named Lydia (Hillary Brooke) has drinks with Sir George (Paul Cavanagh) and invites him back to her apartment. The film skirts the edge of Code-approved banter, as it is clear what she\'s offering and what he\'s accepting. During a very creepy scene, she hypnotizes him, and he wakes up in a flophouse in a bad part of town. He discovers something in his pocket that makes him flee in terror; from the street, newspaper hawkers trumpet another murder. He flees to Lydia\'s house, where he runs into a sad-looking man with a slow drawl, who knows where Sir George woke up and what he found in his pocket. Sir George doesn\'t know it yet, but he\'s dealing with Moriarty (Henry Daniell). Holmes must get to the bottom of the mystery of the woman in green (although you can\'t tell she\'s wearing green, since the film is black and white) and put an end to what turns out to be an elaborate blackmail plot.</p>\n<p>Daniell, appearing in his fourth film in the series as his fourth different character, is the best Moriarty of the lot. He comes across as bored but mildly amused at the proceedings; he seems distracted and above everything, which is a perfect way to play the criminal mastermind. The scenes he shares with Holmes are among the best in the entire series; their oddly pleasant conversation about how fitting it would be to die together is a masterpiece of understatement and a showcase for the great acting that elevates this series of films.</p>\n<p>These films are a pleasure to watch. Even the bad ones are fun, sort of like bad episodes in an otherwise good television show. Since the films are all less than 70 minutes long, the comparison to good television isn\'t far off. This was the last film written by Bertram Millhauser, who wrote five in the series, and the falloff in quality is apparent in the next entry, <em>Pursuit to Algiers</em>.</p>\n<p><b>Baker Street Regulars</b> (actors who appeared in more than two films in the series as different characters):</p>\n<p>Hillary Brooke, 3rd of 3 appearances (as Lydia Marlowe) <br />John Burton, 4th of 4 (Waring) <br />Paul Cavanaugh, 3rd of 3 (Sir George Fenwick) <br />Henry Daniell, 3rd of 3 (Professor Moriarty) <br />Harold De Becker, 4th of 4 (Shoelace seller) <br />Leslie Denison, 6th of 6 (Vincent) <br />Olaf Hytten, 4th of 6 (Norris, Fenwick\'s butler) <br />Boyd Irwin, 2nd of 3 (Short-tempered officer closing window) <br />Arthur Stenning, 3rd of 3 (Mesmer Club servant) <br />Frederick Worlock, 4th of 6 (Dr. Onslow)</p>\n\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','The Woman in Green (1945)','','inherit','closed','closed','','382-autosave-v1','','','2019-07-30 21:47:49','2019-07-30 21:47:49','',382,'http://itcamefrombeyondpulp.com/uncategorized/382-autosave-v1/',0,'revision','',0),(386,1,'2019-07-30 21:49:10','2019-07-30 21:49:10','[et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" custom_padding=\"0px|||||\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" custom_margin=\"||11px|||\" next_background_color=\"#000000\" global_module=\"74\"][et_pb_row global_parent=\"74\" custom_padding=\"0px||0px|||\" custom_margin=\"|auto|-66px|auto||\" _builder_version=\"3.26.3\"][et_pb_column type=\"4_4\" global_parent=\"74\" _builder_version=\"3.26.3\"][et_pb_image global_parent=\"74\" src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/header.jpg\" url=\"http://itcamefrombeyondpulp.com\" _builder_version=\"3.26.3\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.26.3\" width=\"1080px\" width_tablet=\"100%\" width_last_edited=\"on|phone\" module_alignment=\"center\" inner_module_alignment=\"center\" custom_padding=\"0px||0px||false|false\" z_index_tablet=\"500\" hover_enabled=\"0\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" prev_background_color=\"#000000\" next_background_color=\"#e02b20\" global_module=\"175\"][et_pb_fullwidth_menu global_parent=\"175\" menu_id=\"2\" submenu_direction=\"downwards\" fullwidth_menu=\"off\" dropdown_menu_text_color=\"#ffffff\" _builder_version=\"3.26.3\" menu_font=\"|800||on|||||\" menu_text_color=\"#ffffff\" menu_font_size=\"22px\" menu_letter_spacing=\"5px\" background_color=\"#e02b20\" border_width_bottom=\"5px\" text_orientation=\"center\" background_layout=\"dark\" custom_margin=\"0px||||false|false\" custom_padding=\"1px||0px||false|false\" z_index_tablet=\"500\" menu_text_shadow_horizontal_length_tablet=\"0px\" menu_text_shadow_vertical_length_tablet=\"0px\" menu_text_shadow_blur_strength_tablet=\"1px\" border_width_bottom_tablet=\"5px\" border_width_bottom_phone=\"5px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" /][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" background_color=\"#e02b20\" width=\"1080px\" module_alignment=\"center\" custom_padding=\"10px||0px|||\" hover_enabled=\"0\" width_last_edited=\"on|tablet\" width_phone=\"100%\" width_tablet=\"100%\" prev_background_color=\"#ffffff\"][et_pb_row custom_padding=\"10px|10px||\" _builder_version=\"3.26.3\" background_color=\"#ffffff\" border_width_bottom=\"5px\" border_color_bottom=\"#e02b20\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.26.3\" z_index_tablet=\"500\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\"]\r\n\r\n<h1 style=\"text-align: center;\">Movies &amp; TV Reviews</h1>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.26.3\" background_color=\"#ffffff\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" column_structure=\"1_3,1_3,1_3\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.26.3\" z_index_tablet=\"500\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\"]\r\n\r\n<h3 style=\"text-align: center;\">Sci-Fi</h3>\r\n<p style=\"text-align: center;\"><strong><a href=\"http://itcamefrombeyondpulp.com/movies/children-of-men-2006/\">Children of Men (2006)</a><br /></strong><strong><a href=\"http://itcamefrombeyondpulp.com/movies/cloverfield-2008/\">Cloverfield (2008)</a><br /><a href=\"http://itcamefrombeyondpulp.com/movies/the-dark-knight-2008/\">The Dark Knight (2008)</a><br /><a href=\"http://itcamefrombeyondpulp.com/movies/the-fountain-2006/\">The Fountain (2006)</a><br /><a href=\"http://itcamefrombeyondpulp.com/movies/hardware-1990/\">Hardware (1990)</a><br /><a href=\"http://itcamefrombeyondpulp.com/movies/harry-potter-and-the-chamber-of-secrets-2002/\">Harry Potter and the Chamber of Secrets (2002)</a><br /><a href=\"http://itcamefrombeyondpulp.com/movies/harry-potter-and-the-sorcerers-stone-2001/\">Harry Potter and the Sorcerer\'s Stone (2001)</a><br /><a href=\"http://itcamefrombeyondpulp.com/movies/maniac-1934/\">Maniac (1934)</a><br /><a href=\"http://itcamefrombeyondpulp.com/movies/the-phantom-planet-1961/\">The Phantom Planet (1961)</a><br /><a href=\"http://itcamefrombeyondpulp.com/movies/predator-1987/\">Predator (1987)</a><br /></strong><a href=\"http://itcamefrombeyondpulp.com/movies/serenity-2005/\"><strong>Serenity (2005)</strong></a><br /><a href=\"http://itcamefrombeyondpulp.com/movies/x-men-the-last-stand-2006/\"><strong>X-Men: The Last Stand (2006)</strong></a></p>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.26.3\" z_index_tablet=\"500\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" text_text_shadow_horizontal_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_vertical_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_blur_strength=\"text_text_shadow_style,%91object Object%93\" link_text_shadow_horizontal_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_vertical_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_blur_strength=\"link_text_shadow_style,%91object Object%93\" ul_text_shadow_horizontal_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_vertical_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_blur_strength=\"ul_text_shadow_style,%91object Object%93\" ol_text_shadow_horizontal_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_vertical_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_blur_strength=\"ol_text_shadow_style,%91object Object%93\" quote_text_shadow_horizontal_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_vertical_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_blur_strength=\"quote_text_shadow_style,%91object Object%93\" header_text_shadow_horizontal_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_vertical_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_blur_strength=\"header_text_shadow_style,%91object Object%93\" header_2_text_shadow_horizontal_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_vertical_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_blur_strength=\"header_2_text_shadow_style,%91object Object%93\" header_3_text_shadow_horizontal_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_vertical_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_blur_strength=\"header_3_text_shadow_style,%91object Object%93\" header_4_text_shadow_horizontal_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_vertical_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_blur_strength=\"header_4_text_shadow_style,%91object Object%93\" header_5_text_shadow_horizontal_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_vertical_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_blur_strength=\"header_5_text_shadow_style,%91object Object%93\" header_6_text_shadow_horizontal_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_vertical_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_blur_strength=\"header_6_text_shadow_style,%91object Object%93\"]\r\n\r\n<h3 style=\"text-align: center;\">Horror</h3>\r\n<p style=\"text-align: center;\"><a href=\"http://itcamefrombeyondpulp.com/movies/bloodrayne-2-deliverance-2007/\"><strong>BloodRayne 2: Deliverance (2007)</strong></a><br /><a href=\"http://itcamefrombeyondpulp.com/movies/the-cat-and-the-canary-1927/\"><strong>The Cat and the Canary (1927)</strong></a><br /><a href=\"http://itcamefrombeyondpulp.com/movies/the-children-1980/\"><strong>The Children (1980)</strong></a><br /><strong><a href=\"http://itcamefrombeyondpulp.com/movies/colin-2008/\">Colin (2008)</a></strong><br /><strong><a href=\"http://itcamefrombeyondpulp.com/movies/dark-water-2005/\">Dark Water (2005)</a></strong><br /><strong><a href=\"http://itcamefrombeyondpulp.com/movies/the-devils-daughter-1973/\">The Devil\'s Daughter (1973)</a></strong><br /><a href=\"http://itcamefrombeyondpulp.com/movies/masters-of-horror-the-black-cat-2007/\"><strong>Masters of Horror: The Black Cat (2007)</strong></a></p>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.26.3\" z_index_tablet=\"500\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" text_text_shadow_horizontal_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_vertical_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_blur_strength=\"text_text_shadow_style,%91object Object%93\" link_text_shadow_horizontal_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_vertical_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_blur_strength=\"link_text_shadow_style,%91object Object%93\" ul_text_shadow_horizontal_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_vertical_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_blur_strength=\"ul_text_shadow_style,%91object Object%93\" ol_text_shadow_horizontal_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_vertical_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_blur_strength=\"ol_text_shadow_style,%91object Object%93\" quote_text_shadow_horizontal_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_vertical_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_blur_strength=\"quote_text_shadow_style,%91object Object%93\" header_text_shadow_horizontal_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_vertical_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_blur_strength=\"header_text_shadow_style,%91object Object%93\" header_2_text_shadow_horizontal_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_vertical_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_blur_strength=\"header_2_text_shadow_style,%91object Object%93\" header_3_text_shadow_horizontal_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_vertical_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_blur_strength=\"header_3_text_shadow_style,%91object Object%93\" header_4_text_shadow_horizontal_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_vertical_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_blur_strength=\"header_4_text_shadow_style,%91object Object%93\" header_5_text_shadow_horizontal_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_vertical_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_blur_strength=\"header_5_text_shadow_style,%91object Object%93\" header_6_text_shadow_horizontal_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_vertical_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_blur_strength=\"header_6_text_shadow_style,%91object Object%93\"]\r\n\r\n<h3 style=\"text-align: center;\">Whatnot</h3><p style=\"text-align: center;\"><strong><em>Basil Rathbone/Nigel Bruce Sherlock Holmes Films</em></strong></p><p style=\"text-align: center;\"><a href=\"http://itcamefrombeyondpulp.com/movies/the-adventures-of-sherlock-holmes-1939/\"><strong>The Adventures of Sherlock Holmes (1939)</strong></a><br /><a href=\"http://itcamefrombeyondpulp.com/movies/the-hound-of-the-baskervilles-1939/\"><strong>The Hound of the Baskervilles (1939)</strong></a><br /><a href=\"http://itcamefrombeyondpulp.com/movies/sherlock-holmes-and-the-voice-of-terror-1942/\"><strong>Sherlock Holmes and the Voice of Terror (1942)</strong></a><br /><strong><a href=\"http://itcamefrombeyondpulp.com/movies/sherlock-holmes-and-the-secret-weapon-1943/\">Sherlock Holmes and the Secret Weapon (1943)</a></strong><br /><strong><a href=\"http://itcamefrombeyondpulp.com/movies/sherlock-holmes-in-washington-1943/\">Sherlock Holmes in Washington (1943)</a><br /><a href=\"http://itcamefrombeyondpulp.com/movies/sherlock-holmes-faces-death-1943/\">Sherlock Holmes Faces Death (1943)</a><br /><a href=\"http://itcamefrombeyondpulp.com/movies/the-scarlet-claw-1944/\">The Scarlet Claw (1944)</a></strong><br /><strong><a href=\"http://itcamefrombeyondpulp.com/movies/the-pearl-of-death-1944/\">The Pearl of Death (1944)</a><br /><a href=\"http://itcamefrombeyondpulp.com/movies/the-spider-woman-1944/\">The Spider Woman (1944)</a></strong><br /><strong><a href=\"http://itcamefrombeyondpulp.com/movies/the-house-of-fear-1945/\">The House of Fear (1945)</a><br /><a href=\"http://itcamefrombeyondpulp.com/movies/the-woman-in-green-1945/\">The Woman in Green (1945)</a></strong><br /><strong><a href=\"http://itcamefrombeyondpulp.com/movies/pursuit-to-algiers-1945/\">Pursuit to Algiers (1945)</a><br /><a href=\"http://itcamefrombeyondpulp.com/movies/terror-by-night-1946/\">Terror by Night (1946)</a></strong><br /><strong><a href=\"http://itcamefrombeyondpulp.com/movies/dressed-to-kill-1946/\">Dressed to Kill (1946)</a></strong></p>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Movies','','inherit','closed','closed','','45-revision-v1','','','2019-07-30 21:49:10','2019-07-30 21:49:10','',45,'http://itcamefrombeyondpulp.com/uncategorized/45-revision-v1/',0,'revision','',0),(387,1,'2019-08-02 03:54:51','2019-08-02 03:54:51','[et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" custom_padding=\"0px|||||\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" custom_margin=\"||11px|||\" next_background_color=\"#000000\" global_module=\"74\"][et_pb_row global_parent=\"74\" custom_padding=\"0px||0px|||\" custom_margin=\"|auto|-66px|auto||\" _builder_version=\"3.26.3\"][et_pb_column type=\"4_4\" global_parent=\"74\" _builder_version=\"3.26.3\"][et_pb_image global_parent=\"74\" src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/header.jpg\" url=\"http://itcamefrombeyondpulp.com\" _builder_version=\"3.26.3\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.26.3\" width=\"1080px\" width_tablet=\"100%\" width_last_edited=\"on|phone\" module_alignment=\"center\" inner_module_alignment=\"center\" custom_padding=\"0px||0px||false|false\" z_index_tablet=\"500\" hover_enabled=\"0\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" prev_background_color=\"#000000\" next_background_color=\"#e02b20\" global_module=\"175\"][et_pb_fullwidth_menu global_parent=\"175\" menu_id=\"2\" submenu_direction=\"downwards\" fullwidth_menu=\"off\" dropdown_menu_text_color=\"#ffffff\" _builder_version=\"3.26.3\" menu_font=\"|800||on|||||\" menu_text_color=\"#ffffff\" menu_font_size=\"22px\" menu_letter_spacing=\"5px\" background_color=\"#e02b20\" border_width_bottom=\"5px\" text_orientation=\"center\" background_layout=\"dark\" custom_margin=\"0px||||false|false\" custom_padding=\"1px||0px||false|false\" z_index_tablet=\"500\" menu_text_shadow_horizontal_length_tablet=\"0px\" menu_text_shadow_vertical_length_tablet=\"0px\" menu_text_shadow_blur_strength_tablet=\"1px\" border_width_bottom_tablet=\"5px\" border_width_bottom_phone=\"5px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" /][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" background_color=\"#e02b20\" width=\"1080px\" module_alignment=\"center\" custom_padding=\"10px||0px|||\" prev_background_color=\"#ffffff\"][et_pb_row _builder_version=\"3.26.3\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" background_color=\"#ffffff\" custom_padding=\"10px|10px||10px|false|false\" border_width_bottom=\"5px\" border_color_bottom=\"#e02b20\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.26.3\" z_index_tablet=\"500\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" text_text_shadow_horizontal_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_vertical_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_blur_strength=\"text_text_shadow_style,%91object Object%93\" link_text_shadow_horizontal_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_vertical_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_blur_strength=\"link_text_shadow_style,%91object Object%93\" ul_text_shadow_horizontal_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_vertical_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_blur_strength=\"ul_text_shadow_style,%91object Object%93\" ol_text_shadow_horizontal_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_vertical_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_blur_strength=\"ol_text_shadow_style,%91object Object%93\" quote_text_shadow_horizontal_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_vertical_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_blur_strength=\"quote_text_shadow_style,%91object Object%93\" header_text_shadow_horizontal_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_vertical_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_blur_strength=\"header_text_shadow_style,%91object Object%93\" header_2_text_shadow_horizontal_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_vertical_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_blur_strength=\"header_2_text_shadow_style,%91object Object%93\" header_3_text_shadow_horizontal_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_vertical_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_blur_strength=\"header_3_text_shadow_style,%91object Object%93\" header_4_text_shadow_horizontal_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_vertical_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_blur_strength=\"header_4_text_shadow_style,%91object Object%93\" header_5_text_shadow_horizontal_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_vertical_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_blur_strength=\"header_5_text_shadow_style,%91object Object%93\" header_6_text_shadow_horizontal_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_vertical_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_blur_strength=\"header_6_text_shadow_style,%91object Object%93\"]\r\n\r\n<h3 style=\"text-align: center;\"><strong><em><img class=\"alignright wp-image-388 size-full\" src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/08/fallen.jpg\" alt=\"\" width=\"365\" height=\"600\" /></em></strong><strong><em>The Fallen Country</em> (Somtow Sucharitkul, 1986)</strong></h3><div>Somtow Sucharitkul (born 1952), aka S.P. Somtow, is a Thai polymath who started out as an avant garde musician in the 1970s, became a respected science fiction writer in the late 1970s, helped create the splatterpunk subgenre of horror in the early 1980s, and later returned to music. He\'s currently the director of the Bangkok Opera, which he founded. He\'s one of my favorite authors, one of the great, if unheralded, masters of any genre he cares to attempt.</div><div> </div><div>This story first appeared as a novelette in a 1982 collection called <i>Elsewhere, Vol. II</i>, and Somtow expanded it into a novel in 1986. He adapted the original 1982 story into an opera called <i><a href=\"http://www.skylightmusictheatre.org/shows-events/past-performances/the-snow-dragon\">The Snow Dragon</a></i>, which premiered at Milwaukee\'s Skylight Music Theatre in 2015. (I was there.)</div><div> </div><div>When Billy Binder appears one day, nearly frozen to death and clinging to the church belfry in the middle of a Florida heatwave, he\'s reluctantly befriended by a teenager named Charley. Billy\'s only escape from his mother\'s abusive boyfriend Stark is into the Fallen Country, a snowbound world where the cold numbs the emotions of its inhabitants until they\'re little more than zombies, and Billy rides a snow dragon to save beautiful princesses and vanquish monsters. Stark is here, too, as the evil Ringmaster, his lion tamer\'s whip scarring the sky and cutting the flesh of Billy\'s dragon guide. </div><div> </div><div><div>Of course it\'s an imaginary world, right? The kind that abused kids take refuge in, a place where they have power, where they can fight back. But Billy\'s alternate reality is real, as Charley is forced to acknowledge when he\'s swept into the Fallen Country to help Billy in his quest to vanquish the Ringmaster. Billy has power here—his anger—and he decides that he can put a stop to Stark\'s reign of terror.</div></div><div> </div><div>I believe this was marketed as young adult fantasy, and it\'s dark as hell. Billy suffers horrific abuse at Stark\'s hands, physical and possibly sexual, and the system either can or will do nothing about it. It\'s graphic and regular, and it\'s a little hard to take. There\'s also some inappropriate flirting between Charley and Dora, the hapless school counselor who tries to convince Billy that the Fallen Country isn\'t real. </div><div> </div><div>Someone at the <i>Washington Post</i> (I\'ve been unable to ascertain who said it) said that \"Sucharitkul can create a world with less apparent effort than some writers devote to creating a small room.\" That\'s true, and not true at the same time. Yes, he can create a world in a couple of paragraphs: the Fallen Country feels like a real place as soon as we enter it, perhaps because Somtow has a staggering recall of the myths and legends of several cultures, and he can employ shortcuts without them seeming like shortcuts, or perhaps because he\'s a fantastic writer. Probably both.</div><div> </div><div>But when shortcuts appear in the mundane world of Boca Blanca, Florida, it\'s more obvious: characters are sometimes distressingly wooden (Dora the counselor seems less like a person than a mouthpiece for generations of bad child psychology), and scenes that aren\'t about Billy and his trauma feel rushed, like Somtow was impatient to get to what he came here to write about.</div><div> </div><div>It\'s still a great and valuable novel despite these complaints because nobody writes better than Somtow when he\'s in the zone. The complex relationship of Billy and Stark is so painfully real that I found myself weeping, having grown up not in the Fallen Country but perhaps somewhere on the outskirts. Somtow\'s insight into the tools kids use to overcome abuse is clear and compelling, and he does a fantastic job balancing the requirements of a fantasy novel and the dead serious subject matter he\'s addressing. In the best possible way, this is literature about escape and healing that functions as an escape and as a tool for healing.</div>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','The Fallen Country (1986)','','publish','closed','closed','','the-fallen-country-1986','','','2019-08-02 03:54:51','2019-08-02 03:54:51','',0,'http://itcamefrombeyondpulp.com/?p=387',0,'post','',0),(389,1,'2019-08-02 03:54:51','2019-08-02 03:54:51','[et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" custom_padding=\"0px|||||\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" custom_margin=\"||11px|||\" next_background_color=\"#000000\" global_module=\"74\"][et_pb_row global_parent=\"74\" custom_padding=\"0px||0px|||\" custom_margin=\"|auto|-66px|auto||\" _builder_version=\"3.26.3\"][et_pb_column type=\"4_4\" global_parent=\"74\" _builder_version=\"3.26.3\"][et_pb_image global_parent=\"74\" src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/header.jpg\" url=\"http://itcamefrombeyondpulp.com\" _builder_version=\"3.26.3\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.26.3\" width=\"1080px\" width_tablet=\"100%\" width_last_edited=\"on|phone\" module_alignment=\"center\" inner_module_alignment=\"center\" custom_padding=\"0px||0px||false|false\" z_index_tablet=\"500\" hover_enabled=\"0\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" prev_background_color=\"#000000\" next_background_color=\"#e02b20\" global_module=\"175\"][et_pb_fullwidth_menu global_parent=\"175\" menu_id=\"2\" submenu_direction=\"downwards\" fullwidth_menu=\"off\" dropdown_menu_text_color=\"#ffffff\" _builder_version=\"3.26.3\" menu_font=\"|800||on|||||\" menu_text_color=\"#ffffff\" menu_font_size=\"22px\" menu_letter_spacing=\"5px\" background_color=\"#e02b20\" border_width_bottom=\"5px\" text_orientation=\"center\" background_layout=\"dark\" custom_margin=\"0px||||false|false\" custom_padding=\"1px||0px||false|false\" z_index_tablet=\"500\" menu_text_shadow_horizontal_length_tablet=\"0px\" menu_text_shadow_vertical_length_tablet=\"0px\" menu_text_shadow_blur_strength_tablet=\"1px\" border_width_bottom_tablet=\"5px\" border_width_bottom_phone=\"5px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" /][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" background_color=\"#e02b20\" width=\"1080px\" module_alignment=\"center\" custom_padding=\"10px||0px|||\" prev_background_color=\"#ffffff\"][et_pb_row _builder_version=\"3.26.3\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" background_color=\"#ffffff\" custom_padding=\"10px|10px||10px|false|false\" border_width_bottom=\"5px\" border_color_bottom=\"#e02b20\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.26.3\" z_index_tablet=\"500\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" text_text_shadow_horizontal_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_vertical_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_blur_strength=\"text_text_shadow_style,%91object Object%93\" link_text_shadow_horizontal_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_vertical_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_blur_strength=\"link_text_shadow_style,%91object Object%93\" ul_text_shadow_horizontal_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_vertical_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_blur_strength=\"ul_text_shadow_style,%91object Object%93\" ol_text_shadow_horizontal_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_vertical_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_blur_strength=\"ol_text_shadow_style,%91object Object%93\" quote_text_shadow_horizontal_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_vertical_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_blur_strength=\"quote_text_shadow_style,%91object Object%93\" header_text_shadow_horizontal_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_vertical_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_blur_strength=\"header_text_shadow_style,%91object Object%93\" header_2_text_shadow_horizontal_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_vertical_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_blur_strength=\"header_2_text_shadow_style,%91object Object%93\" header_3_text_shadow_horizontal_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_vertical_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_blur_strength=\"header_3_text_shadow_style,%91object Object%93\" header_4_text_shadow_horizontal_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_vertical_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_blur_strength=\"header_4_text_shadow_style,%91object Object%93\" header_5_text_shadow_horizontal_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_vertical_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_blur_strength=\"header_5_text_shadow_style,%91object Object%93\" header_6_text_shadow_horizontal_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_vertical_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_blur_strength=\"header_6_text_shadow_style,%91object Object%93\"]\r\n\r\n<h3 style=\"text-align: center;\"><strong><em><img class=\"alignright wp-image-388 size-full\" src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/08/fallen.jpg\" alt=\"\" width=\"365\" height=\"600\" /></em></strong><strong><em>The Fallen Country</em> (Somtow Sucharitkul, 1986)</strong></h3><div>Somtow Sucharitkul (born 1952), aka S.P. Somtow, is a Thai polymath who started out as an avant garde musician in the 1970s, became a respected science fiction writer in the late 1970s, helped create the splatterpunk subgenre of horror in the early 1980s, and later returned to music. He\'s currently the director of the Bangkok Opera, which he founded. He\'s one of my favorite authors, one of the great, if unheralded, masters of any genre he cares to attempt.</div><div> </div><div>This story first appeared as a novelette in a 1982 collection called <i>Elsewhere, Vol. II</i>, and Somtow expanded it into a novel in 1986. He adapted the original 1982 story into an opera called <i><a href=\"http://www.skylightmusictheatre.org/shows-events/past-performances/the-snow-dragon\">The Snow Dragon</a></i>, which premiered at Milwaukee\'s Skylight Music Theatre in 2015. (I was there.)</div><div> </div><div>When Billy Binder appears one day, nearly frozen to death and clinging to the church belfry in the middle of a Florida heatwave, he\'s reluctantly befriended by a teenager named Charley. Billy\'s only escape from his mother\'s abusive boyfriend Stark is into the Fallen Country, a snowbound world where the cold numbs the emotions of its inhabitants until they\'re little more than zombies, and Billy rides a snow dragon to save beautiful princesses and vanquish monsters. Stark is here, too, as the evil Ringmaster, his lion tamer\'s whip scarring the sky and cutting the flesh of Billy\'s dragon guide. </div><div> </div><div><div>Of course it\'s an imaginary world, right? The kind that abused kids take refuge in, a place where they have power, where they can fight back. But Billy\'s alternate reality is real, as Charley is forced to acknowledge when he\'s swept into the Fallen Country to help Billy in his quest to vanquish the Ringmaster. Billy has power here—his anger—and he decides that he can put a stop to Stark\'s reign of terror.</div></div><div> </div><div>I believe this was marketed as young adult fantasy, and it\'s dark as hell. Billy suffers horrific abuse at Stark\'s hands, physical and possibly sexual, and the system either can or will do nothing about it. It\'s graphic and regular, and it\'s a little hard to take. There\'s also some inappropriate flirting between Charley and Dora, the hapless school counselor who tries to convince Billy that the Fallen Country isn\'t real. </div><div> </div><div>Someone at the <i>Washington Post</i> (I\'ve been unable to ascertain who said it) said that \"Sucharitkul can create a world with less apparent effort than some writers devote to creating a small room.\" That\'s true, and not true at the same time. Yes, he can create a world in a couple of paragraphs: the Fallen Country feels like a real place as soon as we enter it, perhaps because Somtow has a staggering recall of the myths and legends of several cultures, and he can employ shortcuts without them seeming like shortcuts, or perhaps because he\'s a fantastic writer. Probably both.</div><div> </div><div>But when shortcuts appear in the mundane world of Boca Blanca, Florida, it\'s more obvious: characters are sometimes distressingly wooden (Dora the counselor seems less like a person than a mouthpiece for generations of bad child psychology), and scenes that aren\'t about Billy and his trauma feel rushed, like Somtow was impatient to get to what he came here to write about.</div><div> </div><div>It\'s still a great and valuable novel despite these complaints because nobody writes better than Somtow when he\'s in the zone. The complex relationship of Billy and Stark is so painfully real that I found myself weeping, having grown up not in the Fallen Country but perhaps somewhere on the outskirts. Somtow\'s insight into the tools kids use to overcome abuse is clear and compelling, and he does a fantastic job balancing the requirements of a fantasy novel and the dead serious subject matter he\'s addressing. In the best possible way, this is literature about escape and healing that functions as an escape and as a tool for healing.</div>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','The Fallen Country (1986)','','inherit','closed','closed','','387-revision-v1','','','2019-08-02 03:54:51','2019-08-02 03:54:51','',387,'http://itcamefrombeyondpulp.com/uncategorized/387-revision-v1/',0,'revision','',0),(388,1,'2019-08-02 03:53:45','2019-08-02 03:53:45','','fallen','','inherit','closed','closed','','fallen','','','2019-08-02 03:53:45','2019-08-02 03:53:45','',387,'http://itcamefrombeyondpulp.com/wp-content/uploads/2019/08/fallen.jpg',0,'attachment','image/jpeg',0),(390,1,'2019-08-02 03:57:47','2019-08-02 03:57:47','[et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" custom_padding=\"0px|||||\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" custom_margin=\"||11px|||\" next_background_color=\"#000000\" global_module=\"74\"][et_pb_row global_parent=\"74\" custom_padding=\"0px||0px|||\" custom_margin=\"|auto|-66px|auto||\" _builder_version=\"3.26.3\"][et_pb_column type=\"4_4\" global_parent=\"74\" _builder_version=\"3.26.3\"][et_pb_image global_parent=\"74\" src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/header.jpg\" url=\"http://itcamefrombeyondpulp.com\" _builder_version=\"3.26.3\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.26.3\" width=\"1080px\" width_tablet=\"100%\" width_last_edited=\"on|phone\" module_alignment=\"center\" inner_module_alignment=\"center\" custom_padding=\"0px||0px||false|false\" z_index_tablet=\"500\" hover_enabled=\"0\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" prev_background_color=\"#000000\" next_background_color=\"#e02b20\" global_module=\"175\"][et_pb_fullwidth_menu global_parent=\"175\" menu_id=\"2\" submenu_direction=\"downwards\" fullwidth_menu=\"off\" dropdown_menu_text_color=\"#ffffff\" _builder_version=\"3.26.3\" menu_font=\"|800||on|||||\" menu_text_color=\"#ffffff\" menu_font_size=\"22px\" menu_letter_spacing=\"5px\" background_color=\"#e02b20\" border_width_bottom=\"5px\" text_orientation=\"center\" background_layout=\"dark\" custom_margin=\"0px||||false|false\" custom_padding=\"1px||0px||false|false\" z_index_tablet=\"500\" menu_text_shadow_horizontal_length_tablet=\"0px\" menu_text_shadow_vertical_length_tablet=\"0px\" menu_text_shadow_blur_strength_tablet=\"1px\" border_width_bottom_tablet=\"5px\" border_width_bottom_phone=\"5px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" /][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" background_color=\"#e02b20\" width=\"1080px\" module_alignment=\"center\" custom_padding=\"10px||0px|||\" prev_background_color=\"#ffffff\"][et_pb_row _builder_version=\"3.26.3\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.26.3\" background_color=\"#ffffff\" text_text_shadow_horizontal_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\"]\r\n\r\n<h1 style=\"text-align: center;\">BOOK REVIEWS</h1>\r\n<h2 style=\"text-align: center;\">Coming soon.</h2>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.26.3\" background_color=\"#ffffff\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\"][et_pb_column type=\"1_3\"][et_pb_text _builder_version=\"3.26.3\" text_text_shadow_horizontal_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\"]\r\n\r\n<h3 style=\"text-align: center;\"><strong>Sci-Fi/Fantasy</strong></h3><p style=\"text-align: center;\"><a href=\"http://itcamefrombeyondpulp.com/books/the-fallen-country-1986/\"><strong>The Fallen Country</strong></a><br /><strong>(Somtow Sucharitkul, 1986)</strong></p>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text _builder_version=\"3.26.3\" text_text_shadow_horizontal_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\"]\r\n\r\n<h3 style=\"text-align: center;\"><strong>Horror</strong></h3>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text _builder_version=\"3.26.3\" text_text_shadow_horizontal_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\"]\r\n\r\n<h3 style=\"text-align: center;\"><strong>Whatnot</strong></h3>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Books','','inherit','closed','closed','','33-revision-v1','','','2019-08-02 03:57:47','2019-08-02 03:57:47','',33,'http://itcamefrombeyondpulp.com/uncategorized/33-revision-v1/',0,'revision','',0),(391,1,'2019-08-02 04:00:26','2019-08-02 04:00:26','[et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" custom_padding=\"0px|||||\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" custom_margin=\"||11px|||\" next_background_color=\"#000000\" global_module=\"74\"][et_pb_row global_parent=\"74\" custom_padding=\"0px||0px|||\" custom_margin=\"|auto|-66px|auto||\" _builder_version=\"3.26.3\"][et_pb_column type=\"4_4\" global_parent=\"74\" _builder_version=\"3.26.3\"][et_pb_image global_parent=\"74\" src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/header.jpg\" url=\"http://itcamefrombeyondpulp.com\" _builder_version=\"3.26.3\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.26.3\" width=\"1080px\" width_tablet=\"100%\" width_last_edited=\"on|phone\" module_alignment=\"center\" inner_module_alignment=\"center\" custom_padding=\"0px||0px||false|false\" z_index_tablet=\"500\" hover_enabled=\"0\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" prev_background_color=\"#000000\" next_background_color=\"#e02b20\" global_module=\"175\"][et_pb_fullwidth_menu global_parent=\"175\" menu_id=\"2\" submenu_direction=\"downwards\" fullwidth_menu=\"off\" dropdown_menu_text_color=\"#ffffff\" _builder_version=\"3.26.3\" menu_font=\"|800||on|||||\" menu_text_color=\"#ffffff\" menu_font_size=\"22px\" menu_letter_spacing=\"5px\" background_color=\"#e02b20\" border_width_bottom=\"5px\" text_orientation=\"center\" background_layout=\"dark\" custom_margin=\"0px||||false|false\" custom_padding=\"1px||0px||false|false\" z_index_tablet=\"500\" menu_text_shadow_horizontal_length_tablet=\"0px\" menu_text_shadow_vertical_length_tablet=\"0px\" menu_text_shadow_blur_strength_tablet=\"1px\" border_width_bottom_tablet=\"5px\" border_width_bottom_phone=\"5px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" /][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" background_color=\"#e02b20\" width=\"1080px\" module_alignment=\"center\" custom_padding=\"10px||0px|||\" prev_background_color=\"#ffffff\"][et_pb_row _builder_version=\"3.26.3\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.26.3\" background_color=\"#ffffff\" text_text_shadow_horizontal_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\"]\r\n\r\n<h1 style=\"text-align: center;\">BOOK REVIEWS</h1>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.26.3\" background_color=\"#ffffff\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\"][et_pb_column type=\"1_3\" custom_padding__hover=\"|||\" custom_padding=\"|||\"][et_pb_text _builder_version=\"3.26.3\" text_text_shadow_horizontal_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\"]\r\n\r\n<h3 style=\"text-align: center;\"><strong>Sci-Fi/Fantasy</strong></h3>\r\n<p style=\"text-align: center;\"><a href=\"http://itcamefrombeyondpulp.com/books/the-fallen-country-1986/\"><strong>The Fallen Country</strong></a><br /><strong>(Somtow Sucharitkul, 1986)</strong></p>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" custom_padding__hover=\"|||\" custom_padding=\"|||\"][et_pb_text _builder_version=\"3.26.3\" text_text_shadow_horizontal_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\"]\r\n\r\n<h3 style=\"text-align: center;\"><strong>Horror</strong></h3>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" custom_padding__hover=\"|||\" custom_padding=\"|||\"][et_pb_text _builder_version=\"3.26.3\" text_text_shadow_horizontal_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\"]\r\n\r\n<h3 style=\"text-align: center;\"><strong>Whatnot</strong></h3>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Books','','inherit','closed','closed','','33-revision-v1','','','2019-08-02 04:00:26','2019-08-02 04:00:26','',33,'http://itcamefrombeyondpulp.com/uncategorized/33-revision-v1/',0,'revision','',0),(392,1,'2019-08-02 04:02:34','2019-08-02 04:02:34','[et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" custom_padding=\"0px|||||\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" custom_margin=\"||11px|||\" next_background_color=\"#000000\" global_module=\"74\"][et_pb_row global_parent=\"74\" custom_padding=\"0px||0px|||\" custom_margin=\"|auto|-66px|auto||\" _builder_version=\"3.26.3\"][et_pb_column type=\"4_4\" global_parent=\"74\" _builder_version=\"3.26.3\"][et_pb_image global_parent=\"74\" src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/header.jpg\" url=\"http://itcamefrombeyondpulp.com\" _builder_version=\"3.26.3\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.26.3\" width=\"1080px\" width_tablet=\"100%\" width_last_edited=\"on|phone\" module_alignment=\"center\" inner_module_alignment=\"center\" custom_padding=\"0px||0px||false|false\" z_index_tablet=\"500\" hover_enabled=\"0\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" prev_background_color=\"#000000\" next_background_color=\"#e02b20\" global_module=\"175\"][et_pb_fullwidth_menu global_parent=\"175\" menu_id=\"2\" submenu_direction=\"downwards\" fullwidth_menu=\"off\" dropdown_menu_text_color=\"#ffffff\" _builder_version=\"3.26.3\" menu_font=\"|800||on|||||\" menu_text_color=\"#ffffff\" menu_font_size=\"22px\" menu_letter_spacing=\"5px\" background_color=\"#e02b20\" border_width_bottom=\"5px\" text_orientation=\"center\" background_layout=\"dark\" custom_margin=\"0px||||false|false\" custom_padding=\"1px||0px||false|false\" z_index_tablet=\"500\" menu_text_shadow_horizontal_length_tablet=\"0px\" menu_text_shadow_vertical_length_tablet=\"0px\" menu_text_shadow_blur_strength_tablet=\"1px\" border_width_bottom_tablet=\"5px\" border_width_bottom_phone=\"5px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" /][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" background_color=\"#e02b20\" width=\"1080px\" module_alignment=\"center\" custom_padding=\"10px||0px|||\" prev_background_color=\"#ffffff\"][et_pb_row custom_padding=\"10px|10px||\" _builder_version=\"3.26.3\" background_color=\"#ffffff\" border_width_bottom=\"5px\" border_color_bottom=\"#e02b20\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.26.3\" z_index_tablet=\"500\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" text_text_shadow_horizontal_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_vertical_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_blur_strength=\"text_text_shadow_style,%91object Object%93\" link_text_shadow_horizontal_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_vertical_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_blur_strength=\"link_text_shadow_style,%91object Object%93\" ul_text_shadow_horizontal_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_vertical_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_blur_strength=\"ul_text_shadow_style,%91object Object%93\" ol_text_shadow_horizontal_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_vertical_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_blur_strength=\"ol_text_shadow_style,%91object Object%93\" quote_text_shadow_horizontal_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_vertical_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_blur_strength=\"quote_text_shadow_style,%91object Object%93\" header_text_shadow_horizontal_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_vertical_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_blur_strength=\"header_text_shadow_style,%91object Object%93\" header_2_text_shadow_horizontal_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_vertical_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_blur_strength=\"header_2_text_shadow_style,%91object Object%93\" header_3_text_shadow_horizontal_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_vertical_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_blur_strength=\"header_3_text_shadow_style,%91object Object%93\" header_4_text_shadow_horizontal_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_vertical_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_blur_strength=\"header_4_text_shadow_style,%91object Object%93\" header_5_text_shadow_horizontal_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_vertical_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_blur_strength=\"header_5_text_shadow_style,%91object Object%93\" header_6_text_shadow_horizontal_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_vertical_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_blur_strength=\"header_6_text_shadow_style,%91object Object%93\"]\r\n\r\n<h1 style=\"text-align: center;\">Book Reviews</h1>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.26.3\" background_color=\"#ffffff\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\"][et_pb_column type=\"1_3\" custom_padding__hover=\"|||\" custom_padding=\"|||\"][et_pb_text _builder_version=\"3.26.3\" text_text_shadow_horizontal_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\"]\r\n\r\n<h3 style=\"text-align: center;\"><strong>Sci-Fi/Fantasy</strong></h3>\r\n<p style=\"text-align: center;\"><a href=\"http://itcamefrombeyondpulp.com/books/the-fallen-country-1986/\"><strong>The Fallen Country</strong></a><br /><strong>(Somtow Sucharitkul, 1986)</strong></p>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" custom_padding__hover=\"|||\" custom_padding=\"|||\"][et_pb_text _builder_version=\"3.26.3\" text_text_shadow_horizontal_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\"]\r\n\r\n<h3 style=\"text-align: center;\"><strong>Horror</strong></h3>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" custom_padding__hover=\"|||\" custom_padding=\"|||\"][et_pb_text _builder_version=\"3.26.3\" text_text_shadow_horizontal_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\"]\r\n\r\n<h3 style=\"text-align: center;\"><strong>Whatnot</strong></h3>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Books','','inherit','closed','closed','','33-revision-v1','','','2019-08-02 04:02:34','2019-08-02 04:02:34','',33,'http://itcamefrombeyondpulp.com/uncategorized/33-revision-v1/',0,'revision','',0);
INSERT INTO `wp6h_posts` VALUES (393,1,'2019-08-02 04:03:56','2019-08-02 04:03:56','[et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" custom_padding=\"0px|||||\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" custom_margin=\"||11px|||\" next_background_color=\"#000000\" global_module=\"74\"][et_pb_row global_parent=\"74\" custom_padding=\"0px||0px|||\" custom_margin=\"|auto|-66px|auto||\" _builder_version=\"3.26.3\"][et_pb_column type=\"4_4\" global_parent=\"74\" _builder_version=\"3.26.3\"][et_pb_image global_parent=\"74\" src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/header.jpg\" url=\"http://itcamefrombeyondpulp.com\" _builder_version=\"3.26.3\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.26.3\" width=\"1080px\" width_tablet=\"100%\" width_last_edited=\"on|phone\" module_alignment=\"center\" inner_module_alignment=\"center\" custom_padding=\"0px||0px||false|false\" z_index_tablet=\"500\" hover_enabled=\"0\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" prev_background_color=\"#000000\" next_background_color=\"#e02b20\" global_module=\"175\"][et_pb_fullwidth_menu global_parent=\"175\" menu_id=\"2\" submenu_direction=\"downwards\" fullwidth_menu=\"off\" dropdown_menu_text_color=\"#ffffff\" _builder_version=\"3.26.3\" menu_font=\"|800||on|||||\" menu_text_color=\"#ffffff\" menu_font_size=\"22px\" menu_letter_spacing=\"5px\" background_color=\"#e02b20\" border_width_bottom=\"5px\" text_orientation=\"center\" background_layout=\"dark\" custom_margin=\"0px||||false|false\" custom_padding=\"1px||0px||false|false\" z_index_tablet=\"500\" menu_text_shadow_horizontal_length_tablet=\"0px\" menu_text_shadow_vertical_length_tablet=\"0px\" menu_text_shadow_blur_strength_tablet=\"1px\" border_width_bottom_tablet=\"5px\" border_width_bottom_phone=\"5px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" /][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" background_color=\"#e02b20\" width=\"1080px\" module_alignment=\"center\" custom_padding=\"10px||0px|||\" prev_background_color=\"#ffffff\"][et_pb_row custom_padding=\"10px|10px||\" _builder_version=\"3.26.3\" background_color=\"#ffffff\" border_width_bottom=\"5px\" border_color_bottom=\"#e02b20\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.26.3\" z_index_tablet=\"500\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" text_text_shadow_horizontal_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_vertical_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_blur_strength=\"text_text_shadow_style,%91object Object%93\" link_text_shadow_horizontal_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_vertical_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_blur_strength=\"link_text_shadow_style,%91object Object%93\" ul_text_shadow_horizontal_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_vertical_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_blur_strength=\"ul_text_shadow_style,%91object Object%93\" ol_text_shadow_horizontal_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_vertical_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_blur_strength=\"ol_text_shadow_style,%91object Object%93\" quote_text_shadow_horizontal_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_vertical_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_blur_strength=\"quote_text_shadow_style,%91object Object%93\" header_text_shadow_horizontal_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_vertical_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_blur_strength=\"header_text_shadow_style,%91object Object%93\" header_2_text_shadow_horizontal_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_vertical_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_blur_strength=\"header_2_text_shadow_style,%91object Object%93\" header_3_text_shadow_horizontal_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_vertical_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_blur_strength=\"header_3_text_shadow_style,%91object Object%93\" header_4_text_shadow_horizontal_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_vertical_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_blur_strength=\"header_4_text_shadow_style,%91object Object%93\" header_5_text_shadow_horizontal_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_vertical_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_blur_strength=\"header_5_text_shadow_style,%91object Object%93\" header_6_text_shadow_horizontal_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_vertical_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_blur_strength=\"header_6_text_shadow_style,%91object Object%93\"]\r\n\r\n<h1 style=\"text-align: center;\">Book Reviews</h1>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.26.3\" background_color=\"#ffffff\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\" border_width_bottom=\"5px\" border_color_bottom=\"#e02b20\"][et_pb_column type=\"1_3\" custom_padding__hover=\"|||\" custom_padding=\"|||\"][et_pb_text _builder_version=\"3.26.3\" text_text_shadow_horizontal_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\"]\r\n\r\n<h3 style=\"text-align: center;\"><strong>Sci-Fi/Fantasy</strong></h3>\r\n<p style=\"text-align: center;\"><a href=\"http://itcamefrombeyondpulp.com/books/the-fallen-country-1986/\"><strong>The Fallen Country</strong></a><br /><strong>(Somtow Sucharitkul, 1986)</strong></p>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" custom_padding__hover=\"|||\" custom_padding=\"|||\"][et_pb_text _builder_version=\"3.26.3\" text_text_shadow_horizontal_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\"]\r\n\r\n<h3 style=\"text-align: center;\"><strong>Horror</strong></h3>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" custom_padding__hover=\"|||\" custom_padding=\"|||\"][et_pb_text _builder_version=\"3.26.3\" text_text_shadow_horizontal_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\"]\r\n\r\n<h3 style=\"text-align: center;\"><strong>Whatnot</strong></h3>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Books','','inherit','closed','closed','','33-revision-v1','','','2019-08-02 04:03:56','2019-08-02 04:03:56','',33,'http://itcamefrombeyondpulp.com/uncategorized/33-revision-v1/',0,'revision','',0),(395,1,'2019-08-03 21:27:41','2019-08-03 21:27:41','','disturbia','','inherit','closed','closed','','disturbia','','','2019-08-03 21:27:41','2019-08-03 21:27:41','',394,'http://itcamefrombeyondpulp.com/wp-content/uploads/2019/08/disturbia.jpg',0,'attachment','image/jpeg',0),(396,1,'2019-08-03 21:28:07','2019-08-03 21:28:07','','disturbia','','inherit','closed','closed','','disturbia-2','','','2019-08-03 21:28:07','2019-08-03 21:28:07','',394,'http://itcamefrombeyondpulp.com/wp-content/uploads/2019/08/disturbia-1.jpg',0,'attachment','image/jpeg',0),(397,1,'2019-08-03 21:28:22','2019-08-03 21:28:22','[et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" custom_padding=\"0px|||||\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" custom_margin=\"||11px|||\" next_background_color=\"#000000\" global_module=\"74\"][et_pb_row global_parent=\"74\" custom_padding=\"0px||0px|||\" custom_margin=\"|auto|-66px|auto||\" _builder_version=\"3.26.3\"][et_pb_column type=\"4_4\" global_parent=\"74\" _builder_version=\"3.26.3\"][et_pb_image global_parent=\"74\" src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/header.jpg\" url=\"http://itcamefrombeyondpulp.com\" _builder_version=\"3.26.3\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.26.3\" width=\"1080px\" width_tablet=\"100%\" width_last_edited=\"on|phone\" module_alignment=\"center\" inner_module_alignment=\"center\" custom_padding=\"0px||0px||false|false\" z_index_tablet=\"500\" hover_enabled=\"0\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" prev_background_color=\"#000000\" next_background_color=\"#e02b20\" global_module=\"175\"][et_pb_fullwidth_menu global_parent=\"175\" menu_id=\"2\" submenu_direction=\"downwards\" fullwidth_menu=\"off\" dropdown_menu_text_color=\"#ffffff\" _builder_version=\"3.26.3\" menu_font=\"|800||on|||||\" menu_text_color=\"#ffffff\" menu_font_size=\"22px\" menu_letter_spacing=\"5px\" background_color=\"#e02b20\" border_width_bottom=\"5px\" text_orientation=\"center\" background_layout=\"dark\" custom_margin=\"0px||||false|false\" custom_padding=\"1px||0px||false|false\" z_index_tablet=\"500\" menu_text_shadow_horizontal_length_tablet=\"0px\" menu_text_shadow_vertical_length_tablet=\"0px\" menu_text_shadow_blur_strength_tablet=\"1px\" border_width_bottom_tablet=\"5px\" border_width_bottom_phone=\"5px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" /][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" background_color=\"#e02b20\" width=\"1080px\" module_alignment=\"center\" custom_padding=\"10px||0px|||\" prev_background_color=\"#ffffff\"][et_pb_row _builder_version=\"3.26.3\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" background_color=\"#ffffff\" custom_padding=\"10px|10px||10px|false|false\" border_width_bottom=\"5px\" border_color_bottom=\"#e02b20\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image _builder_version=\"3.26.3\" src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/08/disturbia.jpg\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\" /][et_pb_text _builder_version=\"3.26.3\" z_index_tablet=\"500\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" text_text_shadow_horizontal_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_vertical_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_blur_strength=\"text_text_shadow_style,%91object Object%93\" link_text_shadow_horizontal_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_vertical_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_blur_strength=\"link_text_shadow_style,%91object Object%93\" ul_text_shadow_horizontal_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_vertical_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_blur_strength=\"ul_text_shadow_style,%91object Object%93\" ol_text_shadow_horizontal_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_vertical_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_blur_strength=\"ol_text_shadow_style,%91object Object%93\" quote_text_shadow_horizontal_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_vertical_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_blur_strength=\"quote_text_shadow_style,%91object Object%93\" header_text_shadow_horizontal_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_vertical_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_blur_strength=\"header_text_shadow_style,%91object Object%93\" header_2_text_shadow_horizontal_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_vertical_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_blur_strength=\"header_2_text_shadow_style,%91object Object%93\" header_3_text_shadow_horizontal_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_vertical_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_blur_strength=\"header_3_text_shadow_style,%91object Object%93\" header_4_text_shadow_horizontal_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_vertical_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_blur_strength=\"header_4_text_shadow_style,%91object Object%93\" header_5_text_shadow_horizontal_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_vertical_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_blur_strength=\"header_5_text_shadow_style,%91object Object%93\" header_6_text_shadow_horizontal_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_vertical_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_blur_strength=\"header_6_text_shadow_style,%91object Object%93\"]\r\n\r\n<h3 style=\"text-align: center;\"><strong><em>Disturbia</em> (D.J. Caruso, 2007, 104 min.)</strong></h3><p>The great American pastime of snooping on one\'s neighbors gets a high-tech DIY upgrade in <i>Disturbia</i>, and it\'s about time. Hearkening back to the 1950s and <em>Rear Window</em>, Alfred Hitchcock\'s paean to aiming telescopes not at the stars, but at the bedroom window of the house across the street, this film rephrases Tom Waits\'s immortal question, \"what\'s he building in there?\" as \"who\'s he killing in there?\" The end result is a surprisingly enjoyable film, efficiently made and featuring a strong young cast and some clever references to its cinematic forefathers. The most obvious influence is the aforementioned <em>Rear Window</em>, but to call it a \"remake\" is to miss the more contemporary influence of Tom Holland\'s brilliant 1985 scarefest <em>Fright Night</em>, which is one of the best vampire movies ever made (and which itself owes a lot to Hitchcock\'s film). The premise—a guy stuck in his house thinks his neighbor is a murderer—is straight out of the Hitchcock film, but the details are borrowed heavily from the Holland film.</p><p>A year after his father\'s tragic death in a horrific opening-scene car accident, sullen Kale (Shia LaBeouf) punches his Spanish teacher (one might argue that the teacher deserved it, but it\'s probably not a good idea to act on these impulses) and is sentenced to house arrest. He can\'t go farther than 100 feet from the kitchen, where the transmitter is located, and after his mom (Carrie-Anne Moss, looking sad to be so far from Trinity) cuts off his Xbox and iTunes accounts, his world is as constrained as James Stewart\'s was in <i>Rear Window</i>. But he\'s got the advantage of living in the early 21st century, so he has dozens of technological gewgaws that help him spy on his neighbors, including videocameras with night-vision lenses and fancy binoculars. One neighbor cheats on his wife with the maid; a trio of preadolescents play ding-dong-ditch and watch porn when their mom isn\'t around; his pretty new neighbor Ashley (Sarah Roemer) undresses with the lights on and her shades up; and his quiet neighbor Turner (David Morse) just might be a serial killer. Of course, nobody will believe him, so Kale, his annoying sidekick Ronnie (Aaron Yoo), and Ashley decide to do some investigating of their own, eventually establishing that Turner is not just a serial killer, he\'s a serial killer who knows they\'ve been watching. Cue the Bernard Hermann-influenced horror-movie music.</p><p>A lot of the film\'s success is due to Shia LaBeouf, who used to be a potentially great actor. He\'s got loads of affable, stammery charm, which director D.J. Caruso smartly lets him display; he\'s best in a scene where he has to explain to Ashley that his pseudo-stalking behavior is in fact charming and kiss-worthy, a point she acknowledges when she observes that he\'s either incredibly sweet or incredibly creepy (but why can\'t he be both?). If there\'s one thing he can\'t sell, it\'s the MO: he\'s supposed to turn to voyeurism out of desperated boredom, but he seems too well-adjusted to convince us. Thankfully the film mostly eschews clunky psychological motivations. The cast\'s biggest letdown is David Morse as Turner, the friendly neighborhood serial killer. Maybe it\'s because I was stuck on the <i>Fright Night</i> comparisons, but he just didn\'t bring the necessary levels of charm and dangerous attractiveness. Because I was comparing him to Chris Sarandon, who was never again as good as he was as the bisexual vampire Jerry Dandridge, Morse just wasn\'t convincing. He\'s imposing, yes, and he manages to ramp up the creepiness during the scene when he obliquely threatens Ashley, but for the most part he\'s just a stock baddie, his menace depending on the ominous soundtrack more than on anything in him.</p><p>Let me expound on my <i>Fright Night</i> theory. Both main characters have an annoying sidekick and a pretty girlfriend who\'s menaced by the bad guy. The murderer is a serial killer whom the protagonist links to a series of disappearances. There\'s a scene where the sidekick pretends to be dead to frighten the main character; later, the sidekick is the first one of the trio the bad guy attacks. There\'s an ominous visit by the murderer to flirt with the main character\'s mother; the dialogue even sounded the same, although it\'s been a while since I saw <i>Fright Night</i>. The protagonist\'s concrete proof comes as an unwelcome interruption to a makeout session with his girlfriend. Maybe I should make a table comparing the influences. Maybe you should run out and rent the film.</p><p>Cinematic progenitors aside, <i>Disturbia</i> is a smart, efficient little thriller that wears its heredity proudly; I was especially charmed by Geoff Zanelli\'s score, which inserts clever shades of Bernard Hermann compositions into the scary scenes—I couldn\'t identify specific influences, but the <i>feel</i> was spot-on. The film fades a bit toward the end into overly excitable horror-movie tropes and an emphasis on gore that was absent during the rest of the film, and Morse proves unable to rise above the inexorable laws of cinema that force him to stalk around, stonefaced, with a butcher knife. Still, for most of its running time it was a solid entry in the genre.</p>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Disturbia (2007)','','inherit','closed','closed','','394-revision-v1','','','2019-08-03 21:28:22','2019-08-03 21:28:22','',394,'http://itcamefrombeyondpulp.com/uncategorized/394-revision-v1/',0,'revision','',0),(398,1,'2019-08-03 21:28:53','2019-08-03 21:28:53','[et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" custom_padding=\"0px|||||\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" custom_margin=\"||11px|||\" next_background_color=\"#000000\" global_module=\"74\"][et_pb_row global_parent=\"74\" custom_padding=\"0px||0px|||\" custom_margin=\"|auto|-66px|auto||\" _builder_version=\"3.26.3\"][et_pb_column type=\"4_4\" global_parent=\"74\" _builder_version=\"3.26.3\"][et_pb_image global_parent=\"74\" src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/header.jpg\" url=\"http://itcamefrombeyondpulp.com\" _builder_version=\"3.26.3\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.26.3\" width=\"1080px\" width_tablet=\"100%\" width_last_edited=\"on|phone\" module_alignment=\"center\" inner_module_alignment=\"center\" custom_padding=\"0px||0px||false|false\" z_index_tablet=\"500\" hover_enabled=\"0\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" prev_background_color=\"#000000\" next_background_color=\"#e02b20\" global_module=\"175\"][et_pb_fullwidth_menu global_parent=\"175\" menu_id=\"2\" submenu_direction=\"downwards\" fullwidth_menu=\"off\" dropdown_menu_text_color=\"#ffffff\" _builder_version=\"3.26.3\" menu_font=\"|800||on|||||\" menu_text_color=\"#ffffff\" menu_font_size=\"22px\" menu_letter_spacing=\"5px\" background_color=\"#e02b20\" border_width_bottom=\"5px\" text_orientation=\"center\" background_layout=\"dark\" custom_margin=\"0px||||false|false\" custom_padding=\"1px||0px||false|false\" z_index_tablet=\"500\" menu_text_shadow_horizontal_length_tablet=\"0px\" menu_text_shadow_vertical_length_tablet=\"0px\" menu_text_shadow_blur_strength_tablet=\"1px\" border_width_bottom_tablet=\"5px\" border_width_bottom_phone=\"5px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" /][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" background_color=\"#e02b20\" width=\"1080px\" module_alignment=\"center\" custom_padding=\"10px||0px|||\" prev_background_color=\"#ffffff\"][et_pb_row _builder_version=\"3.26.3\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" background_color=\"#ffffff\" custom_padding=\"10px|10px||10px|false|false\" border_width_bottom=\"5px\" border_color_bottom=\"#e02b20\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image _builder_version=\"3.26.3\" src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/08/disturbia.jpg\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\" /][et_pb_text _builder_version=\"3.26.3\" z_index_tablet=\"500\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" text_text_shadow_horizontal_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_vertical_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_blur_strength=\"text_text_shadow_style,%91object Object%93\" link_text_shadow_horizontal_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_vertical_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_blur_strength=\"link_text_shadow_style,%91object Object%93\" ul_text_shadow_horizontal_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_vertical_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_blur_strength=\"ul_text_shadow_style,%91object Object%93\" ol_text_shadow_horizontal_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_vertical_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_blur_strength=\"ol_text_shadow_style,%91object Object%93\" quote_text_shadow_horizontal_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_vertical_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_blur_strength=\"quote_text_shadow_style,%91object Object%93\" header_text_shadow_horizontal_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_vertical_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_blur_strength=\"header_text_shadow_style,%91object Object%93\" header_2_text_shadow_horizontal_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_vertical_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_blur_strength=\"header_2_text_shadow_style,%91object Object%93\" header_3_text_shadow_horizontal_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_vertical_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_blur_strength=\"header_3_text_shadow_style,%91object Object%93\" header_4_text_shadow_horizontal_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_vertical_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_blur_strength=\"header_4_text_shadow_style,%91object Object%93\" header_5_text_shadow_horizontal_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_vertical_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_blur_strength=\"header_5_text_shadow_style,%91object Object%93\" header_6_text_shadow_horizontal_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_vertical_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_blur_strength=\"header_6_text_shadow_style,%91object Object%93\"]\n\n<h3 style=\"text-align: center;\"><strong><em>Disturbia</em> (D.J. Caruso, 2007, 104 min.)</strong></h3>\n<p>The great American pastime of snooping on one\'s neighbors gets a high-tech DIY upgrade in <i>Disturbia</i>, and it\'s about time. Hearkening back to the 1950s and <em>Rear Window</em>, Alfred Hitchcock\'s paean to aiming telescopes not at the stars, but at the bedroom window of the house across the street, this film rephrases Tom Waits\'s immortal question, \"what\'s he building in there?\" as \"who\'s he killing in there?\" The end result is a surprisingly enjoyable film, efficiently made and featuring a strong young cast and some clever references to its cinematic forefathers. The most obvious influence is the aforementioned <em>Rear Window</em>, but to call it a \"remake\" is to miss the more contemporary influence of Tom Holland\'s brilliant 1985 scarefest <em>Fright Night</em>, which is one of the best vampire movies ever made (and which itself owes a lot to Hitchcock\'s film). The premise—a guy stuck in his house thinks his neighbor is a murderer—is straight out of the Hitchcock film, but the details are borrowed heavily from the Holland film.</p>\n<p>A year after his father\'s tragic death in a horrific opening-scene car accident, sullen Kale (Shia LaBeouf) punches his Spanish teacher (one might argue that the teacher deserved it, but it\'s probably not a good idea to act on these impulses) and is sentenced to house arrest. He can\'t go farther than 100 feet from the kitchen, where the transmitter is located, and after his mom (Carrie-Anne Moss, looking sad to be so far from Trinity) cuts off his Xbox and iTunes accounts, his world is as constrained as James Stewart\'s was in <i>Rear Window</i>. But he\'s got the advantage of living in the early 21st century, so he has dozens of technological gewgaws that help him spy on his neighbors, including videocameras with night-vision lenses and fancy binoculars. One neighbor cheats on his wife with the maid; a trio of preadolescents play ding-dong-ditch and watch porn when their mom isn\'t around; his pretty new neighbor Ashley (Sarah Roemer) undresses with the lights on and her shades up; and his quiet neighbor Turner (David Morse) just might be a serial killer. Of course, nobody will believe him, so Kale, his annoying sidekick Ronnie (Aaron Yoo), and Ashley decide to do some investigating of their own, eventually establishing that Turner is not just a serial killer, he\'s a serial killer who knows they\'ve been watching. Cue the Bernard Hermann-influenced horror-movie music.</p>\n<p>A lot of the film\'s success is due to Shia LaBeouf, who used to be a potentially great actor. He\'s got loads of affable, stammery charm, which director D.J. Caruso smartly lets him display; he\'s best in a scene where he has to explain to Ashley that his pseudo-stalking behavior is in fact charming and kiss-worthy, a point she acknowledges when she observes that he\'s either incredibly sweet or incredibly creepy (but why can\'t he be both?). If there\'s one thing he can\'t sell, it\'s the MO: he\'s supposed to turn to voyeurism out of desperated boredom, but he seems too well-adjusted to convince us. Thankfully the film mostly eschews clunky psychological motivations. The cast\'s biggest letdown is David Morse as Turner, the friendly neighborhood serial killer. Maybe it\'s because I was stuck on the <i>Fright Night</i> comparisons, but he just didn\'t bring the necessary levels of charm and dangerous attractiveness. Because I was comparing him to Chris Sarandon, who was never again as good as he was as the bisexual vampire Jerry Dandridge, Morse just wasn\'t convincing. He\'s imposing, yes, and he manages to ramp up the creepiness during the scene when he obliquely threatens Ashley, but for the most part he\'s just a stock baddie, his menace depending on the ominous soundtrack more than on anything in him.</p>\n<p>Let me expound on my <i>Fright Night</i> theory. Both main characters have an annoying sidekick and a pretty girlfriend who\'s menaced by the bad guy. The murderer is a serial killer whom the protagonist links to a series of disappearances. There\'s a scene where the sidekick pretends to be dead to frighten the main character; later, the sidekick is the first one of the trio the bad guy attacks. There\'s an ominous visit by the murderer to flirt with the main character\'s mother; the dialogue even sounded the same, although it\'s been a while since I saw <i>Fright Night</i>. The protagonist\'s concrete proof comes as an unwelcome interruption to a makeout session with his girlfriend. Maybe I should make a table comparing the influences. Maybe you should run out and rent the film.</p>\n<p>Cinematic progenitors aside, <i>Disturbia</i> is a smart, efficient little thriller that wears its heredity proudly; I was especially charmed by Geoff Zanelli\'s score, which inserts clever shades of Bernard Hermann compositions into the scary scenes—I couldn\'t identify specific influences, but the <i>feel</i> was spot-on. The film fades a bit toward the end into overly excitable horror-movie tropes and an emphasis on gore that was absent during the rest of the film, and Morse proves unable to rise above the inexorable laws of cinema that force him to stalk around, stonefaced, with a butcher knife. Still, for most of its running time it was a solid entry in the genre.</p>\n\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Disturbia (2007)','','inherit','closed','closed','','394-autosave-v1','','','2019-08-03 21:28:53','2019-08-03 21:28:53','',394,'http://itcamefrombeyondpulp.com/uncategorized/394-autosave-v1/',0,'revision','',0),(399,1,'2019-08-03 21:34:24','2019-08-03 21:34:24','[et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" custom_padding=\"0px|||||\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" custom_margin=\"||11px|||\" next_background_color=\"#000000\" global_module=\"74\"][et_pb_row global_parent=\"74\" custom_padding=\"0px||0px|||\" custom_margin=\"|auto|-66px|auto||\" _builder_version=\"3.26.3\"][et_pb_column type=\"4_4\" global_parent=\"74\" _builder_version=\"3.26.3\"][et_pb_image global_parent=\"74\" src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/header.jpg\" url=\"http://itcamefrombeyondpulp.com\" _builder_version=\"3.26.3\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.26.3\" width=\"1080px\" width_tablet=\"100%\" width_last_edited=\"on|phone\" module_alignment=\"center\" inner_module_alignment=\"center\" custom_padding=\"0px||0px||false|false\" z_index_tablet=\"500\" hover_enabled=\"0\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" prev_background_color=\"#000000\" next_background_color=\"#e02b20\" global_module=\"175\"][et_pb_fullwidth_menu global_parent=\"175\" menu_id=\"2\" submenu_direction=\"downwards\" fullwidth_menu=\"off\" dropdown_menu_text_color=\"#ffffff\" _builder_version=\"3.26.3\" menu_font=\"|800||on|||||\" menu_text_color=\"#ffffff\" menu_font_size=\"22px\" menu_letter_spacing=\"5px\" background_color=\"#e02b20\" border_width_bottom=\"5px\" text_orientation=\"center\" background_layout=\"dark\" custom_margin=\"0px||||false|false\" custom_padding=\"1px||0px||false|false\" z_index_tablet=\"500\" menu_text_shadow_horizontal_length_tablet=\"0px\" menu_text_shadow_vertical_length_tablet=\"0px\" menu_text_shadow_blur_strength_tablet=\"1px\" border_width_bottom_tablet=\"5px\" border_width_bottom_phone=\"5px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" /][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" background_color=\"#e02b20\" width=\"1080px\" module_alignment=\"center\" custom_padding=\"10px||0px|||\" prev_background_color=\"#ffffff\"][et_pb_row _builder_version=\"3.26.3\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" background_color=\"#ffffff\" custom_padding=\"10px|10px||10px|false|false\" border_width_bottom=\"5px\" border_color_bottom=\"#e02b20\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image _builder_version=\"3.26.3\" src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/08/dracdaughter.jpg\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\" /][et_pb_text _builder_version=\"3.26.3\" z_index_tablet=\"500\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" text_text_shadow_horizontal_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_vertical_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_blur_strength=\"text_text_shadow_style,%91object Object%93\" link_text_shadow_horizontal_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_vertical_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_blur_strength=\"link_text_shadow_style,%91object Object%93\" ul_text_shadow_horizontal_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_vertical_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_blur_strength=\"ul_text_shadow_style,%91object Object%93\" ol_text_shadow_horizontal_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_vertical_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_blur_strength=\"ol_text_shadow_style,%91object Object%93\" quote_text_shadow_horizontal_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_vertical_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_blur_strength=\"quote_text_shadow_style,%91object Object%93\" header_text_shadow_horizontal_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_vertical_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_blur_strength=\"header_text_shadow_style,%91object Object%93\" header_2_text_shadow_horizontal_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_vertical_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_blur_strength=\"header_2_text_shadow_style,%91object Object%93\" header_3_text_shadow_horizontal_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_vertical_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_blur_strength=\"header_3_text_shadow_style,%91object Object%93\" header_4_text_shadow_horizontal_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_vertical_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_blur_strength=\"header_4_text_shadow_style,%91object Object%93\" header_5_text_shadow_horizontal_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_vertical_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_blur_strength=\"header_5_text_shadow_style,%91object Object%93\" header_6_text_shadow_horizontal_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_vertical_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_blur_strength=\"header_6_text_shadow_style,%91object Object%93\"]\r\n\r\n<h3 style=\"text-align: center;\"><strong><em>Dracula\'s Daughter</em> (Lambert Hillyer, 1936, 71 min.)</strong></h3><p>\"Why should Cecil B. DeMille have a monopoly on the great box office values of torture and cruelty?\" asked John Balderton, the writer of a first draft of this long-delayed sequel to <em>Dracula</em>, the iconic, if somewhat tepid, 1931 version of Bram Stoker\'s famous novel. Balderton envisioned a grisly horror film, full of the shrieks and cries of the damned, but his version didn\'t make the cut. Instead, this version, based on one of Stoker\'s stories, finally hit the screens in 1936, heavy on atmosphere and shocking (for its time) sexuality. Although it is a marked improvement on the original film, it\'s still a bit of a snooze, relying too much on forced comedy and not enough on suspense or fright.</p><p>The film picks up exactly where the first film left off. Von Helsing (Edward Van Sloan), who was Van Helsing in the first film, has just offed Dracula, and Whitby constables stumble on the scene and arrest him as a murderer. The constable in charge is faced with quite a decision: try Von Helsing for murder and likely hang him, put him in the looney bin because of all his talk about vampires, or believe him. Von Helsing implores him to call on one of his former students, the renowned psychologist Dr. Garth (Otto Kruger), to help clear him.</p><p>Meanwhile, before things can get underway, a mysterious woman steals Dracula\'s body and destroys it. Gloria Holden is Countess Zaleska, the titular daughter. She thinks that destroying her father\'s corpse will free her from her vampiric curse, but it doesn\'t work, as is obvious as soon as she returns to London and starts ogling the necks of dapper young men. It doesn\'t help that her helper Sandor (Irving Pichel, who co-directed the great action film <em>The Most Dangerous Game</em>) keeps taunting her about how much she needs blood. The film treats vampirism as more of an addiction than an evil curse, and it\'s fitting that she keeps an enabler around to sabotage her efforts to get clean.</p><p>After meeting Dr. Garth at a party, she decides that his experiments in hypnosis will help her. She attempts to seduce him, but he\'s wary, especially as the body count in London starts to rise, as victims with strange puncture wounds on their necks start turning up. In the centerpiece of the film, as Zaleska attempts to do some painting to distract her from her need for blood, she enlists Sandor to bring her a model, Lili (Nan Grey). The sight of Lili\'s lily-white neck proves too much for her, and in a sexually charged scene, Zaleska slowly moves toward the frightened young girl; at the last moment, the camera tilts up to record a smug-looking tribal mask, obviously enjoying the lesbian encounter below.</p><p>Any suspense is constantly broken up by the allegedly playful, flirting banter between Dr. Garth and his assistant, the heiress Janet Blake (Marguerite Churchill). He plays the stodgy older man to her uninhibited younger woman, and although there\'s probably supposed to be a romantic spark there, all I felt was annoyance. Churchill\'s character seems to really exist only to be put in peril so that her brave protector can save the day.</p><p>The film makes the most of Holden\'s almost patrician face and admittedly hypnotic eyes. She\'s no beauty by most standards, but as the scion of a vampiric Count, she\'s exactly right. The menace and erotic interest she arouses would have been absent, had the filmmakers gone with a more typical Hollywood pretty face. She has a good match in Irving Pichel as her savant Sandor, whose glowering, mocking eyes push her toward evil. Sadly, the good guys don\'t have much personality. Kruger, as Garth, has a demeanor that says \"annoyed\" more than anything. Edward Van Sloan—although the events of the previous film make it quite clear that he\'s not crazy—<i>seems</i> a little off, and I wondered whether the film was trying to make some observation about his single-minded pursuit of vampires.</p><p>Zaleska wasn\'t the only one who was cursed: the film was late and over budget, and during filming, a heavy lamp fell onto director Lambert Hillyer\'s head, putting him in the hospital. It was supposed to save Universal, but it failed; Carl Laemmle had to sell the studio before the film even opened. The film is a middle-level entry in Universal\'s stable of horror films, certainly better than its predecessor, but certainly not up with <em>Bride of Frankenstein</em>.</p>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Dracula\'s Daughter (1936)','','publish','closed','closed','','draculas-daughter-1936','','','2019-08-03 21:34:24','2019-08-03 21:34:24','',0,'http://itcamefrombeyondpulp.com/?p=399',0,'post','',0),(400,1,'2019-08-03 21:33:02','2019-08-03 21:33:02','','dracdaughter','','inherit','closed','closed','','dracdaughter','','','2019-08-03 21:33:02','2019-08-03 21:33:02','',399,'http://itcamefrombeyondpulp.com/wp-content/uploads/2019/08/dracdaughter.jpg',0,'attachment','image/jpeg',0),(401,1,'2019-08-03 21:34:12','2019-08-03 21:34:12','','dracdaughter','','inherit','closed','closed','','dracdaughter-2','','','2019-08-03 21:34:12','2019-08-03 21:34:12','',399,'http://itcamefrombeyondpulp.com/wp-content/uploads/2019/08/dracdaughter-1.jpg',0,'attachment','image/jpeg',0),(402,1,'2019-08-03 21:34:24','2019-08-03 21:34:24','[et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" custom_padding=\"0px|||||\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" custom_margin=\"||11px|||\" next_background_color=\"#000000\" global_module=\"74\"][et_pb_row global_parent=\"74\" custom_padding=\"0px||0px|||\" custom_margin=\"|auto|-66px|auto||\" _builder_version=\"3.26.3\"][et_pb_column type=\"4_4\" global_parent=\"74\" _builder_version=\"3.26.3\"][et_pb_image global_parent=\"74\" src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/header.jpg\" url=\"http://itcamefrombeyondpulp.com\" _builder_version=\"3.26.3\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.26.3\" width=\"1080px\" width_tablet=\"100%\" width_last_edited=\"on|phone\" module_alignment=\"center\" inner_module_alignment=\"center\" custom_padding=\"0px||0px||false|false\" z_index_tablet=\"500\" hover_enabled=\"0\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" prev_background_color=\"#000000\" next_background_color=\"#e02b20\" global_module=\"175\"][et_pb_fullwidth_menu global_parent=\"175\" menu_id=\"2\" submenu_direction=\"downwards\" fullwidth_menu=\"off\" dropdown_menu_text_color=\"#ffffff\" _builder_version=\"3.26.3\" menu_font=\"|800||on|||||\" menu_text_color=\"#ffffff\" menu_font_size=\"22px\" menu_letter_spacing=\"5px\" background_color=\"#e02b20\" border_width_bottom=\"5px\" text_orientation=\"center\" background_layout=\"dark\" custom_margin=\"0px||||false|false\" custom_padding=\"1px||0px||false|false\" z_index_tablet=\"500\" menu_text_shadow_horizontal_length_tablet=\"0px\" menu_text_shadow_vertical_length_tablet=\"0px\" menu_text_shadow_blur_strength_tablet=\"1px\" border_width_bottom_tablet=\"5px\" border_width_bottom_phone=\"5px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" /][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" background_color=\"#e02b20\" width=\"1080px\" module_alignment=\"center\" custom_padding=\"10px||0px|||\" prev_background_color=\"#ffffff\"][et_pb_row _builder_version=\"3.26.3\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" background_color=\"#ffffff\" custom_padding=\"10px|10px||10px|false|false\" border_width_bottom=\"5px\" border_color_bottom=\"#e02b20\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image _builder_version=\"3.26.3\" src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/08/dracdaughter.jpg\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\" /][et_pb_text _builder_version=\"3.26.3\" z_index_tablet=\"500\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" text_text_shadow_horizontal_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_vertical_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_blur_strength=\"text_text_shadow_style,%91object Object%93\" link_text_shadow_horizontal_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_vertical_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_blur_strength=\"link_text_shadow_style,%91object Object%93\" ul_text_shadow_horizontal_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_vertical_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_blur_strength=\"ul_text_shadow_style,%91object Object%93\" ol_text_shadow_horizontal_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_vertical_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_blur_strength=\"ol_text_shadow_style,%91object Object%93\" quote_text_shadow_horizontal_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_vertical_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_blur_strength=\"quote_text_shadow_style,%91object Object%93\" header_text_shadow_horizontal_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_vertical_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_blur_strength=\"header_text_shadow_style,%91object Object%93\" header_2_text_shadow_horizontal_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_vertical_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_blur_strength=\"header_2_text_shadow_style,%91object Object%93\" header_3_text_shadow_horizontal_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_vertical_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_blur_strength=\"header_3_text_shadow_style,%91object Object%93\" header_4_text_shadow_horizontal_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_vertical_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_blur_strength=\"header_4_text_shadow_style,%91object Object%93\" header_5_text_shadow_horizontal_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_vertical_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_blur_strength=\"header_5_text_shadow_style,%91object Object%93\" header_6_text_shadow_horizontal_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_vertical_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_blur_strength=\"header_6_text_shadow_style,%91object Object%93\"]\r\n\r\n<h3 style=\"text-align: center;\"><strong><em>Dracula\'s Daughter</em> (Lambert Hillyer, 1936, 71 min.)</strong></h3><p>\"Why should Cecil B. DeMille have a monopoly on the great box office values of torture and cruelty?\" asked John Balderton, the writer of a first draft of this long-delayed sequel to <em>Dracula</em>, the iconic, if somewhat tepid, 1931 version of Bram Stoker\'s famous novel. Balderton envisioned a grisly horror film, full of the shrieks and cries of the damned, but his version didn\'t make the cut. Instead, this version, based on one of Stoker\'s stories, finally hit the screens in 1936, heavy on atmosphere and shocking (for its time) sexuality. Although it is a marked improvement on the original film, it\'s still a bit of a snooze, relying too much on forced comedy and not enough on suspense or fright.</p><p>The film picks up exactly where the first film left off. Von Helsing (Edward Van Sloan), who was Van Helsing in the first film, has just offed Dracula, and Whitby constables stumble on the scene and arrest him as a murderer. The constable in charge is faced with quite a decision: try Von Helsing for murder and likely hang him, put him in the looney bin because of all his talk about vampires, or believe him. Von Helsing implores him to call on one of his former students, the renowned psychologist Dr. Garth (Otto Kruger), to help clear him.</p><p>Meanwhile, before things can get underway, a mysterious woman steals Dracula\'s body and destroys it. Gloria Holden is Countess Zaleska, the titular daughter. She thinks that destroying her father\'s corpse will free her from her vampiric curse, but it doesn\'t work, as is obvious as soon as she returns to London and starts ogling the necks of dapper young men. It doesn\'t help that her helper Sandor (Irving Pichel, who co-directed the great action film <em>The Most Dangerous Game</em>) keeps taunting her about how much she needs blood. The film treats vampirism as more of an addiction than an evil curse, and it\'s fitting that she keeps an enabler around to sabotage her efforts to get clean.</p><p>After meeting Dr. Garth at a party, she decides that his experiments in hypnosis will help her. She attempts to seduce him, but he\'s wary, especially as the body count in London starts to rise, as victims with strange puncture wounds on their necks start turning up. In the centerpiece of the film, as Zaleska attempts to do some painting to distract her from her need for blood, she enlists Sandor to bring her a model, Lili (Nan Grey). The sight of Lili\'s lily-white neck proves too much for her, and in a sexually charged scene, Zaleska slowly moves toward the frightened young girl; at the last moment, the camera tilts up to record a smug-looking tribal mask, obviously enjoying the lesbian encounter below.</p><p>Any suspense is constantly broken up by the allegedly playful, flirting banter between Dr. Garth and his assistant, the heiress Janet Blake (Marguerite Churchill). He plays the stodgy older man to her uninhibited younger woman, and although there\'s probably supposed to be a romantic spark there, all I felt was annoyance. Churchill\'s character seems to really exist only to be put in peril so that her brave protector can save the day.</p><p>The film makes the most of Holden\'s almost patrician face and admittedly hypnotic eyes. She\'s no beauty by most standards, but as the scion of a vampiric Count, she\'s exactly right. The menace and erotic interest she arouses would have been absent, had the filmmakers gone with a more typical Hollywood pretty face. She has a good match in Irving Pichel as her savant Sandor, whose glowering, mocking eyes push her toward evil. Sadly, the good guys don\'t have much personality. Kruger, as Garth, has a demeanor that says \"annoyed\" more than anything. Edward Van Sloan—although the events of the previous film make it quite clear that he\'s not crazy—<i>seems</i> a little off, and I wondered whether the film was trying to make some observation about his single-minded pursuit of vampires.</p><p>Zaleska wasn\'t the only one who was cursed: the film was late and over budget, and during filming, a heavy lamp fell onto director Lambert Hillyer\'s head, putting him in the hospital. It was supposed to save Universal, but it failed; Carl Laemmle had to sell the studio before the film even opened. The film is a middle-level entry in Universal\'s stable of horror films, certainly better than its predecessor, but certainly not up with <em>Bride of Frankenstein</em>.</p>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Dracula\'s Daughter (1936)','','inherit','closed','closed','','399-revision-v1','','','2019-08-03 21:34:24','2019-08-03 21:34:24','',399,'http://itcamefrombeyondpulp.com/uncategorized/399-revision-v1/',0,'revision','',0),(403,1,'2019-08-03 21:36:07','2019-08-03 21:36:07','[et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" custom_padding=\"0px|||||\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" custom_margin=\"||11px|||\" next_background_color=\"#000000\" global_module=\"74\"][et_pb_row global_parent=\"74\" custom_padding=\"0px||0px|||\" custom_margin=\"|auto|-66px|auto||\" _builder_version=\"3.26.3\"][et_pb_column type=\"4_4\" global_parent=\"74\" _builder_version=\"3.26.3\"][et_pb_image global_parent=\"74\" src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/header.jpg\" url=\"http://itcamefrombeyondpulp.com\" _builder_version=\"3.26.3\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.26.3\" width=\"1080px\" width_tablet=\"100%\" width_last_edited=\"on|phone\" module_alignment=\"center\" inner_module_alignment=\"center\" custom_padding=\"0px||0px||false|false\" z_index_tablet=\"500\" hover_enabled=\"0\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" prev_background_color=\"#000000\" next_background_color=\"#e02b20\" global_module=\"175\"][et_pb_fullwidth_menu global_parent=\"175\" menu_id=\"2\" submenu_direction=\"downwards\" fullwidth_menu=\"off\" dropdown_menu_text_color=\"#ffffff\" _builder_version=\"3.26.3\" menu_font=\"|800||on|||||\" menu_text_color=\"#ffffff\" menu_font_size=\"22px\" menu_letter_spacing=\"5px\" background_color=\"#e02b20\" border_width_bottom=\"5px\" text_orientation=\"center\" background_layout=\"dark\" custom_margin=\"0px||||false|false\" custom_padding=\"1px||0px||false|false\" z_index_tablet=\"500\" menu_text_shadow_horizontal_length_tablet=\"0px\" menu_text_shadow_vertical_length_tablet=\"0px\" menu_text_shadow_blur_strength_tablet=\"1px\" border_width_bottom_tablet=\"5px\" border_width_bottom_phone=\"5px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" /][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" background_color=\"#e02b20\" width=\"1080px\" module_alignment=\"center\" custom_padding=\"10px||0px|||\" prev_background_color=\"#ffffff\"][et_pb_row _builder_version=\"3.26.3\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" background_color=\"#ffffff\" custom_padding=\"10px|10px||10px|false|false\" border_width_bottom=\"5px\" border_color_bottom=\"#e02b20\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image _builder_version=\"3.26.3\" src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/08/dracdaughter.jpg\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\" /][et_pb_text _builder_version=\"3.26.3\" z_index_tablet=\"500\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" text_text_shadow_horizontal_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_vertical_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_blur_strength=\"text_text_shadow_style,%91object Object%93\" link_text_shadow_horizontal_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_vertical_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_blur_strength=\"link_text_shadow_style,%91object Object%93\" ul_text_shadow_horizontal_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_vertical_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_blur_strength=\"ul_text_shadow_style,%91object Object%93\" ol_text_shadow_horizontal_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_vertical_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_blur_strength=\"ol_text_shadow_style,%91object Object%93\" quote_text_shadow_horizontal_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_vertical_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_blur_strength=\"quote_text_shadow_style,%91object Object%93\" header_text_shadow_horizontal_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_vertical_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_blur_strength=\"header_text_shadow_style,%91object Object%93\" header_2_text_shadow_horizontal_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_vertical_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_blur_strength=\"header_2_text_shadow_style,%91object Object%93\" header_3_text_shadow_horizontal_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_vertical_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_blur_strength=\"header_3_text_shadow_style,%91object Object%93\" header_4_text_shadow_horizontal_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_vertical_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_blur_strength=\"header_4_text_shadow_style,%91object Object%93\" header_5_text_shadow_horizontal_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_vertical_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_blur_strength=\"header_5_text_shadow_style,%91object Object%93\" header_6_text_shadow_horizontal_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_vertical_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_blur_strength=\"header_6_text_shadow_style,%91object Object%93\"]\n\n<h3 style=\"text-align: center;\"><strong><em>Dracula\'s Daughter</em> (Lambert Hillyer, 1936, 71 min.)</strong></h3>\n<p>\"Why should Cecil B. DeMille have a monopoly on the great box office values of torture and cruelty?\" asked John Balderton, the writer of a first draft of this long-delayed sequel to <em>Dracula</em>, the iconic, if somewhat tepid, 1931 version of Bram Stoker\'s famous novel. Balderton envisioned a grisly horror film, full of the shrieks and cries of the damned, but his version didn\'t make the cut. Instead, this version, based on one of Stoker\'s stories, finally hit the screens in 1936, heavy on atmosphere and shocking (for its time) sexuality. Although it is a marked improvement on the original film, it\'s still a bit of a snooze, relying too much on forced comedy and not enough on suspense or fright.</p>\n<p>The film picks up exactly where the first film left off. Von Helsing (Edward Van Sloan), who was Van Helsing in the first film, has just offed Dracula, and Whitby constables stumble on the scene and arrest him as a murderer. The constable in charge is faced with quite a decision: try Von Helsing for murder and likely hang him, put him in the looney bin because of all his talk about vampires, or believe him. Von Helsing implores him to call on one of his former students, the renowned psychologist Dr. Garth (Otto Kruger), to help clear him.</p>\n<p>Meanwhile, before things can get underway, a mysterious woman steals Dracula\'s body and destroys it. Gloria Holden is Countess Zaleska, the titular daughter. She thinks that destroying her father\'s corpse will free her from her vampiric curse, but it doesn\'t work, as is obvious as soon as she returns to London and starts ogling the necks of dapper young men. It doesn\'t help that her helper Sandor (Irving Pichel, who co-directed the great action film <em>The Most Dangerous Game</em>) keeps taunting her about how much she needs blood. The film treats vampirism as more of an addiction than an evil curse, and it\'s fitting that she keeps an enabler around to sabotage her efforts to get clean.</p>\n<p>After meeting Dr. Garth at a party, she decides that his experiments in hypnosis will help her. She attempts to seduce him, but he\'s wary, especially as the body count in London starts to rise, as victims with strange puncture wounds on their necks start turning up. In the centerpiece of the film, as Zaleska attempts to do some painting to distract her from her need for blood, she enlists Sandor to bring her a model, Lili (Nan Grey). The sight of Lili\'s lily-white neck proves too much for her, and in a sexually charged scene, Zaleska slowly moves toward the frightened young girl; at the last moment, the camera tilts up to record a smug-looking tribal mask, obviously enjoying the lesbian encounter below.</p>\n<p>Any suspense is constantly broken up by the allegedly playful, flirting banter between Dr. Garth and his assistant, the heiress Janet Blake (Marguerite Churchill). He plays the stodgy older man to her uninhibited younger woman, and although there\'s probably supposed to be a romantic spark there, all I felt was annoyance. Churchill\'s character seems to really exist only to be put in peril so that her brave protector can save the day.</p>\n<p>The film makes the most of Holden\'s almost patrician face and admittedly hypnotic eyes. She\'s no beauty by most standards, but as the scion of a vampiric Count, she\'s exactly right. The menace and erotic interest she arouses would have been absent, had the filmmakers gone with a more typical Hollywood pretty face. She has a good match in Irving Pichel as her savant Sandor, whose glowering, mocking eyes push her toward evil. Sadly, the good guys don\'t have much personality. Kruger, as Garth, has a demeanor that says \"annoyed\" more than anything. Edward Van Sloan—although the events of the previous film make it quite clear that he\'s not crazy—<i>seems</i> a little off, and I wondered whether the film was trying to make some observation about his single-minded pursuit of vampires.</p>\n<p>Zaleska wasn\'t the only one who was cursed: the film was late and over budget, and during filming, a heavy lamp fell onto director Lambert Hillyer\'s head, putting him in the hospital. It was supposed to save Universal, but it failed; Carl Laemmle had to sell the studio before the film even opened. The film is a middle-level entry in Universal\'s stable of horror films, certainly better than its predecessor, but certainly not up with <em>Bride of Frankenstein</em>.</p>\n\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Dracula\'s Daughter (1936)','','inherit','closed','closed','','399-autosave-v1','','','2019-08-03 21:36:07','2019-08-03 21:36:07','',399,'http://itcamefrombeyondpulp.com/uncategorized/399-autosave-v1/',0,'revision','',0),(404,1,'2019-08-03 21:40:44','2019-08-03 21:40:44','[et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" custom_padding=\"0px|||||\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" custom_margin=\"||11px|||\" next_background_color=\"#000000\" global_module=\"74\"][et_pb_row global_parent=\"74\" custom_padding=\"0px||0px|||\" custom_margin=\"|auto|-66px|auto||\" _builder_version=\"3.26.3\"][et_pb_column type=\"4_4\" global_parent=\"74\" _builder_version=\"3.26.3\"][et_pb_image global_parent=\"74\" src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/header.jpg\" url=\"http://itcamefrombeyondpulp.com\" _builder_version=\"3.26.3\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.26.3\" width=\"1080px\" width_tablet=\"100%\" width_last_edited=\"on|phone\" module_alignment=\"center\" inner_module_alignment=\"center\" custom_padding=\"0px||0px||false|false\" z_index_tablet=\"500\" hover_enabled=\"0\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" prev_background_color=\"#000000\" next_background_color=\"#e02b20\" global_module=\"175\"][et_pb_fullwidth_menu global_parent=\"175\" menu_id=\"2\" submenu_direction=\"downwards\" fullwidth_menu=\"off\" dropdown_menu_text_color=\"#ffffff\" _builder_version=\"3.26.3\" menu_font=\"|800||on|||||\" menu_text_color=\"#ffffff\" menu_font_size=\"22px\" menu_letter_spacing=\"5px\" background_color=\"#e02b20\" border_width_bottom=\"5px\" text_orientation=\"center\" background_layout=\"dark\" custom_margin=\"0px||||false|false\" custom_padding=\"1px||0px||false|false\" z_index_tablet=\"500\" menu_text_shadow_horizontal_length_tablet=\"0px\" menu_text_shadow_vertical_length_tablet=\"0px\" menu_text_shadow_blur_strength_tablet=\"1px\" border_width_bottom_tablet=\"5px\" border_width_bottom_phone=\"5px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" /][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" background_color=\"#e02b20\" width=\"1080px\" module_alignment=\"center\" custom_padding=\"10px||0px|||\" prev_background_color=\"#ffffff\"][et_pb_row _builder_version=\"3.26.3\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" background_color=\"#ffffff\" custom_padding=\"10px|10px||10px|false|false\" border_width_bottom=\"5px\" border_color_bottom=\"#e02b20\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image _builder_version=\"3.26.3\" src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/08/witchhouse.jpg\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\" /][et_pb_text _builder_version=\"3.26.3\" z_index_tablet=\"500\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" text_text_shadow_horizontal_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_vertical_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_blur_strength=\"text_text_shadow_style,%91object Object%93\" link_text_shadow_horizontal_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_vertical_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_blur_strength=\"link_text_shadow_style,%91object Object%93\" ul_text_shadow_horizontal_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_vertical_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_blur_strength=\"ul_text_shadow_style,%91object Object%93\" ol_text_shadow_horizontal_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_vertical_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_blur_strength=\"ol_text_shadow_style,%91object Object%93\" quote_text_shadow_horizontal_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_vertical_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_blur_strength=\"quote_text_shadow_style,%91object Object%93\" header_text_shadow_horizontal_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_vertical_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_blur_strength=\"header_text_shadow_style,%91object Object%93\" header_2_text_shadow_horizontal_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_vertical_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_blur_strength=\"header_2_text_shadow_style,%91object Object%93\" header_3_text_shadow_horizontal_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_vertical_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_blur_strength=\"header_3_text_shadow_style,%91object Object%93\" header_4_text_shadow_horizontal_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_vertical_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_blur_strength=\"header_4_text_shadow_style,%91object Object%93\" header_5_text_shadow_horizontal_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_vertical_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_blur_strength=\"header_5_text_shadow_style,%91object Object%93\" header_6_text_shadow_horizontal_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_vertical_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_blur_strength=\"header_6_text_shadow_style,%91object Object%93\"]\r\n\r\n<h3 style=\"text-align: center;\"><strong><em>Masters of Horror: Dreams in the Witch-House</em> (Stuart Gordon, 2005, 55 min.)</strong></h3><p>Horror-film director Stuart Gordon has attempted, more than anyone, to bring the stories of H.P. Lovecraft to the screen. That all of his previous attempts have been unsuccessful isn\'t a surprise, as no one has been able to translate Lovecraft\'s particular brand of horror into film. The surprise is that this short film, part of Showtime\'s groundbreaking \"Masters of Horror\" series, is probably the closest anyone has come to succeeding. It\'s not perfect, and its early comedic tone, as dark as it might be, isn\'t right, but its midsection and stunning finale are worthy of being called Lovecraftian. (This, even if most Lovecraft lovers admit that the story itself is pretty weak.)</p><p>Graduate student Walter Gilman (Ezra Godden) is unfortunate enough to be studying string theory at Miskatonic University. He takes a room in a creepy old seventeenth-century house so he can get some quiet study time, but as soon as he moves in he\'s distracted: by the crazy old codger on the first floor who does ritual penance by chanting and banging his head on a desk; by the screams of his hot neighbor Frances (Chelah Hordal) because a rat is attacking her baby; and by visits from a shape-shifting witch who seems to want to involve him in some nefarious ritual. He doesn\'t get much studying done.</p><p>Given the limited budget of a TV series, it\'s surprising how great this looks. One of my favorite Lovecraft characters is resurrected here, and faithfully: the rat-creature Brown Jenkin. Lovecraft describes him, \"it had long hair and the shape of a rat, but that its sharp-toothed, bearded face was evilly human while its paws were like tiny human hands.\" And the makeup crew delivers just that. The blood effects are realistic, there\'s ingenious use of colored lights behind wallpaper screens to illustrate the gate between universes, and the sets are all incredibly, authentically bedraggled. I especially like the construction of that particular corner of Walter\'s room, where Euclidian geometry fails and allows a bridge between worlds.</p><p>The story is updated, and I think improved, with the setting limited to the house and the characters drastically reduced, both on the human and the non-human sides. Gordon smartly updates Walter\'s particular kind of science but doesn\'t stray at all from the spirit of Lovecraft: the story was inspired by a lecture by Dutch mathematician Willem de Sitter (a colleague of Einstein) who posited what came to be known as dark matter, and this film updates it to string theory, which, in a scene that\'s both amusing and accurate, makes Walter sound like a nutcase when he tries to explain it to a psychiatrist. Anyone trying to explain string theory in a loud voice would sound like a lunatic.</p><p>Sure, the comedy isn\'t Lovecraft—old H.P. didn\'t have a sense of humor as far as I could tell—but otherwise this film seems to <i>get</i> him like no others I can remember. There are some nice references to other Lovecraft works, especially when Walter exclaims \"This house is infested with rats—I can hear them in the walls,\" summoning one of Lovecraft\'s best stories, \"The Rats in the Walls.\" And most importantly, there\'s the horrible mystery of the darkness that surrounds us, a universe or universes that contain things we can\'t begin to understand, where our mathematics and our explanations break down. They might come in the form of a standard-issue witch and a rat with a human face, but those are just avatars for something a lot more awful. Gordon succeeds because this film suggests <i>that</i> horror.</p>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Masters of Horror: Dreams in the Witch-House (2005)','','publish','closed','closed','','masters-of-horror-dreams-in-the-witch-house-2005','','','2019-08-03 21:40:44','2019-08-03 21:40:44','',0,'http://itcamefrombeyondpulp.com/?p=404',0,'post','',0),(405,1,'2019-08-03 21:40:20','2019-08-03 21:40:20','','witchhouse','','inherit','closed','closed','','witchhouse','','','2019-08-03 21:40:20','2019-08-03 21:40:20','',404,'http://itcamefrombeyondpulp.com/wp-content/uploads/2019/08/witchhouse.jpg',0,'attachment','image/jpeg',0),(406,1,'2019-08-03 21:40:44','2019-08-03 21:40:44','[et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" custom_padding=\"0px|||||\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" custom_margin=\"||11px|||\" next_background_color=\"#000000\" global_module=\"74\"][et_pb_row global_parent=\"74\" custom_padding=\"0px||0px|||\" custom_margin=\"|auto|-66px|auto||\" _builder_version=\"3.26.3\"][et_pb_column type=\"4_4\" global_parent=\"74\" _builder_version=\"3.26.3\"][et_pb_image global_parent=\"74\" src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/header.jpg\" url=\"http://itcamefrombeyondpulp.com\" _builder_version=\"3.26.3\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.26.3\" width=\"1080px\" width_tablet=\"100%\" width_last_edited=\"on|phone\" module_alignment=\"center\" inner_module_alignment=\"center\" custom_padding=\"0px||0px||false|false\" z_index_tablet=\"500\" hover_enabled=\"0\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" prev_background_color=\"#000000\" next_background_color=\"#e02b20\" global_module=\"175\"][et_pb_fullwidth_menu global_parent=\"175\" menu_id=\"2\" submenu_direction=\"downwards\" fullwidth_menu=\"off\" dropdown_menu_text_color=\"#ffffff\" _builder_version=\"3.26.3\" menu_font=\"|800||on|||||\" menu_text_color=\"#ffffff\" menu_font_size=\"22px\" menu_letter_spacing=\"5px\" background_color=\"#e02b20\" border_width_bottom=\"5px\" text_orientation=\"center\" background_layout=\"dark\" custom_margin=\"0px||||false|false\" custom_padding=\"1px||0px||false|false\" z_index_tablet=\"500\" menu_text_shadow_horizontal_length_tablet=\"0px\" menu_text_shadow_vertical_length_tablet=\"0px\" menu_text_shadow_blur_strength_tablet=\"1px\" border_width_bottom_tablet=\"5px\" border_width_bottom_phone=\"5px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" /][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" background_color=\"#e02b20\" width=\"1080px\" module_alignment=\"center\" custom_padding=\"10px||0px|||\" prev_background_color=\"#ffffff\"][et_pb_row _builder_version=\"3.26.3\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" background_color=\"#ffffff\" custom_padding=\"10px|10px||10px|false|false\" border_width_bottom=\"5px\" border_color_bottom=\"#e02b20\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image _builder_version=\"3.26.3\" src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/08/witchhouse.jpg\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\" /][et_pb_text _builder_version=\"3.26.3\" z_index_tablet=\"500\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" text_text_shadow_horizontal_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_vertical_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_blur_strength=\"text_text_shadow_style,%91object Object%93\" link_text_shadow_horizontal_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_vertical_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_blur_strength=\"link_text_shadow_style,%91object Object%93\" ul_text_shadow_horizontal_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_vertical_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_blur_strength=\"ul_text_shadow_style,%91object Object%93\" ol_text_shadow_horizontal_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_vertical_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_blur_strength=\"ol_text_shadow_style,%91object Object%93\" quote_text_shadow_horizontal_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_vertical_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_blur_strength=\"quote_text_shadow_style,%91object Object%93\" header_text_shadow_horizontal_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_vertical_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_blur_strength=\"header_text_shadow_style,%91object Object%93\" header_2_text_shadow_horizontal_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_vertical_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_blur_strength=\"header_2_text_shadow_style,%91object Object%93\" header_3_text_shadow_horizontal_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_vertical_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_blur_strength=\"header_3_text_shadow_style,%91object Object%93\" header_4_text_shadow_horizontal_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_vertical_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_blur_strength=\"header_4_text_shadow_style,%91object Object%93\" header_5_text_shadow_horizontal_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_vertical_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_blur_strength=\"header_5_text_shadow_style,%91object Object%93\" header_6_text_shadow_horizontal_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_vertical_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_blur_strength=\"header_6_text_shadow_style,%91object Object%93\"]\r\n\r\n<h3 style=\"text-align: center;\"><strong><em>Masters of Horror: Dreams in the Witch-House</em> (Stuart Gordon, 2005, 55 min.)</strong></h3><p>Horror-film director Stuart Gordon has attempted, more than anyone, to bring the stories of H.P. Lovecraft to the screen. That all of his previous attempts have been unsuccessful isn\'t a surprise, as no one has been able to translate Lovecraft\'s particular brand of horror into film. The surprise is that this short film, part of Showtime\'s groundbreaking \"Masters of Horror\" series, is probably the closest anyone has come to succeeding. It\'s not perfect, and its early comedic tone, as dark as it might be, isn\'t right, but its midsection and stunning finale are worthy of being called Lovecraftian. (This, even if most Lovecraft lovers admit that the story itself is pretty weak.)</p><p>Graduate student Walter Gilman (Ezra Godden) is unfortunate enough to be studying string theory at Miskatonic University. He takes a room in a creepy old seventeenth-century house so he can get some quiet study time, but as soon as he moves in he\'s distracted: by the crazy old codger on the first floor who does ritual penance by chanting and banging his head on a desk; by the screams of his hot neighbor Frances (Chelah Hordal) because a rat is attacking her baby; and by visits from a shape-shifting witch who seems to want to involve him in some nefarious ritual. He doesn\'t get much studying done.</p><p>Given the limited budget of a TV series, it\'s surprising how great this looks. One of my favorite Lovecraft characters is resurrected here, and faithfully: the rat-creature Brown Jenkin. Lovecraft describes him, \"it had long hair and the shape of a rat, but that its sharp-toothed, bearded face was evilly human while its paws were like tiny human hands.\" And the makeup crew delivers just that. The blood effects are realistic, there\'s ingenious use of colored lights behind wallpaper screens to illustrate the gate between universes, and the sets are all incredibly, authentically bedraggled. I especially like the construction of that particular corner of Walter\'s room, where Euclidian geometry fails and allows a bridge between worlds.</p><p>The story is updated, and I think improved, with the setting limited to the house and the characters drastically reduced, both on the human and the non-human sides. Gordon smartly updates Walter\'s particular kind of science but doesn\'t stray at all from the spirit of Lovecraft: the story was inspired by a lecture by Dutch mathematician Willem de Sitter (a colleague of Einstein) who posited what came to be known as dark matter, and this film updates it to string theory, which, in a scene that\'s both amusing and accurate, makes Walter sound like a nutcase when he tries to explain it to a psychiatrist. Anyone trying to explain string theory in a loud voice would sound like a lunatic.</p><p>Sure, the comedy isn\'t Lovecraft—old H.P. didn\'t have a sense of humor as far as I could tell—but otherwise this film seems to <i>get</i> him like no others I can remember. There are some nice references to other Lovecraft works, especially when Walter exclaims \"This house is infested with rats—I can hear them in the walls,\" summoning one of Lovecraft\'s best stories, \"The Rats in the Walls.\" And most importantly, there\'s the horrible mystery of the darkness that surrounds us, a universe or universes that contain things we can\'t begin to understand, where our mathematics and our explanations break down. They might come in the form of a standard-issue witch and a rat with a human face, but those are just avatars for something a lot more awful. Gordon succeeds because this film suggests <i>that</i> horror.</p>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Masters of Horror: Dreams in the Witch-House (2005)','','inherit','closed','closed','','404-revision-v1','','','2019-08-03 21:40:44','2019-08-03 21:40:44','',404,'http://itcamefrombeyondpulp.com/uncategorized/404-revision-v1/',0,'revision','',0),(407,1,'2019-08-03 21:42:19','2019-08-03 21:42:19','[et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" custom_padding=\"0px|||||\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" custom_margin=\"||11px|||\" next_background_color=\"#000000\" global_module=\"74\"][et_pb_row global_parent=\"74\" custom_padding=\"0px||0px|||\" custom_margin=\"|auto|-66px|auto||\" _builder_version=\"3.26.3\"][et_pb_column type=\"4_4\" global_parent=\"74\" _builder_version=\"3.26.3\"][et_pb_image global_parent=\"74\" src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/header.jpg\" url=\"http://itcamefrombeyondpulp.com\" _builder_version=\"3.26.3\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.26.3\" width=\"1080px\" width_tablet=\"100%\" width_last_edited=\"on|phone\" module_alignment=\"center\" inner_module_alignment=\"center\" custom_padding=\"0px||0px||false|false\" z_index_tablet=\"500\" hover_enabled=\"0\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" prev_background_color=\"#000000\" next_background_color=\"#e02b20\" global_module=\"175\"][et_pb_fullwidth_menu global_parent=\"175\" menu_id=\"2\" submenu_direction=\"downwards\" fullwidth_menu=\"off\" dropdown_menu_text_color=\"#ffffff\" _builder_version=\"3.26.3\" menu_font=\"|800||on|||||\" menu_text_color=\"#ffffff\" menu_font_size=\"22px\" menu_letter_spacing=\"5px\" background_color=\"#e02b20\" border_width_bottom=\"5px\" text_orientation=\"center\" background_layout=\"dark\" custom_margin=\"0px||||false|false\" custom_padding=\"1px||0px||false|false\" z_index_tablet=\"500\" menu_text_shadow_horizontal_length_tablet=\"0px\" menu_text_shadow_vertical_length_tablet=\"0px\" menu_text_shadow_blur_strength_tablet=\"1px\" border_width_bottom_tablet=\"5px\" border_width_bottom_phone=\"5px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" /][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" background_color=\"#e02b20\" width=\"1080px\" module_alignment=\"center\" custom_padding=\"10px||0px|||\" prev_background_color=\"#ffffff\"][et_pb_row _builder_version=\"3.26.3\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" background_color=\"#ffffff\" custom_padding=\"10px|10px||10px|false|false\" border_width_bottom=\"5px\" border_color_bottom=\"#e02b20\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image _builder_version=\"3.26.3\" src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/08/witchhouse.jpg\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\" /][et_pb_text _builder_version=\"3.26.3\" z_index_tablet=\"500\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" text_text_shadow_horizontal_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_vertical_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_blur_strength=\"text_text_shadow_style,%91object Object%93\" link_text_shadow_horizontal_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_vertical_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_blur_strength=\"link_text_shadow_style,%91object Object%93\" ul_text_shadow_horizontal_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_vertical_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_blur_strength=\"ul_text_shadow_style,%91object Object%93\" ol_text_shadow_horizontal_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_vertical_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_blur_strength=\"ol_text_shadow_style,%91object Object%93\" quote_text_shadow_horizontal_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_vertical_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_blur_strength=\"quote_text_shadow_style,%91object Object%93\" header_text_shadow_horizontal_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_vertical_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_blur_strength=\"header_text_shadow_style,%91object Object%93\" header_2_text_shadow_horizontal_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_vertical_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_blur_strength=\"header_2_text_shadow_style,%91object Object%93\" header_3_text_shadow_horizontal_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_vertical_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_blur_strength=\"header_3_text_shadow_style,%91object Object%93\" header_4_text_shadow_horizontal_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_vertical_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_blur_strength=\"header_4_text_shadow_style,%91object Object%93\" header_5_text_shadow_horizontal_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_vertical_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_blur_strength=\"header_5_text_shadow_style,%91object Object%93\" header_6_text_shadow_horizontal_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_vertical_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_blur_strength=\"header_6_text_shadow_style,%91object Object%93\"]\n\n<h3 style=\"text-align: center;\"><strong><em>Masters of Horror: Dreams in the Witch-House</em> (Stuart Gordon, 2005, 55 min.)</strong></h3>\n<p>Horror-film director Stuart Gordon has attempted, more than anyone, to bring the stories of H.P. Lovecraft to the screen. That all of his previous attempts have been unsuccessful isn\'t a surprise, as no one has been able to translate Lovecraft\'s particular brand of horror into film. The surprise is that this short film, part of Showtime\'s groundbreaking \"Masters of Horror\" series, is probably the closest anyone has come to succeeding. It\'s not perfect, and its early comedic tone, as dark as it might be, isn\'t right, but its midsection and stunning finale are worthy of being called Lovecraftian. (This, even if most Lovecraft lovers admit that the story itself is pretty weak.)</p>\n<p>Graduate student Walter Gilman (Ezra Godden) is unfortunate enough to be studying string theory at Miskatonic University. He takes a room in a creepy old seventeenth-century house so he can get some quiet study time, but as soon as he moves in he\'s distracted: by the crazy old codger on the first floor who does ritual penance by chanting and banging his head on a desk; by the screams of his hot neighbor Frances (Chelah Hordal) because a rat is attacking her baby; and by visits from a shape-shifting witch who seems to want to involve him in some nefarious ritual. He doesn\'t get much studying done.</p>\n<p>Given the limited budget of a TV series, it\'s surprising how great this looks. One of my favorite Lovecraft characters is resurrected here, and faithfully: the rat-creature Brown Jenkin. Lovecraft describes him, \"it had long hair and the shape of a rat, but that its sharp-toothed, bearded face was evilly human while its paws were like tiny human hands.\" And the makeup crew delivers just that. The blood effects are realistic, there\'s ingenious use of colored lights behind wallpaper screens to illustrate the gate between universes, and the sets are all incredibly, authentically bedraggled. I especially like the construction of that particular corner of Walter\'s room, where Euclidian geometry fails and allows a bridge between worlds.</p>\n<p>The story is updated, and I think improved, with the setting limited to the house and the characters drastically reduced, both on the human and the non-human sides. Gordon smartly updates Walter\'s particular kind of science but doesn\'t stray at all from the spirit of Lovecraft: the story was inspired by a lecture by Dutch mathematician Willem de Sitter (a colleague of Einstein) who posited what came to be known as dark matter, and this film updates it to string theory, which, in a scene that\'s both amusing and accurate, makes Walter sound like a nutcase when he tries to explain it to a psychiatrist. Anyone trying to explain string theory in a loud voice would sound like a lunatic.</p>\n<p>Sure, the comedy isn\'t Lovecraft—old H.P. didn\'t have a sense of humor as far as I could tell—but otherwise this film seems to <i>get</i> him like no others I can remember. There are some nice references to other Lovecraft works, especially when Walter exclaims \"This house is infested with rats—I can hear them in the walls,\" summoning one of Lovecraft\'s best stories, \"The Rats in the Walls.\" And most importantly, there\'s the horrible mystery of the darkness that surrounds us, a universe or universes that contain things we can\'t begin to understand, where our mathematics and our explanations break down. They might come in the form of a standard-issue witch and a rat with a human face, but those are just avatars for something a lot more awful. Gordon succeeds because this film suggests <i>that</i> horror.</p>\n\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Masters of Horror: Dreams in the Witch-House (2005)','','inherit','closed','closed','','404-autosave-v1','','','2019-08-03 21:42:19','2019-08-03 21:42:19','',404,'http://itcamefrombeyondpulp.com/uncategorized/404-autosave-v1/',0,'revision','',0),(408,1,'2019-08-03 21:49:48','2019-08-03 21:49:48','[et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" custom_padding=\"0px|||||\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" custom_margin=\"||11px|||\" next_background_color=\"#000000\" global_module=\"74\"][et_pb_row global_parent=\"74\" custom_padding=\"0px||0px|||\" custom_margin=\"|auto|-66px|auto||\" _builder_version=\"3.26.3\"][et_pb_column type=\"4_4\" global_parent=\"74\" _builder_version=\"3.26.3\"][et_pb_image global_parent=\"74\" src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/header.jpg\" url=\"http://itcamefrombeyondpulp.com\" _builder_version=\"3.26.3\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.26.3\" width=\"1080px\" width_tablet=\"100%\" width_last_edited=\"on|phone\" module_alignment=\"center\" inner_module_alignment=\"center\" custom_padding=\"0px||0px||false|false\" z_index_tablet=\"500\" hover_enabled=\"0\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" prev_background_color=\"#000000\" next_background_color=\"#e02b20\" global_module=\"175\"][et_pb_fullwidth_menu global_parent=\"175\" menu_id=\"2\" submenu_direction=\"downwards\" fullwidth_menu=\"off\" dropdown_menu_text_color=\"#ffffff\" _builder_version=\"3.26.3\" menu_font=\"|800||on|||||\" menu_text_color=\"#ffffff\" menu_font_size=\"22px\" menu_letter_spacing=\"5px\" background_color=\"#e02b20\" border_width_bottom=\"5px\" text_orientation=\"center\" background_layout=\"dark\" custom_margin=\"0px||||false|false\" custom_padding=\"1px||0px||false|false\" z_index_tablet=\"500\" menu_text_shadow_horizontal_length_tablet=\"0px\" menu_text_shadow_vertical_length_tablet=\"0px\" menu_text_shadow_blur_strength_tablet=\"1px\" border_width_bottom_tablet=\"5px\" border_width_bottom_phone=\"5px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" /][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" background_color=\"#e02b20\" width=\"1080px\" module_alignment=\"center\" custom_padding=\"10px||0px|||\" prev_background_color=\"#ffffff\"][et_pb_row _builder_version=\"3.26.3\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" background_color=\"#ffffff\" custom_padding=\"10px|10px||10px|false|false\" border_width_bottom=\"5px\" border_color_bottom=\"#e02b20\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image _builder_version=\"3.26.3\" src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/08/homecoming.jpg\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\" /][et_pb_text _builder_version=\"3.26.3\" z_index_tablet=\"500\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" text_text_shadow_horizontal_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_vertical_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_blur_strength=\"text_text_shadow_style,%91object Object%93\" link_text_shadow_horizontal_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_vertical_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_blur_strength=\"link_text_shadow_style,%91object Object%93\" ul_text_shadow_horizontal_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_vertical_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_blur_strength=\"ul_text_shadow_style,%91object Object%93\" ol_text_shadow_horizontal_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_vertical_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_blur_strength=\"ol_text_shadow_style,%91object Object%93\" quote_text_shadow_horizontal_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_vertical_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_blur_strength=\"quote_text_shadow_style,%91object Object%93\" header_text_shadow_horizontal_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_vertical_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_blur_strength=\"header_text_shadow_style,%91object Object%93\" header_2_text_shadow_horizontal_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_vertical_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_blur_strength=\"header_2_text_shadow_style,%91object Object%93\" header_3_text_shadow_horizontal_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_vertical_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_blur_strength=\"header_3_text_shadow_style,%91object Object%93\" header_4_text_shadow_horizontal_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_vertical_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_blur_strength=\"header_4_text_shadow_style,%91object Object%93\" header_5_text_shadow_horizontal_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_vertical_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_blur_strength=\"header_5_text_shadow_style,%91object Object%93\" header_6_text_shadow_horizontal_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_vertical_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_blur_strength=\"header_6_text_shadow_style,%91object Object%93\"]\r\n\r\n<h3 style=\"text-align: center;\"><strong><em>Masters of Horror: Homecoming</em> (Joe Dante, 2005, 57 min.)</strong></h3><p>In an appearance on a political talk show, political strategist David Murch (Jon Tenney), while confronting a bereaved mother (a Cindy Sheehan stand-in) whose son died in \"the war,\" says that he wishes her dead son could come back and tell the world . . . that he was proud to have served his country. Well, he gets his wish when hundreds of dead soldiers rise from their flag-draped coffins, shambling toward the traditional mouthpiece of American citizenship: the voting booth. In Joe Dante\'s over-the-top political satire-cum-zombie movie, we get an outspoken and unimpeachable criticism of the Iraq war and the Bush administration. As far as I know, it\'s the only mainstream film to deal specifically with the costs of the Iraq war. As Dante said in Turin when the film premiered, \"This pitiful zombie movie, this fucking B movie, is the only thing anybody\'s done about this issue that\'s killed 2,000 Americans and untold numbers of Iraqis? It\'s fucking sick.\"</p><p>I\'m not obsessed with politics and pundits enough to know what real-life political whore David Murch is supposed to represent, but the other two main characters are unmistakeable. Jane Cleaver (Thea Gill) is a leather-miniskirted reactionary sexpot explicitly modeled on Ann Coulter, while Kurt Rand (Robert Picardo) is obviously Karl Rove, the spin-meister who runs the show, passing decisions up the pike to \"potus\" (Bush\'s name is never mentioned, but it\'s clear that Dante and company understand that the president isn\'t the one with the power). At first, the right wingers, symbolized on that same talk show by a Jerry Falwell type and Cleaver, praise the patriotism of the returning soldiers, praise God for blessing the administration in such a way, and guarantee that the dead will retain their rights. The beautiful thing is that the zombies are not your typical brain-munching mindless dead; they\'re peaceful protestors, and it becomes clear that all they want is their constitutional right to vote against the president—at which point the right wing turns on them, decrying them as a public menace and locking them up in a Guantanamo-like prison. There\'s not a lot of subtlety involved, but listen to the Falwell character\'s about-face, where he decrees that the zombies are the judgment of an angry God against our sinful society. One could argue that he\'s partly right: lying is a sin, and perhaps letting liars get away with it is judgment-worthy.</p><p>Dante bluntly drops his film in the middle of one of the controversies over Bush\'s handling of the war: the off-limits coffins of dead American soldiers at Dover Air Force Base. Those zombies bursting out of their coffins, American flags enveloping their outstretched arms and muffling their groans, provide a stunning image that I\'d like to see on protest signs—talk about the return of the repressed. The genius of this film is that it literalizes the metaphor: these zombie soldiers aren\'t symbols of some larger issue, they\'re literally the costs of Bush\'s war. The film draws a not-so-subtle comparison to antiwar Vietnam vets when, in flashback, one character\'s mother says that her son \"came back different.\" It also manages to implicate us in the mess: in reminding us of Florida in 2000 and Ohio in 2004, the film is essentially saying that <i>we</i> are the zombies being disenfranchised—we let it happen without much complaining. At least the zombies in this film get a form of revenge, which puts them one step ahead of us.</p><p>The film is part of Showtime\'s \"Masters of Horror\" series, in which big-name (and no-name) horror directors were offered a budget and no network interference to create their own one-hour horror film. Dante, whose eccentric career has included gems like <em>The Howling</em> and <em>Gremlins</em>, took their offer and created one of the best films of 2005.</p>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Masters of Horror: Homecoming (2005)','','publish','closed','closed','','masters-of-horror-homecoming-2005','','','2019-08-03 21:49:48','2019-08-03 21:49:48','',0,'http://itcamefrombeyondpulp.com/?p=408',0,'post','',0),(409,1,'2019-08-03 21:49:22','2019-08-03 21:49:22','','homecoming','','inherit','closed','closed','','homecoming','','','2019-08-03 21:49:22','2019-08-03 21:49:22','',408,'http://itcamefrombeyondpulp.com/wp-content/uploads/2019/08/homecoming.jpg',0,'attachment','image/jpeg',0),(410,1,'2019-08-03 21:49:48','2019-08-03 21:49:48','[et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" custom_padding=\"0px|||||\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" custom_margin=\"||11px|||\" next_background_color=\"#000000\" global_module=\"74\"][et_pb_row global_parent=\"74\" custom_padding=\"0px||0px|||\" custom_margin=\"|auto|-66px|auto||\" _builder_version=\"3.26.3\"][et_pb_column type=\"4_4\" global_parent=\"74\" _builder_version=\"3.26.3\"][et_pb_image global_parent=\"74\" src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/header.jpg\" url=\"http://itcamefrombeyondpulp.com\" _builder_version=\"3.26.3\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.26.3\" width=\"1080px\" width_tablet=\"100%\" width_last_edited=\"on|phone\" module_alignment=\"center\" inner_module_alignment=\"center\" custom_padding=\"0px||0px||false|false\" z_index_tablet=\"500\" hover_enabled=\"0\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" prev_background_color=\"#000000\" next_background_color=\"#e02b20\" global_module=\"175\"][et_pb_fullwidth_menu global_parent=\"175\" menu_id=\"2\" submenu_direction=\"downwards\" fullwidth_menu=\"off\" dropdown_menu_text_color=\"#ffffff\" _builder_version=\"3.26.3\" menu_font=\"|800||on|||||\" menu_text_color=\"#ffffff\" menu_font_size=\"22px\" menu_letter_spacing=\"5px\" background_color=\"#e02b20\" border_width_bottom=\"5px\" text_orientation=\"center\" background_layout=\"dark\" custom_margin=\"0px||||false|false\" custom_padding=\"1px||0px||false|false\" z_index_tablet=\"500\" menu_text_shadow_horizontal_length_tablet=\"0px\" menu_text_shadow_vertical_length_tablet=\"0px\" menu_text_shadow_blur_strength_tablet=\"1px\" border_width_bottom_tablet=\"5px\" border_width_bottom_phone=\"5px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" /][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" background_color=\"#e02b20\" width=\"1080px\" module_alignment=\"center\" custom_padding=\"10px||0px|||\" prev_background_color=\"#ffffff\"][et_pb_row _builder_version=\"3.26.3\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" background_color=\"#ffffff\" custom_padding=\"10px|10px||10px|false|false\" border_width_bottom=\"5px\" border_color_bottom=\"#e02b20\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image _builder_version=\"3.26.3\" src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/08/homecoming.jpg\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\" /][et_pb_text _builder_version=\"3.26.3\" z_index_tablet=\"500\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" text_text_shadow_horizontal_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_vertical_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_blur_strength=\"text_text_shadow_style,%91object Object%93\" link_text_shadow_horizontal_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_vertical_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_blur_strength=\"link_text_shadow_style,%91object Object%93\" ul_text_shadow_horizontal_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_vertical_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_blur_strength=\"ul_text_shadow_style,%91object Object%93\" ol_text_shadow_horizontal_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_vertical_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_blur_strength=\"ol_text_shadow_style,%91object Object%93\" quote_text_shadow_horizontal_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_vertical_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_blur_strength=\"quote_text_shadow_style,%91object Object%93\" header_text_shadow_horizontal_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_vertical_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_blur_strength=\"header_text_shadow_style,%91object Object%93\" header_2_text_shadow_horizontal_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_vertical_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_blur_strength=\"header_2_text_shadow_style,%91object Object%93\" header_3_text_shadow_horizontal_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_vertical_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_blur_strength=\"header_3_text_shadow_style,%91object Object%93\" header_4_text_shadow_horizontal_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_vertical_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_blur_strength=\"header_4_text_shadow_style,%91object Object%93\" header_5_text_shadow_horizontal_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_vertical_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_blur_strength=\"header_5_text_shadow_style,%91object Object%93\" header_6_text_shadow_horizontal_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_vertical_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_blur_strength=\"header_6_text_shadow_style,%91object Object%93\"]\r\n\r\n<h3 style=\"text-align: center;\"><strong><em>Masters of Horror: Homecoming</em> (Joe Dante, 2005, 57 min.)</strong></h3><p>In an appearance on a political talk show, political strategist David Murch (Jon Tenney), while confronting a bereaved mother (a Cindy Sheehan stand-in) whose son died in \"the war,\" says that he wishes her dead son could come back and tell the world . . . that he was proud to have served his country. Well, he gets his wish when hundreds of dead soldiers rise from their flag-draped coffins, shambling toward the traditional mouthpiece of American citizenship: the voting booth. In Joe Dante\'s over-the-top political satire-cum-zombie movie, we get an outspoken and unimpeachable criticism of the Iraq war and the Bush administration. As far as I know, it\'s the only mainstream film to deal specifically with the costs of the Iraq war. As Dante said in Turin when the film premiered, \"This pitiful zombie movie, this fucking B movie, is the only thing anybody\'s done about this issue that\'s killed 2,000 Americans and untold numbers of Iraqis? It\'s fucking sick.\"</p><p>I\'m not obsessed with politics and pundits enough to know what real-life political whore David Murch is supposed to represent, but the other two main characters are unmistakeable. Jane Cleaver (Thea Gill) is a leather-miniskirted reactionary sexpot explicitly modeled on Ann Coulter, while Kurt Rand (Robert Picardo) is obviously Karl Rove, the spin-meister who runs the show, passing decisions up the pike to \"potus\" (Bush\'s name is never mentioned, but it\'s clear that Dante and company understand that the president isn\'t the one with the power). At first, the right wingers, symbolized on that same talk show by a Jerry Falwell type and Cleaver, praise the patriotism of the returning soldiers, praise God for blessing the administration in such a way, and guarantee that the dead will retain their rights. The beautiful thing is that the zombies are not your typical brain-munching mindless dead; they\'re peaceful protestors, and it becomes clear that all they want is their constitutional right to vote against the president—at which point the right wing turns on them, decrying them as a public menace and locking them up in a Guantanamo-like prison. There\'s not a lot of subtlety involved, but listen to the Falwell character\'s about-face, where he decrees that the zombies are the judgment of an angry God against our sinful society. One could argue that he\'s partly right: lying is a sin, and perhaps letting liars get away with it is judgment-worthy.</p><p>Dante bluntly drops his film in the middle of one of the controversies over Bush\'s handling of the war: the off-limits coffins of dead American soldiers at Dover Air Force Base. Those zombies bursting out of their coffins, American flags enveloping their outstretched arms and muffling their groans, provide a stunning image that I\'d like to see on protest signs—talk about the return of the repressed. The genius of this film is that it literalizes the metaphor: these zombie soldiers aren\'t symbols of some larger issue, they\'re literally the costs of Bush\'s war. The film draws a not-so-subtle comparison to antiwar Vietnam vets when, in flashback, one character\'s mother says that her son \"came back different.\" It also manages to implicate us in the mess: in reminding us of Florida in 2000 and Ohio in 2004, the film is essentially saying that <i>we</i> are the zombies being disenfranchised—we let it happen without much complaining. At least the zombies in this film get a form of revenge, which puts them one step ahead of us.</p><p>The film is part of Showtime\'s \"Masters of Horror\" series, in which big-name (and no-name) horror directors were offered a budget and no network interference to create their own one-hour horror film. Dante, whose eccentric career has included gems like <em>The Howling</em> and <em>Gremlins</em>, took their offer and created one of the best films of 2005.</p>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Masters of Horror: Homecoming (2005)','','inherit','closed','closed','','408-revision-v1','','','2019-08-03 21:49:48','2019-08-03 21:49:48','',408,'http://itcamefrombeyondpulp.com/uncategorized/408-revision-v1/',0,'revision','',0),(411,1,'2019-08-03 21:53:52','2019-08-03 21:53:52','[et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" custom_padding=\"0px|||||\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" custom_margin=\"||11px|||\" next_background_color=\"#000000\" global_module=\"74\"][et_pb_row global_parent=\"74\" custom_padding=\"0px||0px|||\" custom_margin=\"|auto|-66px|auto||\" _builder_version=\"3.26.3\"][et_pb_column type=\"4_4\" global_parent=\"74\" _builder_version=\"3.26.3\"][et_pb_image global_parent=\"74\" src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/header.jpg\" url=\"http://itcamefrombeyondpulp.com\" _builder_version=\"3.26.3\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.26.3\" width=\"1080px\" width_tablet=\"100%\" width_last_edited=\"on|phone\" module_alignment=\"center\" inner_module_alignment=\"center\" custom_padding=\"0px||0px||false|false\" z_index_tablet=\"500\" hover_enabled=\"0\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" prev_background_color=\"#000000\" next_background_color=\"#e02b20\" global_module=\"175\"][et_pb_fullwidth_menu global_parent=\"175\" menu_id=\"2\" submenu_direction=\"downwards\" fullwidth_menu=\"off\" dropdown_menu_text_color=\"#ffffff\" _builder_version=\"3.26.3\" menu_font=\"|800||on|||||\" menu_text_color=\"#ffffff\" menu_font_size=\"22px\" menu_letter_spacing=\"5px\" background_color=\"#e02b20\" border_width_bottom=\"5px\" text_orientation=\"center\" background_layout=\"dark\" custom_margin=\"0px||||false|false\" custom_padding=\"1px||0px||false|false\" z_index_tablet=\"500\" menu_text_shadow_horizontal_length_tablet=\"0px\" menu_text_shadow_vertical_length_tablet=\"0px\" menu_text_shadow_blur_strength_tablet=\"1px\" border_width_bottom_tablet=\"5px\" border_width_bottom_phone=\"5px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" /][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" background_color=\"#e02b20\" width=\"1080px\" module_alignment=\"center\" custom_padding=\"10px||0px|||\" hover_enabled=\"0\" width_last_edited=\"on|tablet\" width_phone=\"100%\" width_tablet=\"100%\" prev_background_color=\"#ffffff\"][et_pb_row custom_padding=\"10px|10px||\" _builder_version=\"3.26.3\" background_color=\"#ffffff\" border_width_bottom=\"5px\" border_color_bottom=\"#e02b20\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.26.3\" z_index_tablet=\"500\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\"]\r\n\r\n<h1 style=\"text-align: center;\">Movies &amp; TV Reviews</h1>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.26.3\" background_color=\"#ffffff\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" column_structure=\"1_3,1_3,1_3\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.26.3\" z_index_tablet=\"500\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\"]\r\n\r\n<h3 style=\"text-align: center;\">Sci-Fi</h3>\r\n<p style=\"text-align: center;\"><strong><a href=\"http://itcamefrombeyondpulp.com/movies/children-of-men-2006/\">Children of Men (2006)</a><br /></strong><strong><a href=\"http://itcamefrombeyondpulp.com/movies/cloverfield-2008/\">Cloverfield (2008)</a><br /><a href=\"http://itcamefrombeyondpulp.com/movies/the-dark-knight-2008/\">The Dark Knight (2008)</a><br /><a href=\"http://itcamefrombeyondpulp.com/movies/the-fountain-2006/\">The Fountain (2006)</a><br /><a href=\"http://itcamefrombeyondpulp.com/movies/hardware-1990/\">Hardware (1990)</a><br /><a href=\"http://itcamefrombeyondpulp.com/movies/harry-potter-and-the-chamber-of-secrets-2002/\">Harry Potter and the Chamber of Secrets (2002)</a><br /><a href=\"http://itcamefrombeyondpulp.com/movies/harry-potter-and-the-sorcerers-stone-2001/\">Harry Potter and the Sorcerer\'s Stone (2001)</a><br /><a href=\"http://itcamefrombeyondpulp.com/movies/maniac-1934/\">Maniac (1934)</a><br /><a href=\"http://itcamefrombeyondpulp.com/movies/the-phantom-planet-1961/\">The Phantom Planet (1961)</a><br /><a href=\"http://itcamefrombeyondpulp.com/movies/predator-1987/\">Predator (1987)</a><br /></strong><a href=\"http://itcamefrombeyondpulp.com/movies/serenity-2005/\"><strong>Serenity (2005)</strong></a><br /><a href=\"http://itcamefrombeyondpulp.com/movies/x-men-the-last-stand-2006/\"><strong>X-Men: The Last Stand (2006)</strong></a></p>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.26.3\" z_index_tablet=\"500\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" text_text_shadow_horizontal_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_vertical_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_blur_strength=\"text_text_shadow_style,%91object Object%93\" link_text_shadow_horizontal_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_vertical_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_blur_strength=\"link_text_shadow_style,%91object Object%93\" ul_text_shadow_horizontal_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_vertical_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_blur_strength=\"ul_text_shadow_style,%91object Object%93\" ol_text_shadow_horizontal_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_vertical_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_blur_strength=\"ol_text_shadow_style,%91object Object%93\" quote_text_shadow_horizontal_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_vertical_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_blur_strength=\"quote_text_shadow_style,%91object Object%93\" header_text_shadow_horizontal_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_vertical_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_blur_strength=\"header_text_shadow_style,%91object Object%93\" header_2_text_shadow_horizontal_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_vertical_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_blur_strength=\"header_2_text_shadow_style,%91object Object%93\" header_3_text_shadow_horizontal_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_vertical_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_blur_strength=\"header_3_text_shadow_style,%91object Object%93\" header_4_text_shadow_horizontal_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_vertical_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_blur_strength=\"header_4_text_shadow_style,%91object Object%93\" header_5_text_shadow_horizontal_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_vertical_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_blur_strength=\"header_5_text_shadow_style,%91object Object%93\" header_6_text_shadow_horizontal_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_vertical_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_blur_strength=\"header_6_text_shadow_style,%91object Object%93\"]\r\n\r\n<h3 style=\"text-align: center;\">Horror</h3><p style=\"text-align: center;\"><a href=\"http://itcamefrombeyondpulp.com/movies/bloodrayne-2-deliverance-2007/\"><strong>BloodRayne 2: Deliverance (2007)</strong></a><br /><a href=\"http://itcamefrombeyondpulp.com/movies/the-cat-and-the-canary-1927/\"><strong>The Cat and the Canary (1927)</strong></a><br /><a href=\"http://itcamefrombeyondpulp.com/movies/the-children-1980/\"><strong>The Children (1980)</strong></a><br /><strong><a href=\"http://itcamefrombeyondpulp.com/movies/colin-2008/\">Colin (2008)</a></strong><br /><strong><a href=\"http://itcamefrombeyondpulp.com/movies/dark-water-2005/\">Dark Water (2005)</a></strong><br /><strong><a href=\"http://itcamefrombeyondpulp.com/movies/the-devils-daughter-1973/\">The Devil\'s Daughter (1973)</a><br /><a href=\"http://itcamefrombeyondpulp.com/movies/disturbia-2007/\">Disturbia (2007)</a></strong><br /><a href=\"http://itcamefrombeyondpulp.com/movies/masters-of-horror-the-black-cat-2007/\"><strong>Masters of Horror: The Black Cat (2007)</strong></a><br /><a href=\"http://itcamefrombeyondpulp.com/movies/masters-of-horror-dreams-in-the-witch-house-2005/\"><strong>Masters of Horror: Dreams in the Witch-House (2005)</strong></a><br /><a href=\"http://itcamefrombeyondpulp.com/movies/masters-of-horror-homecoming-2005/\"><strong>Masters of Horror: Homecoming (2005)</strong></a></p>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.26.3\" z_index_tablet=\"500\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" text_text_shadow_horizontal_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_vertical_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_blur_strength=\"text_text_shadow_style,%91object Object%93\" link_text_shadow_horizontal_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_vertical_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_blur_strength=\"link_text_shadow_style,%91object Object%93\" ul_text_shadow_horizontal_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_vertical_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_blur_strength=\"ul_text_shadow_style,%91object Object%93\" ol_text_shadow_horizontal_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_vertical_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_blur_strength=\"ol_text_shadow_style,%91object Object%93\" quote_text_shadow_horizontal_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_vertical_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_blur_strength=\"quote_text_shadow_style,%91object Object%93\" header_text_shadow_horizontal_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_vertical_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_blur_strength=\"header_text_shadow_style,%91object Object%93\" header_2_text_shadow_horizontal_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_vertical_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_blur_strength=\"header_2_text_shadow_style,%91object Object%93\" header_3_text_shadow_horizontal_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_vertical_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_blur_strength=\"header_3_text_shadow_style,%91object Object%93\" header_4_text_shadow_horizontal_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_vertical_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_blur_strength=\"header_4_text_shadow_style,%91object Object%93\" header_5_text_shadow_horizontal_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_vertical_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_blur_strength=\"header_5_text_shadow_style,%91object Object%93\" header_6_text_shadow_horizontal_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_vertical_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_blur_strength=\"header_6_text_shadow_style,%91object Object%93\"]\r\n\r\n<h3 style=\"text-align: center;\">Whatnot</h3>\r\n<p style=\"text-align: center;\"><strong><em>Basil Rathbone/Nigel Bruce Sherlock Holmes Films</em></strong></p>\r\n<p style=\"text-align: center;\"><a href=\"http://itcamefrombeyondpulp.com/movies/the-adventures-of-sherlock-holmes-1939/\"><strong>The Adventures of Sherlock Holmes (1939)</strong></a><br /><a href=\"http://itcamefrombeyondpulp.com/movies/the-hound-of-the-baskervilles-1939/\"><strong>The Hound of the Baskervilles (1939)</strong></a><br /><a href=\"http://itcamefrombeyondpulp.com/movies/sherlock-holmes-and-the-voice-of-terror-1942/\"><strong>Sherlock Holmes and the Voice of Terror (1942)</strong></a><br /><strong><a href=\"http://itcamefrombeyondpulp.com/movies/sherlock-holmes-and-the-secret-weapon-1943/\">Sherlock Holmes and the Secret Weapon (1943)</a></strong><br /><strong><a href=\"http://itcamefrombeyondpulp.com/movies/sherlock-holmes-in-washington-1943/\">Sherlock Holmes in Washington (1943)</a><br /><a href=\"http://itcamefrombeyondpulp.com/movies/sherlock-holmes-faces-death-1943/\">Sherlock Holmes Faces Death (1943)</a><br /><a href=\"http://itcamefrombeyondpulp.com/movies/the-scarlet-claw-1944/\">The Scarlet Claw (1944)</a></strong><br /><strong><a href=\"http://itcamefrombeyondpulp.com/movies/the-pearl-of-death-1944/\">The Pearl of Death (1944)</a><br /><a href=\"http://itcamefrombeyondpulp.com/movies/the-spider-woman-1944/\">The Spider Woman (1944)</a></strong><br /><strong><a href=\"http://itcamefrombeyondpulp.com/movies/the-house-of-fear-1945/\">The House of Fear (1945)</a><br /><a href=\"http://itcamefrombeyondpulp.com/movies/the-woman-in-green-1945/\">The Woman in Green (1945)</a></strong><br /><strong><a href=\"http://itcamefrombeyondpulp.com/movies/pursuit-to-algiers-1945/\">Pursuit to Algiers (1945)</a><br /><a href=\"http://itcamefrombeyondpulp.com/movies/terror-by-night-1946/\">Terror by Night (1946)</a></strong><br /><strong><a href=\"http://itcamefrombeyondpulp.com/movies/dressed-to-kill-1946/\">Dressed to Kill (1946)</a></strong></p>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Movies','','inherit','closed','closed','','45-revision-v1','','','2019-08-03 21:53:52','2019-08-03 21:53:52','',45,'http://itcamefrombeyondpulp.com/uncategorized/45-revision-v1/',0,'revision','',0),(415,1,'2019-08-19 02:14:12','2019-08-19 02:14:12','[et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" custom_padding=\"0px|||||\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" custom_margin=\"||11px|||\" next_background_color=\"#000000\" global_module=\"74\"][et_pb_row global_parent=\"74\" custom_padding=\"0px||0px|||\" custom_margin=\"|auto|-66px|auto||\" _builder_version=\"3.26.3\"][et_pb_column type=\"4_4\" global_parent=\"74\" _builder_version=\"3.26.3\"][et_pb_image global_parent=\"74\" src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/header.jpg\" url=\"http://itcamefrombeyondpulp.com\" _builder_version=\"3.26.3\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.26.3\" width=\"1080px\" width_tablet=\"100%\" width_last_edited=\"on|phone\" module_alignment=\"center\" inner_module_alignment=\"center\" custom_padding=\"0px||0px||false|false\" z_index_tablet=\"500\" hover_enabled=\"0\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" prev_background_color=\"#000000\" next_background_color=\"#e02b20\" global_module=\"175\"][et_pb_fullwidth_menu global_parent=\"175\" menu_id=\"2\" submenu_direction=\"downwards\" fullwidth_menu=\"off\" dropdown_menu_text_color=\"#ffffff\" _builder_version=\"3.26.3\" menu_font=\"|800||on|||||\" menu_text_color=\"#ffffff\" menu_font_size=\"22px\" menu_letter_spacing=\"5px\" background_color=\"#e02b20\" border_width_bottom=\"5px\" text_orientation=\"center\" background_layout=\"dark\" custom_margin=\"0px||||false|false\" custom_padding=\"1px||0px||false|false\" z_index_tablet=\"500\" menu_text_shadow_horizontal_length_tablet=\"0px\" menu_text_shadow_vertical_length_tablet=\"0px\" menu_text_shadow_blur_strength_tablet=\"1px\" border_width_bottom_tablet=\"5px\" border_width_bottom_phone=\"5px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" /][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" background_color=\"#e02b20\" width=\"1080px\" module_alignment=\"center\" custom_padding=\"10px||0px|||\" prev_background_color=\"#ffffff\"][et_pb_row _builder_version=\"3.26.3\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" background_color=\"#ffffff\" custom_padding=\"10px|10px||10px|false|false\" border_width_bottom=\"5px\" border_color_bottom=\"#e02b20\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.26.3\" z_index_tablet=\"500\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" text_text_shadow_horizontal_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_vertical_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_blur_strength=\"text_text_shadow_style,%91object Object%93\" link_text_shadow_horizontal_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_vertical_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_blur_strength=\"link_text_shadow_style,%91object Object%93\" ul_text_shadow_horizontal_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_vertical_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_blur_strength=\"ul_text_shadow_style,%91object Object%93\" ol_text_shadow_horizontal_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_vertical_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_blur_strength=\"ol_text_shadow_style,%91object Object%93\" quote_text_shadow_horizontal_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_vertical_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_blur_strength=\"quote_text_shadow_style,%91object Object%93\" header_text_shadow_horizontal_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_vertical_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_blur_strength=\"header_text_shadow_style,%91object Object%93\" header_2_text_shadow_horizontal_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_vertical_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_blur_strength=\"header_2_text_shadow_style,%91object Object%93\" header_3_text_shadow_horizontal_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_vertical_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_blur_strength=\"header_3_text_shadow_style,%91object Object%93\" header_4_text_shadow_horizontal_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_vertical_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_blur_strength=\"header_4_text_shadow_style,%91object Object%93\" header_5_text_shadow_horizontal_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_vertical_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_blur_strength=\"header_5_text_shadow_style,%91object Object%93\" header_6_text_shadow_horizontal_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_vertical_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_blur_strength=\"header_6_text_shadow_style,%91object Object%93\"]\r\n\r\n<h3 style=\"text-align: center;\"><strong><em><img class=\"wp-image-414 size-medium alignright\" src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/08/dancer-179x300.jpg\" alt=\"\" width=\"179\" height=\"300\" />The Dancer from Atlantis</em> (Poul Anderson, 1972)</strong></h3><p class=\"p1\">Poul Anderson (1926-2001) was among the most lauded science fiction and fantasy writers, winning seven Hugo Awards and three Nebula Awards. I absolutely hated the other novel-length Anderson outing I read, <i>Tau Zero</i>, aka the longest story problem in history. I didn’t think he could write a believable human character, nor could he integrate his math problems with his narrative. I understand that it’s considered a classic of hard science fiction, and readers, you will not find much praise for hard sci-fi in this column. But my Spreadsheet of Destiny decreed that I read <i>The Dancer from Atlantis</i>, and so I did. And it’s pretty darned good! More on that in a minute.</p><p class=\"p1\">Twentieth-century American architect Duncan Reid, medieval Russian rancher Oleg, fourth-century Hun raider Uldin, and fourth millennium BCE Atlantean bull-dancing priestess Erissa are swept along through time by a damaged time machine and deposited on the Mediterranean coast of Egypt a scant few months before a volcanic eruption is due to obliterate her homeland of Atlantis and destroy the Minoan stranglehold on Mediterranean trade. Erissa is a survivor of that eruption, and as a teenage priestess she loved a god named Duncan Reid, who fathered a child before disappearing in a puff of smoke. The four integrate themselves into Cretan society, interact with Theseus, introduce cavalry and other weapons and methods of war, and try to figure out how to get back home, while Duncan and Erissa try to figure out how to save her civilization from destruction.</p><p class=\"p1\">There’s no math, which is good. There are also a couple of believable characters who have human interactions, something that was missing from <i>Tau Zero</i>. I’m especially surprised and satisfied by how Anderson handles Duncan Reid’s double romance of Erissa<span class=\"s1\">—both </span><span class=\"s2\">as the middle-aged mystic he encounters first, then the teenage version of her he encounters on Atlantis. It could have been creepy in any number of ways, but it wasn’t. </span></p><p class=\"p4\">But the best thing about it is the copious amounts of research that Anderson obviously did<span class=\"s3\">—about people as diverse as medieval Russians and the fourth century Huns, but also about the intricately connected, overlapping, and contradictory mythology and archaeology of the ancient Mediterranean. Let me rephrase that, because lots of authors do a lot of research, and their books are terrible. Anderson synthesizes this research and integrates it smoothly into his narrative, using his imagination where necessary and keeping the page-length explanations to a minimum. This is something that, say, Umberto Eco, in his wretched <i>The Name of the Rose</i>, demonstrates that he doesn’t understand.</span></p><p class=\"p4\"><span class=\"s3\">Anderson also shows a deft hand at describing large-scale destruction, as the chapters that take place in the aftermath of the volcanic eruption are harrowing and economical. He can sketch in a few sentences a kind of detailed chaos that lesser (or perhaps more sadistic) writers would dwell on. Honestly, he shows a deft hand at all of the things that he seemed incapable of in <i>Tau Zero</i>, so I think I’ve suddenly become a fan.</span></p>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','The Dancer from Atlantis (1972)','','inherit','closed','closed','','413-revision-v1','','','2019-08-19 02:14:12','2019-08-19 02:14:12','',413,'http://itcamefrombeyondpulp.com/uncategorized/413-revision-v1/',0,'revision','',0),(414,1,'2019-08-19 02:11:30','2019-08-19 02:11:30','','dancer','','inherit','closed','closed','','dancer','','','2019-08-19 02:11:30','2019-08-19 02:11:30','',413,'http://itcamefrombeyondpulp.com/wp-content/uploads/2019/08/dancer.jpg',0,'attachment','image/jpeg',0),(416,1,'2019-08-19 02:15:37','2019-08-19 02:15:37','[et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" custom_padding=\"0px|||||\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" custom_margin=\"||11px|||\" next_background_color=\"#000000\" global_module=\"74\"][et_pb_row global_parent=\"74\" custom_padding=\"0px||0px|||\" custom_margin=\"|auto|-66px|auto||\" _builder_version=\"3.26.3\"][et_pb_column type=\"4_4\" global_parent=\"74\" _builder_version=\"3.26.3\"][et_pb_image global_parent=\"74\" src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/header.jpg\" url=\"http://itcamefrombeyondpulp.com\" _builder_version=\"3.26.3\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.26.3\" width=\"1080px\" width_tablet=\"100%\" width_last_edited=\"on|phone\" module_alignment=\"center\" inner_module_alignment=\"center\" custom_padding=\"0px||0px||false|false\" z_index_tablet=\"500\" hover_enabled=\"0\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" prev_background_color=\"#000000\" next_background_color=\"#e02b20\" global_module=\"175\"][et_pb_fullwidth_menu global_parent=\"175\" menu_id=\"2\" submenu_direction=\"downwards\" fullwidth_menu=\"off\" dropdown_menu_text_color=\"#ffffff\" _builder_version=\"3.26.3\" menu_font=\"|800||on|||||\" menu_text_color=\"#ffffff\" menu_font_size=\"22px\" menu_letter_spacing=\"5px\" background_color=\"#e02b20\" border_width_bottom=\"5px\" text_orientation=\"center\" background_layout=\"dark\" custom_margin=\"0px||||false|false\" custom_padding=\"1px||0px||false|false\" z_index_tablet=\"500\" menu_text_shadow_horizontal_length_tablet=\"0px\" menu_text_shadow_vertical_length_tablet=\"0px\" menu_text_shadow_blur_strength_tablet=\"1px\" border_width_bottom_tablet=\"5px\" border_width_bottom_phone=\"5px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" /][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" background_color=\"#e02b20\" width=\"1080px\" module_alignment=\"center\" custom_padding=\"10px||0px|||\" prev_background_color=\"#ffffff\"][et_pb_row custom_padding=\"10px|10px||\" _builder_version=\"3.26.3\" background_color=\"#ffffff\" border_width_bottom=\"5px\" border_color_bottom=\"#e02b20\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.26.3\" z_index_tablet=\"500\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" text_text_shadow_horizontal_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_vertical_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_blur_strength=\"text_text_shadow_style,%91object Object%93\" link_text_shadow_horizontal_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_vertical_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_blur_strength=\"link_text_shadow_style,%91object Object%93\" ul_text_shadow_horizontal_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_vertical_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_blur_strength=\"ul_text_shadow_style,%91object Object%93\" ol_text_shadow_horizontal_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_vertical_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_blur_strength=\"ol_text_shadow_style,%91object Object%93\" quote_text_shadow_horizontal_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_vertical_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_blur_strength=\"quote_text_shadow_style,%91object Object%93\" header_text_shadow_horizontal_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_vertical_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_blur_strength=\"header_text_shadow_style,%91object Object%93\" header_2_text_shadow_horizontal_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_vertical_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_blur_strength=\"header_2_text_shadow_style,%91object Object%93\" header_3_text_shadow_horizontal_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_vertical_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_blur_strength=\"header_3_text_shadow_style,%91object Object%93\" header_4_text_shadow_horizontal_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_vertical_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_blur_strength=\"header_4_text_shadow_style,%91object Object%93\" header_5_text_shadow_horizontal_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_vertical_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_blur_strength=\"header_5_text_shadow_style,%91object Object%93\" header_6_text_shadow_horizontal_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_vertical_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_blur_strength=\"header_6_text_shadow_style,%91object Object%93\"]\r\n\r\n<h1 style=\"text-align: center;\">Book Reviews</h1>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.26.3\" background_color=\"#ffffff\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\" border_width_bottom=\"5px\" border_color_bottom=\"#e02b20\"][et_pb_column type=\"1_3\" custom_padding__hover=\"|||\" custom_padding=\"|||\"][et_pb_text _builder_version=\"3.26.3\" text_text_shadow_horizontal_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\"]\r\n\r\n<h3 style=\"text-align: center;\"><strong>Sci-Fi/Fantasy</strong></h3><p style=\"text-align: center;\"><a href=\"http://itcamefrombeyondpulp.com/books/the-fallen-country-1986/\"><strong>The Fallen Country</strong></a><br /><strong>(Somtow Sucharitkul, 1986)<br /><a href=\"http://itcamefrombeyondpulp.com/books/the-dancer-from-atlantis-1972/\">The Dancer from Atlantis</a><br />(Poul Anderson, 1972)</strong></p>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" custom_padding__hover=\"|||\" custom_padding=\"|||\"][et_pb_text _builder_version=\"3.26.3\" text_text_shadow_horizontal_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\"]\r\n\r\n<h3 style=\"text-align: center;\"><strong>Horror</strong></h3>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" custom_padding__hover=\"|||\" custom_padding=\"|||\"][et_pb_text _builder_version=\"3.26.3\" text_text_shadow_horizontal_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\"]\r\n\r\n<h3 style=\"text-align: center;\"><strong>Whatnot</strong></h3>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Books','','inherit','closed','closed','','33-revision-v1','','','2019-08-19 02:15:37','2019-08-19 02:15:37','',33,'http://itcamefrombeyondpulp.com/uncategorized/33-revision-v1/',0,'revision','',0),(417,1,'2019-08-19 02:58:23','2019-08-19 02:58:23','[et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" custom_padding=\"0px|||||\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" custom_margin=\"||11px|||\" next_background_color=\"#000000\" global_module=\"74\"][et_pb_row global_parent=\"74\" custom_padding=\"0px||0px|||\" custom_margin=\"|auto|-66px|auto||\" _builder_version=\"3.26.3\"][et_pb_column type=\"4_4\" global_parent=\"74\" _builder_version=\"3.26.3\"][et_pb_image global_parent=\"74\" src=\"http://itcamefrombeyondpulp.com/wp-content/uploads/2019/07/header.jpg\" url=\"http://itcamefrombeyondpulp.com\" _builder_version=\"3.26.3\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.26.3\" width=\"1080px\" width_tablet=\"100%\" width_last_edited=\"on|phone\" module_alignment=\"center\" inner_module_alignment=\"center\" custom_padding=\"0px||0px||false|false\" z_index_tablet=\"500\" hover_enabled=\"0\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" prev_background_color=\"#000000\" next_background_color=\"#e02b20\" global_module=\"175\"][et_pb_fullwidth_menu global_parent=\"175\" menu_id=\"2\" submenu_direction=\"downwards\" fullwidth_menu=\"off\" dropdown_menu_text_color=\"#ffffff\" _builder_version=\"3.26.3\" menu_font=\"|800||on|||||\" menu_text_color=\"#ffffff\" menu_font_size=\"22px\" menu_letter_spacing=\"5px\" background_color=\"#e02b20\" border_width_bottom=\"5px\" text_orientation=\"center\" background_layout=\"dark\" custom_margin=\"0px||||false|false\" custom_padding=\"1px||0px||false|false\" z_index_tablet=\"500\" menu_text_shadow_horizontal_length_tablet=\"0px\" menu_text_shadow_vertical_length_tablet=\"0px\" menu_text_shadow_blur_strength_tablet=\"1px\" border_width_bottom_tablet=\"5px\" border_width_bottom_phone=\"5px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" /][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.26.3\" background_color=\"#e02b20\" width=\"1080px\" module_alignment=\"center\" custom_padding=\"69px||0px|||\" prev_background_color=\"#ffffff\"][et_pb_row _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"2px|||||\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.26.3\" z_index_tablet=\"500\" text_text_shadow_horizontal_length_tablet=\"0px\" text_text_shadow_vertical_length_tablet=\"0px\" text_text_shadow_blur_strength_tablet=\"1px\" link_text_shadow_horizontal_length_tablet=\"0px\" link_text_shadow_vertical_length_tablet=\"0px\" link_text_shadow_blur_strength_tablet=\"1px\" ul_text_shadow_horizontal_length_tablet=\"0px\" ul_text_shadow_vertical_length_tablet=\"0px\" ul_text_shadow_blur_strength_tablet=\"1px\" ol_text_shadow_horizontal_length_tablet=\"0px\" ol_text_shadow_vertical_length_tablet=\"0px\" ol_text_shadow_blur_strength_tablet=\"1px\" quote_text_shadow_horizontal_length_tablet=\"0px\" quote_text_shadow_vertical_length_tablet=\"0px\" quote_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength_tablet=\"1px\" header_2_text_shadow_horizontal_length_tablet=\"0px\" header_2_text_shadow_vertical_length_tablet=\"0px\" header_2_text_shadow_blur_strength_tablet=\"1px\" header_3_text_shadow_horizontal_length_tablet=\"0px\" header_3_text_shadow_vertical_length_tablet=\"0px\" header_3_text_shadow_blur_strength_tablet=\"1px\" header_4_text_shadow_horizontal_length_tablet=\"0px\" header_4_text_shadow_vertical_length_tablet=\"0px\" header_4_text_shadow_blur_strength_tablet=\"1px\" header_5_text_shadow_horizontal_length_tablet=\"0px\" header_5_text_shadow_vertical_length_tablet=\"0px\" header_5_text_shadow_blur_strength_tablet=\"1px\" header_6_text_shadow_horizontal_length_tablet=\"0px\" header_6_text_shadow_vertical_length_tablet=\"0px\" header_6_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" background_color=\"#ffffff\" text_text_shadow_horizontal_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_vertical_length=\"text_text_shadow_style,%91object Object%93\" text_text_shadow_blur_strength=\"text_text_shadow_style,%91object Object%93\" link_text_shadow_horizontal_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_vertical_length=\"link_text_shadow_style,%91object Object%93\" link_text_shadow_blur_strength=\"link_text_shadow_style,%91object Object%93\" ul_text_shadow_horizontal_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_vertical_length=\"ul_text_shadow_style,%91object Object%93\" ul_text_shadow_blur_strength=\"ul_text_shadow_style,%91object Object%93\" ol_text_shadow_horizontal_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_vertical_length=\"ol_text_shadow_style,%91object Object%93\" ol_text_shadow_blur_strength=\"ol_text_shadow_style,%91object Object%93\" quote_text_shadow_horizontal_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_vertical_length=\"quote_text_shadow_style,%91object Object%93\" quote_text_shadow_blur_strength=\"quote_text_shadow_style,%91object Object%93\" header_text_shadow_horizontal_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_vertical_length=\"header_text_shadow_style,%91object Object%93\" header_text_shadow_blur_strength=\"header_text_shadow_style,%91object Object%93\" header_2_text_shadow_horizontal_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_vertical_length=\"header_2_text_shadow_style,%91object Object%93\" header_2_text_shadow_blur_strength=\"header_2_text_shadow_style,%91object Object%93\" header_3_text_shadow_horizontal_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_vertical_length=\"header_3_text_shadow_style,%91object Object%93\" header_3_text_shadow_blur_strength=\"header_3_text_shadow_style,%91object Object%93\" header_4_text_shadow_horizontal_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_vertical_length=\"header_4_text_shadow_style,%91object Object%93\" header_4_text_shadow_blur_strength=\"header_4_text_shadow_style,%91object Object%93\" header_5_text_shadow_horizontal_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_vertical_length=\"header_5_text_shadow_style,%91object Object%93\" header_5_text_shadow_blur_strength=\"header_5_text_shadow_style,%91object Object%93\" header_6_text_shadow_horizontal_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_vertical_length=\"header_6_text_shadow_style,%91object Object%93\" header_6_text_shadow_blur_strength=\"header_6_text_shadow_style,%91object Object%93\"]\r\n\r\n<h1 style=\"text-align: center;\">CURRENT SALES</h1>\r\n\r\n[/et_pb_text][et_pb_code _builder_version=\"3.26.3\" z_index_tablet=\"500\" background_color=\"#ffffff\" custom_padding=\"5px|5px|5px|5px\"][ebayfeedsforwordpress feed=\"http://rest.ebay.com/epn/v1/find/item.rss?keyword=book&sortOrder=BestMatch&programid=1&campaignid=5338571822&toolid=10039&listingType1=All&descriptionSearch=true&sellerId1=evil_spoon&feedType=rss&lgeo=1\" items=\"15\"][/et_pb_code][/et_pb_column][/et_pb_row][/et_pb_section]','Sales','','inherit','closed','closed','','59-revision-v1','','','2019-08-19 02:58:23','2019-08-19 02:58:23','',59,'http://itcamefrombeyondpulp.com/uncategorized/59-revision-v1/',0,'revision','',0);
/*!40000 ALTER TABLE `wp6h_posts` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp6h_term_relationships`
--

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

--
-- Dumping data for table `wp6h_term_relationships`
--

LOCK TABLES `wp6h_term_relationships` WRITE;
/*!40000 ALTER TABLE `wp6h_term_relationships` DISABLE KEYS */;
INSERT INTO `wp6h_term_relationships` VALUES (39,6,0),(74,8,0),(74,9,0),(74,5,0),(110,3,0),(110,4,0),(110,5,0),(112,3,0),(112,4,0),(112,5,0),(175,8,0),(117,6,0),(125,6,0),(131,6,0),(137,6,0),(144,6,0),(157,6,0),(161,6,0),(166,6,0),(175,9,0),(175,5,0),(251,6,0),(260,6,0),(264,6,0),(271,6,0),(274,6,0),(280,6,0),(284,6,0),(304,6,0),(309,6,0),(313,6,0),(320,6,0),(325,6,0),(330,6,0),(334,6,0),(343,6,0),(347,6,0),(352,6,0),(356,6,0),(361,6,0),(365,6,0),(369,6,0),(373,6,0),(378,6,0),(382,6,0),(387,7,0),(394,6,0),(399,6,0),(404,6,0),(408,6,0),(413,7,0);
/*!40000 ALTER TABLE `wp6h_term_relationships` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp6h_term_taxonomy`
--

DROP TABLE IF EXISTS `wp6h_term_taxonomy`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp6h_term_taxonomy` (
  `term_taxonomy_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `term_id` bigint(20) unsigned NOT NULL DEFAULT 0,
  `taxonomy` varchar(32) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `description` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
  `parent` bigint(20) unsigned NOT NULL DEFAULT 0,
  `count` bigint(20) NOT NULL DEFAULT 0,
  PRIMARY KEY (`term_taxonomy_id`),
  UNIQUE KEY `term_id_taxonomy` (`term_id`,`taxonomy`),
  KEY `taxonomy` (`taxonomy`)
) ENGINE=MyISAM AUTO_INCREMENT=11 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp6h_term_taxonomy`
--

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

--
-- Table structure for table `wp6h_termmeta`
--

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

--
-- Dumping data for table `wp6h_termmeta`
--

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

--
-- Table structure for table `wp6h_terms`
--

DROP TABLE IF EXISTS `wp6h_terms`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp6h_terms` (
  `term_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `slug` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `term_group` bigint(10) NOT NULL DEFAULT 0,
  PRIMARY KEY (`term_id`),
  KEY `slug` (`slug`(191)),
  KEY `name` (`name`(191))
) ENGINE=MyISAM AUTO_INCREMENT=11 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp6h_terms`
--

LOCK TABLES `wp6h_terms` WRITE;
/*!40000 ALTER TABLE `wp6h_terms` DISABLE KEYS */;
INSERT INTO `wp6h_terms` VALUES (1,'Uncategorized','uncategorized',0),(2,'Main','main',0),(3,'not_global','not_global',0),(4,'layout','layout',0),(5,'regular','regular',0),(6,'movies','movies',0),(7,'books','books',0),(8,'global','global',0),(9,'section','section',0),(10,'row','row',0);
/*!40000 ALTER TABLE `wp6h_terms` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp6h_usermeta`
--

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

--
-- Dumping data for table `wp6h_usermeta`
--

LOCK TABLES `wp6h_usermeta` WRITE;
/*!40000 ALTER TABLE `wp6h_usermeta` DISABLE KEYS */;
INSERT INTO `wp6h_usermeta` VALUES (1,1,'nickname','mphillips'),(2,1,'first_name',''),(3,1,'last_name',''),(4,1,'description',''),(5,1,'rich_editing','true'),(6,1,'syntax_highlighting','true'),(7,1,'comment_shortcuts','false'),(8,1,'admin_color','fresh'),(9,1,'use_ssl','0'),(10,1,'show_admin_bar_front','true'),(11,1,'locale',''),(12,1,'wp6h_capabilities','a:1:{s:13:\"administrator\";b:1;}'),(13,1,'wp6h_user_level','10'),(14,1,'dismissed_wp_pointers','plugin_editor_notice'),(15,1,'show_welcome_panel','1'),(16,1,'session_tokens','a:5:{s:64:\"020c4f65281fa616071ef28d52b2d94fef52a8eb206975e4f635c8abd2ffa8d0\";a:4:{s:10:\"expiration\";i:1566264506;s:2:\"ip\";s:14:\"71.161.123.107\";s:2:\"ua\";s:121:\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36\";s:5:\"login\";i:1566091706;}s:64:\"c8384c204930b5c8aed95dbe315d1ceb6634917dd0a68da49e8b360daa76044e\";a:4:{s:10:\"expiration\";i:1566264510;s:2:\"ip\";s:14:\"71.161.123.107\";s:2:\"ua\";s:121:\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36\";s:5:\"login\";i:1566091710;}s:64:\"ce5a55b65f57aa29b8f56dd4029b4a4e27db814b78a0f3f98d4ed493fea6cc6a\";a:4:{s:10:\"expiration\";i:1566264926;s:2:\"ip\";s:14:\"71.161.123.107\";s:2:\"ua\";s:121:\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36\";s:5:\"login\";i:1566092126;}s:64:\"ec7ce1f9e58592e43cfa86377fde0625957bc61d9bb8d62f52457ade9b1cf558\";a:4:{s:10:\"expiration\";i:1566353380;s:2:\"ip\";s:14:\"71.161.123.107\";s:2:\"ua\";s:121:\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36\";s:5:\"login\";i:1566180580;}s:64:\"40bdf5a2645f781b04e35511ef4a04056295373d33efd917992c3613d567bb2d\";a:4:{s:10:\"expiration\";i:1566353383;s:2:\"ip\";s:14:\"71.161.123.107\";s:2:\"ua\";s:121:\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36\";s:5:\"login\";i:1566180583;}}'),(17,1,'wp6h_dashboard_quick_press_last_post_id','412'),(18,1,'community-events-location','a:1:{s:2:\"ip\";s:12:\"71.161.123.0\";}'),(19,1,'jetpack_tracks_anon_id','jetpack:9FZwW53lASqDVAATbcGlRZJ/'),(20,1,'wp6h_user-settings','libraryContent=browse&editor=tinymce&align=center&imgsize=large'),(21,1,'wp6h_user-settings-time','1563934856'),(22,1,'managenav-menuscolumnshidden','a:5:{i:0;s:11:\"link-target\";i:1;s:11:\"css-classes\";i:2;s:3:\"xfn\";i:3;s:11:\"description\";i:4;s:15:\"title-attribute\";}'),(23,1,'metaboxhidden_nav-menus','a:5:{i:0;s:21:\"add-post-type-project\";i:1;s:12:\"add-post_tag\";i:2;s:15:\"add-post_format\";i:3;s:20:\"add-project_category\";i:4;s:15:\"add-project_tag\";}'),(24,1,'closedpostboxes_post','a:0:{}'),(25,1,'metaboxhidden_post','a:6:{i:0;s:9:\"formatdiv\";i:1;s:13:\"trackbacksdiv\";i:2;s:16:\"commentstatusdiv\";i:3;s:11:\"commentsdiv\";i:4;s:7:\"slugdiv\";i:5;s:9:\"authordiv\";}'),(26,1,'nav_menu_recently_edited','2'),(27,1,'closedpostboxes_page','a:1:{i:0;s:13:\"pageparentdiv\";}'),(28,1,'metaboxhidden_page','a:5:{i:0;s:12:\"revisionsdiv\";i:1;s:16:\"commentstatusdiv\";i:2;s:11:\"commentsdiv\";i:3;s:7:\"slugdiv\";i:4;s:9:\"authordiv\";}');
/*!40000 ALTER TABLE `wp6h_usermeta` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp6h_users`
--

DROP TABLE IF EXISTS `wp6h_users`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp6h_users` (
  `ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `user_login` varchar(60) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `user_pass` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `user_nicename` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `user_email` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `user_url` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `user_registered` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `user_activation_key` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `user_status` int(11) NOT NULL DEFAULT 0,
  `display_name` varchar(250) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  PRIMARY KEY (`ID`),
  KEY `user_login_key` (`user_login`),
  KEY `user_nicename` (`user_nicename`),
  KEY `user_email` (`user_email`)
) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp6h_users`
--

LOCK TABLES `wp6h_users` WRITE;
/*!40000 ALTER TABLE `wp6h_users` DISABLE KEYS */;
INSERT INTO `wp6h_users` VALUES (1,'mphillips','$P$B5/HaGsY4XlNJWXkQSc4TwSQntG9Q9.','mphillips','phillips.editorial@gmail.com','','2019-07-21 22:12:07','',0,'mphillips');
/*!40000 ALTER TABLE `wp6h_users` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp6h_wpforms_lite`
--

DROP TABLE IF EXISTS `wp6h_wpforms_lite`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp6h_wpforms_lite` (
  `rid` int(10) NOT NULL AUTO_INCREMENT,
  `start` bigint(20) NOT NULL,
  `end` bigint(20) NOT NULL,
  `status` tinyint(2) NOT NULL DEFAULT 1,
  `date` int(10) NOT NULL,
  PRIMARY KEY (`rid`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp6h_wpforms_lite`
--

LOCK TABLES `wp6h_wpforms_lite` WRITE;
/*!40000 ALTER TABLE `wp6h_wpforms_lite` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp6h_wpforms_lite` ENABLE KEYS */;
UNLOCK TABLES;
/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;

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

-- Dump completed on 2019-08-27 11:12:36
